From: Dan Carpenter Date: Thu, 28 Aug 2014 13:13:21 +0000 (+0300) Subject: f2fs: simplify by using a literal X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=922cedbd00b68e506eb6f37cbe07cdf399a37b27;p=deliverable%2Flinux.git f2fs: simplify by using a literal We can make the code a bit simpler because we know that "!retry" is zero. Signed-off-by: Dan Carpenter Signed-off-by: Jaegeuk Kim --- diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index 0f61f5aa587c..41bdf511003d 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -1133,7 +1133,7 @@ free_sbi: /* give only one another chance */ if (retry) { - retry = !retry; + retry = 0; shrink_dcache_sb(sb); goto try_onemore; }