Commit 99d08456 authored by aybuke ozdemir's avatar aybuke ozdemir Committed by Greg Kroah-Hartman

Staging: lustre: Removed unnecessary braces

This patch fixes checkpatch.pl warning in llite_lib.c
WARNING: braces {} are not necessary for any arm of this statement
Signed-off-by: default avataraybuke ozdemir <aybuke.147@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e17f5594
...@@ -87,11 +87,10 @@ static struct ll_sb_info *ll_init_sbi(void) ...@@ -87,11 +87,10 @@ static struct ll_sb_info *ll_init_sbi(void)
si_meminfo(&si); si_meminfo(&si);
pages = si.totalram - si.totalhigh; pages = si.totalram - si.totalhigh;
if (pages >> (20 - PAGE_CACHE_SHIFT) < 512) { if (pages >> (20 - PAGE_CACHE_SHIFT) < 512)
lru_page_max = pages / 2; lru_page_max = pages / 2;
} else { else
lru_page_max = (pages / 4) * 3; lru_page_max = (pages / 4) * 3;
}
/* initialize lru data */ /* initialize lru data */
atomic_set(&sbi->ll_cache.ccc_users, 0); atomic_set(&sbi->ll_cache.ccc_users, 0);
......
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