Encode huge page size for VM_FAULT_HWPOISON errors
authorAndi Kleen <ak@linux.intel.com>
Wed, 6 Oct 2010 19:45:00 +0000 (21:45 +0200)
committerAndi Kleen <ak@linux.intel.com>
Fri, 8 Oct 2010 07:32:46 +0000 (09:32 +0200)
commitaa50d3a7aa8147b9e14dc9d5972a5d2359db4ef8
tree68fae5060333dcc24c17e9dd00a87bd760d883e9
parent6f39ce056ab2ab2d29b2fae4aed61ed0b485972f
Encode huge page size for VM_FAULT_HWPOISON errors

This fixes a problem introduced with the hugetlb hwpoison handling

The user space SIGBUS signalling wants to know the size of the hugepage
that caused a HWPOISON fault.

Unfortunately the architecture page fault handlers do not have easy
access to the struct page.

Pass the information out in the fault error code instead.

I added a separate VM_FAULT_HWPOISON_LARGE bit for this case and encode
the hpage index in some free upper bits of the fault code. The small
page hwpoison keeps stays with the VM_FAULT_HWPOISON name to minimize
changes.

Also add code to hugetlb.h to convert that index into a page shift.

Will be used in a further patch.

Cc: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Cc: fengguang.wu@intel.com
Signed-off-by: Andi Kleen <ak@linux.intel.com>
include/linux/hugetlb.h
include/linux/mm.h
mm/hugetlb.c
mm/memory.c