All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] f2fs: change 0 to false for bool type
@ 2015-04-13 12:48 Taehee Yoo
  0 siblings, 0 replies; only message in thread
From: Taehee Yoo @ 2015-04-13 12:48 UTC (permalink / raw)
  To: jaegeuk, cm224.lee, ap420073; +Cc: linux-f2fs-devel

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>
---
 fs/f2fs/super.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
index f2fe666..d524be0 100644
--- a/fs/f2fs/super.c
+++ b/fs/f2fs/super.c
@@ -1212,7 +1212,7 @@ free_sbi:
 
 	/* give only one another chance */
 	if (retry) {
-		retry = 0;
+		retry = false;
 		shrink_dcache_sb(sb);
 		goto try_onemore;
 	}
-- 
1.9.1


------------------------------------------------------------------------------
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2015-04-13 12:49 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-13 12:48 [PATCH] f2fs: change 0 to false for bool type Taehee Yoo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.