From 40ddbdf85b592add401a0fbc963cec93559def54 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 29 Jan 2014 20:58:50 +0100 Subject: [PATCH] nspawn: fix reboot event fd reuse --- src/nspawn/nspawn.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 38ec89b9a..5352b95ec 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -1206,12 +1206,6 @@ int main(int argc, char *argv[]) { goto finish; } - sync_fd = eventfd(0, EFD_CLOEXEC); - if (sync_fd < 0) { - log_error("Failed to create event fd: %m"); - goto finish; - } - sd_notify(0, "READY=1"); assert_se(sigemptyset(&mask) == 0); @@ -1221,6 +1215,12 @@ int main(int argc, char *argv[]) { for (;;) { siginfo_t status; + sync_fd = eventfd(0, EFD_CLOEXEC); + if (sync_fd < 0) { + log_error("Failed to create event fd: %m"); + goto finish; + } + pid = syscall(__NR_clone, SIGCHLD|CLONE_NEWIPC|CLONE_NEWNS|CLONE_NEWPID|CLONE_NEWUTS|(arg_private_network ? CLONE_NEWNET : 0), NULL); if (pid < 0) { if (errno == EINVAL) -- 2.30.2