summaryrefslogtreecommitdiffstats
path: root/src/core/bpf-socket-bind.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2024-10-17 09:43:37 +0200
committerLennart Poettering <lennart@poettering.net>2024-10-17 09:48:05 +0200
commit33dd8945461f8d0ae10d11801fd517d4ea299591 (patch)
treec74ec944085713e99da32574964ecb5e7c143d50 /src/core/bpf-socket-bind.c
parentMerge pull request #34597 from ryantimwilson/oomd-pressure-duration (diff)
downloadsystemd-33dd8945461f8d0ae10d11801fd517d4ea299591.tar.xz
systemd-33dd8945461f8d0ae10d11801fd517d4ea299591.zip
fdset: optionally, close remaining fds asynchronously
Diffstat (limited to 'src/core/bpf-socket-bind.c')
-rw-r--r--src/core/bpf-socket-bind.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/bpf-socket-bind.c b/src/core/bpf-socket-bind.c
index 2a1a0278d5..8853f3eecc 100644
--- a/src/core/bpf-socket-bind.c
+++ b/src/core/bpf-socket-bind.c
@@ -229,7 +229,7 @@ int bpf_socket_bind_install(Unit *u) {
return 0;
r = socket_bind_install_impl(u);
- fdset_close(crt->initial_socket_bind_link_fds);
+ fdset_close(crt->initial_socket_bind_link_fds, /* async= */ false);
return r;
}