From: Michal Sekletar Date: Mon, 9 Sep 2024 16:28:13 +0000 (+0200) Subject: coredump: use FORK_LOG to get more precise logging X-Git-Tag: v257-rc1~99^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e5bad3a7b98a1d4c1bce63ec5c4185268e9812b7;p=thirdparty%2Fsystemd.git coredump: use FORK_LOG to get more precise logging --- diff --git a/src/coredump/coredump.c b/src/coredump/coredump.c index 70403e1221d..0900689d042 100644 --- a/src/coredump/coredump.c +++ b/src/coredump/coredump.c @@ -1679,7 +1679,7 @@ static int gather_pid_mount_tree_fd(const Context *context) { "(sd-mount-tree)", /* except_fds= */ NULL, /* n_except_fds= */ 0, - FORK_RESET_SIGNALS|FORK_DEATHSIG_SIGKILL, + FORK_RESET_SIGNALS|FORK_DEATHSIG_SIGKILL|FORK_LOG, /* pidns_fd= */ -EBADF, mntns_fd, /* netns_fd= */ -EBADF, @@ -1687,7 +1687,7 @@ static int gather_pid_mount_tree_fd(const Context *context) { root_fd, &child); if (r < 0) - return log_error_errno(r, "Failed to fork(): %m"); + return r; if (r == 0) { pair[0] = safe_close(pair[0]);