]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
mount: rename needs_quota() → mount_needs_quota()
authorLennart Poettering <lennart@poettering.net>
Wed, 28 Nov 2018 11:32:35 +0000 (12:32 +0100)
committerLennart Poettering <lennart@poettering.net>
Fri, 7 Dec 2018 16:30:14 +0000 (17:30 +0100)
No change of logic, just some renaming, in order to match more closely
the naming of the other, similar functions.

src/core/mount.c

index de5c83928f8622c18e522409e7f7f7f3bdc9ad38..0243f1e392fefcff8f29c0c00d2141a62665806f 100644 (file)
@@ -125,11 +125,11 @@ static bool mount_is_bound_to_device(const Mount *m) {
         return fstab_test_option(p->options, "x-systemd.device-bound\0");
 }
 
-static bool needs_quota(const MountParameters *p) {
+static bool mount_needs_quota(const MountParameters *p) {
         assert(p);
 
-        /* Quotas are not enabled on network filesystems,
-         * but we want them, for example, on storage connected via iscsi */
+        /* Quotas are not enabled on network filesystems, but we want them, for example, on storage connected via
+         * iscsi. We hence don't use mount_is_network() here, as that would also return true for _netdev devices. */
         if (p->fstype && fstype_is_network(p->fstype))
                 return false;
 
@@ -377,7 +377,7 @@ static int mount_add_quota_dependencies(Mount *m) {
         if (!p)
                 return 0;
 
-        if (!needs_quota(p))
+        if (!mount_needs_quota(p))
                 return 0;
 
         mask = m->from_fragment ? UNIT_DEPENDENCY_FILE : UNIT_DEPENDENCY_MOUNTINFO_IMPLICIT;