]> 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>
Thu, 4 Oct 2012 05:03:37 +0000 (15:03 +1000)
commitf767b26e9abeec9b8bb9f17990a368916d424ab3
treed37f9868e5e2c81c49141639ac207dd29d6b4020
parent9da4561b4f3dfd4f294665bb54beaba5c189408f
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