diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-24 10:53:22 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-24 10:53:22 -0400 |
commit | db16826367fefcb0ddb93d76b66adc52eb4e6339 (patch) | |
tree | 626224c1eb1eb79c522714591f208b4fdbdcd9d4 /mm/madvise.c | |
parent | cd6045138ed1bb5d8773e940d51c34318eef3ef2 (diff) | |
parent | 465fdd97cbe16ef8727221857e96ef62dd352017 (diff) |
Merge branch 'hwpoison' of git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6
* 'hwpoison' of git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6: (21 commits)
HWPOISON: Enable error_remove_page on btrfs
HWPOISON: Add simple debugfs interface to inject hwpoison on arbitary PFNs
HWPOISON: Add madvise() based injector for hardware poisoned pages v4
HWPOISON: Enable error_remove_page for NFS
HWPOISON: Enable .remove_error_page for migration aware file systems
HWPOISON: The high level memory error handler in the VM v7
HWPOISON: Add PR_MCE_KILL prctl to control early kill behaviour per process
HWPOISON: shmem: call set_page_dirty() with locked page
HWPOISON: Define a new error_remove_page address space op for async truncation
HWPOISON: Add invalidate_inode_page
HWPOISON: Refactor truncate to allow direct truncating of page v2
HWPOISON: check and isolate corrupted free pages v2
HWPOISON: Handle hardware poisoned pages in try_to_unmap
HWPOISON: Use bitmask/action code for try_to_unmap behaviour
HWPOISON: x86: Add VM_FAULT_HWPOISON handling to x86 page fault handler v2
HWPOISON: Add poison check to page fault handling
HWPOISON: Add basic support for poisoned pages in fault handler v3
HWPOISON: Add new SIGBUS error codes for hardware poison signals
HWPOISON: Add support for poison swap entries v2
HWPOISON: Export some rmap vma locking to outside world
...
Diffstat (limited to 'mm/madvise.c')
-rw-r--r-- | mm/madvise.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/mm/madvise.c b/mm/madvise.c index d9ae2067952e..35b1479b7c9d 100644 --- a/mm/madvise.c +++ b/mm/madvise.c | |||
@@ -218,6 +218,32 @@ static long madvise_remove(struct vm_area_struct *vma, | |||
218 | return error; | 218 | return error; |
219 | } | 219 | } |
220 | 220 | ||
221 | #ifdef CONFIG_MEMORY_FAILURE | ||
222 | /* | ||
223 | * Error injection support for memory error handling. | ||
224 | */ | ||
225 | static int madvise_hwpoison(unsigned long start, unsigned long end) | ||
226 | { | ||
227 | int ret = 0; | ||
228 | |||
229 | if (!capable(CAP_SYS_ADMIN)) | ||
230 | return -EPERM; | ||
231 | for (; start < end; start += PAGE_SIZE) { | ||
232 | struct page *p; | ||
233 | int ret = get_user_pages(current, current->mm, start, 1, | ||
234 | 0, 0, &p, NULL); | ||
235 | if (ret != 1) | ||
236 | return ret; | ||
237 | printk(KERN_INFO "Injecting memory failure for page %lx at %lx\n", | ||
238 | page_to_pfn(p), start); | ||
239 | /* Ignore return value for now */ | ||
240 | __memory_failure(page_to_pfn(p), 0, 1); | ||
241 | put_page(p); | ||
242 | } | ||
243 | return ret; | ||
244 | } | ||
245 | #endif | ||
246 | |||
221 | static long | 247 | static long |
222 | madvise_vma(struct vm_area_struct *vma, struct vm_area_struct **prev, | 248 | madvise_vma(struct vm_area_struct *vma, struct vm_area_struct **prev, |
223 | unsigned long start, unsigned long end, int behavior) | 249 | unsigned long start, unsigned long end, int behavior) |
@@ -308,6 +334,10 @@ SYSCALL_DEFINE3(madvise, unsigned long, start, size_t, len_in, int, behavior) | |||
308 | int write; | 334 | int write; |
309 | size_t len; | 335 | size_t len; |
310 | 336 | ||
337 | #ifdef CONFIG_MEMORY_FAILURE | ||
338 | if (behavior == MADV_HWPOISON) | ||
339 | return madvise_hwpoison(start, start+len_in); | ||
340 | #endif | ||
311 | if (!madvise_behavior_valid(behavior)) | 341 | if (!madvise_behavior_valid(behavior)) |
312 | return error; | 342 | return error; |
313 | 343 | ||