]> git.karo-electronics.de Git - karo-tx-linux.git/commit
kpageflags: fix wrong KPF_THP on non-huge compound pages
authorNaoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Fri, 28 Sep 2012 00:20:00 +0000 (10:20 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Mon, 8 Oct 2012 03:00:19 +0000 (14:00 +1100)
commit0f2e39192413f35394a93cfb030cd1864bb2f9a5
tree17b7b518b0eb6e370da7cfdab91c5933fe6793a7
parent692f341be3690838c6f20546a7a4717eb9185576
kpageflags: fix wrong KPF_THP on non-huge compound pages

KPF_THP can be set on non-huge compound pages (like slab pages or pages
allocated by drivers with __GFP_COMP) because PageTransCompound only
checks PG_head and PG_tail.  Obviously this is a bug and breaks user space
applications which look for thp via /proc/kpageflags.

This patch rules out setting KPF_THP wrongly by additionally checking
PageLRU on the head pages.

Signed-off-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Acked-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Acked-by: David Rientjes <rientjes@google.com>
Reviewed-by: Fengguang Wu <fengguang.wu@intel.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/proc/page.c