提交 c3be10f7 编写于 作者: W WANG Cong 提交者: Linus Torvalds

arch/um/kernel/mem.c: fix a shadowed variable

Fix a shadowed variable in arch/um/kernel/mem.c, since there is a global
variable has the same name.

Cc: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: NWANG Cong <xiyou.wangcong@gmail.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 7b59ebcd
...@@ -299,7 +299,7 @@ void show_mem(void) ...@@ -299,7 +299,7 @@ void show_mem(void)
{ {
int pfn, total = 0, reserved = 0; int pfn, total = 0, reserved = 0;
int shared = 0, cached = 0; int shared = 0, cached = 0;
int highmem = 0; int high_mem = 0;
struct page *page; struct page *page;
printk(KERN_INFO "Mem-info:\n"); printk(KERN_INFO "Mem-info:\n");
...@@ -311,7 +311,7 @@ void show_mem(void) ...@@ -311,7 +311,7 @@ void show_mem(void)
page = pfn_to_page(pfn); page = pfn_to_page(pfn);
total++; total++;
if (PageHighMem(page)) if (PageHighMem(page))
highmem++; high_mem++;
if (PageReserved(page)) if (PageReserved(page))
reserved++; reserved++;
else if (PageSwapCache(page)) else if (PageSwapCache(page))
...@@ -320,7 +320,7 @@ void show_mem(void) ...@@ -320,7 +320,7 @@ void show_mem(void)
shared += page_count(page) - 1; shared += page_count(page) - 1;
} }
printk(KERN_INFO "%d pages of RAM\n", total); printk(KERN_INFO "%d pages of RAM\n", total);
printk(KERN_INFO "%d pages of HIGHMEM\n", highmem); printk(KERN_INFO "%d pages of HIGHMEM\n", high_mem);
printk(KERN_INFO "%d reserved pages\n", reserved); printk(KERN_INFO "%d reserved pages\n", reserved);
printk(KERN_INFO "%d pages shared\n", shared); printk(KERN_INFO "%d pages shared\n", shared);
printk(KERN_INFO "%d pages swap cached\n", cached); printk(KERN_INFO "%d pages swap cached\n", cached);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册