If cp is shutdown, let's just return success to unmount the partition. Signed-off-by: Jaegeuk Kim <jaeg...@kernel.org> --- 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 ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ Linux-f2fs-devel mailing list Linux-f2fs-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel