Commit 922cedbd authored by Dan Carpenter's avatar Dan Carpenter Committed by Jaegeuk Kim

f2fs: simplify by using a literal

We can make the code a bit simpler because we know that "!retry" is
zero.
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
parent c2e69583
......@@ -1133,7 +1133,7 @@ static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
/* give only one another chance */
if (retry) {
retry = !retry;
retry = 0;
shrink_dcache_sb(sb);
goto try_onemore;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment