]> 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>
Fri, 28 Sep 2012 06:07:55 +0000 (16:07 +1000)
commit50921618a9308da7b70938d9b5e46bc8284d27af
treec65f5d18cf9dfc9be048e950865c1f145f30909d
parent1d5cfc9e3cdb2edc6431f80bff3cf0c81e5e08a2
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