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=
|
||||
systemd
|
||||
systemd-container
|
||||
systemd-devel
|
||||
systemd-journal-remote
|
||||
systemd-libs
|
||||
systemd-networkd
|
||||
|
||||
@ -12,10 +12,8 @@ VolatilePackages=
|
||||
libnss-resolve
|
||||
libnss-systemd
|
||||
libpam-systemd
|
||||
libsystemd-dev
|
||||
libsystemd-shared
|
||||
libsystemd0
|
||||
libudev-dev
|
||||
systemd
|
||||
systemd-container
|
||||
systemd-coredump
|
||||
|
||||
@ -17,7 +17,6 @@ VolatilePackages=
|
||||
libudev1
|
||||
systemd
|
||||
systemd-container
|
||||
systemd-devel
|
||||
systemd-doc
|
||||
systemd-experimental
|
||||
systemd-homed
|
||||
@ -71,6 +70,7 @@ Packages=
|
||||
pam
|
||||
patterns-base-minimal_base
|
||||
perf
|
||||
policycoreutils
|
||||
pkgconf
|
||||
procps4
|
||||
psmisc
|
||||
@ -81,6 +81,8 @@ Packages=
|
||||
quota
|
||||
rsync
|
||||
sed
|
||||
selinux-policy
|
||||
selinux-policy-targeted
|
||||
shadow
|
||||
softhsm
|
||||
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)
|
||||
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
|
||||
* just metadata, let's truncate the field at half, and try
|
||||
* again. We append three dots, in order to show that this is
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user