[PATCH] f2fs: return fake len for quota if cp is shutdown

From: Jaegeuk Kim
Date: Sun Jul 29 2018 - 02:11:49 EST


If cp is shutdown, let's just return success to unmount the partition.

Signed-off-by: Jaegeuk Kim <jaegeuk@xxxxxxxxxx>
---
fs/f2fs/super.c | 4 ++++
1 file changed, 4 insertions(+)

diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
index e0a828188f65..d56bc6eb8760 100644
--- a/fs/f2fs/super.c
+++ b/fs/f2fs/super.c
@@ -1625,6 +1625,10 @@ static ssize_t f2fs_quota_write(struct super_block *sb, int type,
int tocopy;

while (towrite > 0) {
+
+ if (unlikely(f2fs_cp_error(F2FS_I_SB(inode))))
+ return len;
+
tocopy = min_t(unsigned long, sb->s_blocksize - offset,
towrite);
retry:
--
2.17.0.441.gb46fe60e1d-goog