[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1536710238-16858-2-git-send-email-wshilong1991@gmail.com>
Date: Wed, 12 Sep 2018 08:57:17 +0900
From: Wang Shilong <wangshilong1991@...il.com>
To: linux-ext4@...r.kernel.org, linux-f2fs-devel@...ts.sourceforge.net
Cc: dchinner@...hat.com, adilger@...ger.ca, wshilong@....com
Subject: [PATCH v2 2/3] ext4: fix to detect failure of dquot_initialize in project ioctl
From: Wang Shilong <wshilong@....com>
We return most failure of dquota_initialize() except
inode evict, this could make a bit sense, for example
we allow file removal even quota files are broken?
But it dosen't make sense to allow setting project
if quota files etc are broken.
Signed-off-by: Wang Shilong <wshilong@....com>
---
v1->v2:
based it on one patchset, to make reviewers happy.
---
fs/ext4/ioctl.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/fs/ext4/ioctl.c b/fs/ext4/ioctl.c
index f81102bd3203..781dd699bd7b 100644
--- a/fs/ext4/ioctl.c
+++ b/fs/ext4/ioctl.c
@@ -359,7 +359,9 @@ static int ext4_ioctl_setproject(struct file *filp, __u32 projid)
brelse(iloc.bh);
}
- dquot_initialize(inode);
+ err = dquot_initialize(inode);
+ if (err)
+ return err;
handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
EXT4_QUOTA_INIT_BLOCKS(sb) +
--
2.17.1
Powered by blists - more mailing lists