summaryrefslogtreecommitdiff
path: root/src/core/mount.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2022-05-20 17:27:35 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2022-06-07 15:18:46 +0200
commit09f4d843ee40a3974f45acba86eb5015d450d35d (patch)
tree35f754a9d4a92e959fa706ace2282b9495d91b59 /src/core/mount.c
parent066a6f076810028903f06641c7f37dcc4cab201f (diff)
downloadsystemd-09f4d843ee40a3974f45acba86eb5015d450d35d.tar.gz
core: wrap some long comments
Diffstat (limited to 'src/core/mount.c')
-rw-r--r--src/core/mount.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/core/mount.c b/src/core/mount.c
index b47bd12c96..836ba132cb 100644
--- a/src/core/mount.c
+++ b/src/core/mount.c
@@ -1602,13 +1602,13 @@ static int mount_setup_new_unit(
if (r < 0)
return r;
- /* This unit was generated because /proc/self/mountinfo reported it. Remember this, so that by the time we load
- * the unit file for it (and thus add in extra deps right after) we know what source to attributes the deps
- * to. */
+ /* This unit was generated because /proc/self/mountinfo reported it. Remember this, so that by the
+ * time we load the unit file for it (and thus add in extra deps right after) we know what source to
+ * attributes the deps to. */
MOUNT(u)->from_proc_self_mountinfo = true;
- /* We have only allocated the stub now, let's enqueue this unit for loading now, so that everything else is
- * loaded in now. */
+ /* We have only allocated the stub now, let's enqueue this unit for loading now, so that everything
+ * else is loaded in now. */
unit_add_to_load_queue(u);
*ret_flags = MOUNT_PROC_IS_MOUNTED | MOUNT_PROC_JUST_MOUNTED | MOUNT_PROC_JUST_CHANGED;
@@ -1751,8 +1751,8 @@ static int mount_setup_unit(
if (u)
r = mount_setup_existing_unit(u, what, where, options, fstype, &flags);
else
- /* First time we see this mount point meaning that it's not been initiated by a mount unit but rather
- * by the sysadmin having called mount(8) directly. */
+ /* First time we see this mount point meaning that it's not been initiated by a mount unit
+ * but rather by the sysadmin having called mount(8) directly. */
r = mount_setup_new_unit(m, e, what, where, options, fstype, &flags, &u);
if (r < 0)
return log_warning_errno(r, "Failed to set up mount unit for '%s': %m", where);