From: Lennart Poettering Date: Wed, 28 Nov 2018 11:32:35 +0000 (+0100) Subject: mount: rename needs_quota() → mount_needs_quota() X-Git-Tag: v240~112^2~26 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=06e457b1a3f3ec5caaf99024e1920b6038c0bdf5;p=thirdparty%2Fsystemd.git mount: rename needs_quota() → mount_needs_quota() No change of logic, just some renaming, in order to match more closely the naming of the other, similar functions. --- diff --git a/src/core/mount.c b/src/core/mount.c index de5c83928f8..0243f1e392f 100644 --- a/src/core/mount.c +++ b/src/core/mount.c @@ -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;