projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6819b88
)
f2fs: stop issuing discard if fs is readonly
author
Chao Yu
<yuchao0@huawei.com>
Thu, 25 Jan 2018 10:57:27 +0000
(18:57 +0800)
committer
Jaegeuk Kim
<jaegeuk@kernel.org>
Thu, 25 Jan 2018 18:40:10 +0000
(10:40 -0800)
If filesystem is readonly, stop to issue discard in daemon.
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/segment.c
patch
|
blob
|
history
diff --git
a/fs/f2fs/segment.c
b/fs/f2fs/segment.c
index
9c09e2c
..
ca1f567
100644
(file)
--- a/
fs/f2fs/segment.c
+++ b/
fs/f2fs/segment.c
@@
-1406,6
+1406,8
@@
static int issue_discard_thread(void *data)
msecs_to_jiffies(wait_ms));
if (try_to_freeze())
continue;
+ if (f2fs_readonly(sbi->sb))
+ continue;
if (kthread_should_stop())
return 0;