From: Lennart Poettering Date: Tue, 23 Mar 2021 21:28:16 +0000 (+0100) Subject: mountpoint-util: rebreak some comments X-Git-Tag: v249-rc1~502^2~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9d0619dee729b9b481efa512295cf70cb5887fe1;p=thirdparty%2Fsystemd.git mountpoint-util: rebreak some comments --- diff --git a/src/basic/mountpoint-util.c b/src/basic/mountpoint-util.c index 6d474191945..1d617e87b27 100644 --- a/src/basic/mountpoint-util.c +++ b/src/basic/mountpoint-util.c @@ -233,16 +233,13 @@ int fd_is_mount_point(int fd, const char *filename, int flags) { } else if (r < 0) return r; - /* The parent can do name_to_handle_at() but the - * directory we are interested in can't? If so, it - * must be a mount point. */ + /* The parent can do name_to_handle_at() but the directory we are interested in can't? If so, it must + * be a mount point. */ if (nosupp) return 1; - /* If the file handle for the directory we are - * interested in and its parent are identical, we - * assume this is the root directory, which is a mount - * point. */ + /* If the file handle for the directory we are interested in and its parent are identical, we assume + * this is the root directory, which is a mount point. */ if (h->handle_bytes == h_parent->handle_bytes && h->handle_type == h_parent->handle_type && @@ -265,17 +262,14 @@ fallback_fdinfo: if (mount_id != mount_id_parent) return 1; - /* Hmm, so, the mount ids are the same. This leaves one - * special case though for the root file system. For that, - * let's see if the parent directory has the same inode as we - * are interested in. Hence, let's also do fstat() checks now, - * too, but avoid the st_dev comparisons, since they aren't - * that useful on unionfs mounts. */ + /* Hmm, so, the mount ids are the same. This leaves one special case though for the root file + * system. For that, let's see if the parent directory has the same inode as we are interested + * in. Hence, let's also do fstat() checks now, too, but avoid the st_dev comparisons, since they + * aren't that useful on unionfs mounts. */ check_st_dev = false; fallback_fstat: - /* yay for fstatat() taking a different set of flags than the other - * _at() above */ + /* yay for fstatat() taking a different set of flags than the other _at() above */ if (flags & AT_SYMLINK_FOLLOW) flags &= ~AT_SYMLINK_FOLLOW; else diff --git a/src/shared/mount-util.c b/src/shared/mount-util.c index 576e4054c29..53516c671b1 100644 --- a/src/shared/mount-util.c +++ b/src/shared/mount-util.c @@ -84,9 +84,8 @@ int umount_recursive(const char *prefix, int flags) { int n = 0, r; bool again; - /* Try to umount everything recursively below a - * directory. Also, take care of stacked mounts, and keep - * unmounting them until they are gone. */ + /* Try to umount everything recursively below a directory. Also, take care of stacked mounts, and + * keep unmounting them until they are gone. */ do { _cleanup_(mnt_free_tablep) struct libmnt_table *table = NULL;