]> git.karo-electronics.de Git - karo-tx-linux.git/commit
pagemap: fix wrong KPF_THP on slab pages
authorNaoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Wed, 26 Sep 2012 01:32:55 +0000 (11:32 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 27 Sep 2012 06:37:53 +0000 (16:37 +1000)
commit2d26a040d2368b652bf1f00f769edc3578f51e25
tree4dbf4190bab49f6691855066e1378702f1fc97d0
parent491ffe63f828e2b6a3df60a41c21c511e267f48f
pagemap: fix wrong KPF_THP on slab pages

KPF_THP can be set on non-huge compound pages like slab pages, because
PageTransCompound only sees PG_head and PG_tail. Obviously this is a bug
and breaks user space applications which look for thp via /proc/kpageflags.
Currently thp is constructed only on anonymous pages, so this patch makes
KPF_THP be set when both of PageAnon and PageTransCompound are true.

Signed-off-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Cc: Wu Fengguang <fengguang.wu@intel.com>
Cc: Andi Kleen <andi.kleen@intel.com>
Acked-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/proc/page.c