projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e03b07d
)
f2fs: change 0 to false for bool type
author
Taehee Yoo
<ap420073@gmail.com>
Mon, 13 Apr 2015 12:48:06 +0000
(21:48 +0900)
committer
Jaegeuk Kim
<jaegeuk@kernel.org>
Wed, 15 Apr 2015 23:13:28 +0000
(16:13 -0700)
in the f2fs_fill_super function, variable "retry" is bool type
i think that it should be set as false.
Signed-off-by: Taehee Yoo <ap420073@gmail.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/super.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/f2fs/super.c
b/fs/f2fs/super.c
index 45aa843fa59756535010cd0af1a4da8d617db967..160b88346b2477466f3ed34d4d2dff2509742d7e 100644
(file)
--- a/
fs/f2fs/super.c
+++ b/
fs/f2fs/super.c
@@
-1230,7
+1230,7
@@
free_sbi:
/* give only one another chance */
if (retry) {
- retry =
0
;
+ retry =
false
;
shrink_dcache_sb(sb);
goto try_onemore;
}