]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
nspawn: assorted coding style fixes 36057/head
authorLennart Poettering <lennart@poettering.net>
Fri, 17 Jan 2025 08:50:01 +0000 (09:50 +0100)
committerLennart Poettering <lennart@poettering.net>
Fri, 17 Jan 2025 10:12:24 +0000 (11:12 +0100)
src/nspawn/nspawn-mount.c
src/nspawn/nspawn.c

index 808380af7639546a52a087de1630446455cf866a..f64d6b48a627656512b7ffbb32c08523b44d4b77 100644 (file)
@@ -150,7 +150,7 @@ static int allocate_temporary_source(CustomMount *m) {
 int custom_mount_prepare_all(const char *dest, CustomMount *l, size_t n) {
         int r;
 
-        /* Prepare all custom mounts. This will make source we know all temporary directories. This is called in the
+        /* Prepare all custom mounts. This will make sure we know all temporary directories. This is called in the
          * parent process, so that we know the temporary directories to remove on exit before we fork off the
          * children. */
 
@@ -159,9 +159,7 @@ int custom_mount_prepare_all(const char *dest, CustomMount *l, size_t n) {
         /* Order the custom mounts, and make sure we have a working directory */
         typesafe_qsort(l, n, custom_mount_compare);
 
-        for (size_t i = 0; i < n; i++) {
-                CustomMount *m = l + i;
-
+        FOREACH_ARRAY(m, l, n) {
                 /* /proc we mount in the inner child, i.e. when we acquired CLONE_NEWPID. All other mounts we mount
                  * already in the outer child, so that the mounts are already established before CLONE_NEWPID and in
                  * particular CLONE_NEWUSER. This also means any custom mounts below /proc also need to be mounted in
index 7ceda0b30c3522b8c60adc108722aaccdaa3bc25..5ab04b121a61e10746ac6218c68710ee435c06b4 100644 (file)
@@ -3437,7 +3437,7 @@ static int inner_child(
                         return r;
         }
 
-        r = mount_all(NULL,
+        r = mount_all(/* dest= */ NULL,
                       arg_mount_settings | MOUNT_IN_USERNS,
                       arg_uid_shift,
                       arg_selinux_apifs_context);