summaryrefslogtreecommitdiff
path: root/src/basic
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2015-11-10 21:39:52 +0100
committerLennart Poettering <lennart@poettering.net>2015-11-10 21:41:22 +0100
commitbe6d467c1f9219b2016d556a0a369828d463ca27 (patch)
treeedc2a860e54ea56861ef6e9fb994645f823602a4 /src/basic
parent12ee6186dc4431b8d75f8becb236ec840feedb6e (diff)
tmpfiles: don't consider it a problem if quota is not enabled on btrfs
If quota is not enabled on a btrfs file system, accept that, and only log a debug message, but do not consider this a reason for failure. Fixes: #1809
Diffstat (limited to 'src/basic')
-rw-r--r--src/basic/btrfs-util.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/basic/btrfs-util.c b/src/basic/btrfs-util.c
index 661331e8b2..290fabdeff 100644
--- a/src/basic/btrfs-util.c
+++ b/src/basic/btrfs-util.c
@@ -1010,6 +1010,10 @@ static int qgroup_create_or_destroy(int fd, bool b, uint64_t qgroupid) {
for (c = 0;; c++) {
if (ioctl(fd, BTRFS_IOC_QGROUP_CREATE, &args) < 0) {
+ /* If quota is not enabled, we get EINVAL. Turn this into a recognizable error */
+ if (errno == EINVAL)
+ return -ENOPROTOOPT;
+
if (errno == EBUSY && c < 10) {
(void) btrfs_quota_scan_wait(fd);
continue;