mirror of
https://github.com/systemd/systemd
synced 2025-11-19 00:34:46 +01:00
Compare commits
3 Commits
00a5c447a4
...
28e62e684b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
28e62e684b | ||
|
|
7a18a538ef | ||
|
|
4c7e30c4e0 |
@ -9,7 +9,6 @@ PrepareScripts=systemd.prepare
|
|||||||
VolatilePackages=
|
VolatilePackages=
|
||||||
systemd
|
systemd
|
||||||
systemd-container
|
systemd-container
|
||||||
systemd-devel
|
|
||||||
systemd-journal-remote
|
systemd-journal-remote
|
||||||
systemd-libs
|
systemd-libs
|
||||||
systemd-networkd
|
systemd-networkd
|
||||||
|
|||||||
@ -12,10 +12,8 @@ VolatilePackages=
|
|||||||
libnss-resolve
|
libnss-resolve
|
||||||
libnss-systemd
|
libnss-systemd
|
||||||
libpam-systemd
|
libpam-systemd
|
||||||
libsystemd-dev
|
|
||||||
libsystemd-shared
|
libsystemd-shared
|
||||||
libsystemd0
|
libsystemd0
|
||||||
libudev-dev
|
|
||||||
systemd
|
systemd
|
||||||
systemd-container
|
systemd-container
|
||||||
systemd-coredump
|
systemd-coredump
|
||||||
|
|||||||
@ -17,7 +17,6 @@ VolatilePackages=
|
|||||||
libudev1
|
libudev1
|
||||||
systemd
|
systemd
|
||||||
systemd-container
|
systemd-container
|
||||||
systemd-devel
|
|
||||||
systemd-doc
|
systemd-doc
|
||||||
systemd-experimental
|
systemd-experimental
|
||||||
systemd-homed
|
systemd-homed
|
||||||
@ -71,6 +70,7 @@ Packages=
|
|||||||
pam
|
pam
|
||||||
patterns-base-minimal_base
|
patterns-base-minimal_base
|
||||||
perf
|
perf
|
||||||
|
policycoreutils
|
||||||
pkgconf
|
pkgconf
|
||||||
procps4
|
procps4
|
||||||
psmisc
|
psmisc
|
||||||
@ -81,6 +81,8 @@ Packages=
|
|||||||
quota
|
quota
|
||||||
rsync
|
rsync
|
||||||
sed
|
sed
|
||||||
|
selinux-policy
|
||||||
|
selinux-policy-targeted
|
||||||
shadow
|
shadow
|
||||||
softhsm
|
softhsm
|
||||||
squashfs
|
squashfs
|
||||||
|
|||||||
@ -45,7 +45,7 @@ int coredump_send(const struct iovec_wrapper *iovw, int input_fd, PidRef *pidref
|
|||||||
if (sendmsg(fd, &mh, MSG_NOSIGNAL) >= 0)
|
if (sendmsg(fd, &mh, MSG_NOSIGNAL) >= 0)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
if (errno == EMSGSIZE && mh.msg_iov[0].iov_len > 0) {
|
if (IN_SET(errno, EMSGSIZE, ENOBUFS) && mh.msg_iov[0].iov_len > 0) {
|
||||||
/* This field didn't fit? That's a pity. Given that this is
|
/* This field didn't fit? That's a pity. Given that this is
|
||||||
* just metadata, let's truncate the field at half, and try
|
* just metadata, let's truncate the field at half, and try
|
||||||
* again. We append three dots, in order to show that this is
|
* again. We append three dots, in order to show that this is
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user