]> 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, 5 Oct 2012 04:01:12 +0000 (14:01 +1000)
commit2b94112eb22f74b2becf0b06bee55828df31fdd2
treefd3cf9c6c6719e3ca7c38a8f07c79f59181817f2
parenta515833bb5f0464d502b154a95d1ba594f4d01af
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