1
0
Fork 0

kpagecount: add slab page checking because _mapcount is in a union

Add a PageSlab() check before adding the _mapcount value to /kpagecount.
page->_mapcount is in a union with the SLAB structure so for pages
controlled by SLAB, page_mapcount() returns nonsense.

Signed-off-by: Petr Holasek <pholasek@redhat.com>
Cc: Wu Fengguang <fengguang.wu@intel.com>
Cc: Matt Mackall <mpm@selenic.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
hifive-unleashed-5.1
Petr Holasek 2011-01-12 17:00:34 -08:00 committed by Linus Torvalds
parent c6a3405846
commit a6fc86d2b4
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ static ssize_t kpagecount_read(struct file *file, char __user *buf,
ppage = pfn_to_page(pfn);
else
ppage = NULL;
if (!ppage)
if (!ppage || PageSlab(ppage))
pcount = 0;
else
pcount = page_mapcount(ppage);