diff options
Diffstat (limited to 'mm/memory-failure.c')
-rw-r--r-- | mm/memory-failure.c | 571 |
1 files changed, 515 insertions, 56 deletions
diff --git a/mm/memory-failure.c b/mm/memory-failure.c index 1ac49fef95ab..17299fd4577c 100644 --- a/mm/memory-failure.c +++ b/mm/memory-failure.c | |||
@@ -34,12 +34,16 @@ | |||
34 | #include <linux/kernel.h> | 34 | #include <linux/kernel.h> |
35 | #include <linux/mm.h> | 35 | #include <linux/mm.h> |
36 | #include <linux/page-flags.h> | 36 | #include <linux/page-flags.h> |
37 | #include <linux/kernel-page-flags.h> | ||
37 | #include <linux/sched.h> | 38 | #include <linux/sched.h> |
38 | #include <linux/ksm.h> | 39 | #include <linux/ksm.h> |
39 | #include <linux/rmap.h> | 40 | #include <linux/rmap.h> |
40 | #include <linux/pagemap.h> | 41 | #include <linux/pagemap.h> |
41 | #include <linux/swap.h> | 42 | #include <linux/swap.h> |
42 | #include <linux/backing-dev.h> | 43 | #include <linux/backing-dev.h> |
44 | #include <linux/migrate.h> | ||
45 | #include <linux/page-isolation.h> | ||
46 | #include <linux/suspend.h> | ||
43 | #include "internal.h" | 47 | #include "internal.h" |
44 | 48 | ||
45 | int sysctl_memory_failure_early_kill __read_mostly = 0; | 49 | int sysctl_memory_failure_early_kill __read_mostly = 0; |
@@ -48,6 +52,129 @@ int sysctl_memory_failure_recovery __read_mostly = 1; | |||
48 | 52 | ||
49 | atomic_long_t mce_bad_pages __read_mostly = ATOMIC_LONG_INIT(0); | 53 | atomic_long_t mce_bad_pages __read_mostly = ATOMIC_LONG_INIT(0); |
50 | 54 | ||
55 | #if defined(CONFIG_HWPOISON_INJECT) || defined(CONFIG_HWPOISON_INJECT_MODULE) | ||
56 | |||
57 | u32 hwpoison_filter_enable = 0; | ||
58 | u32 hwpoison_filter_dev_major = ~0U; | ||
59 | u32 hwpoison_filter_dev_minor = ~0U; | ||
60 | u64 hwpoison_filter_flags_mask; | ||
61 | u64 hwpoison_filter_flags_value; | ||
62 | EXPORT_SYMBOL_GPL(hwpoison_filter_enable); | ||
63 | EXPORT_SYMBOL_GPL(hwpoison_filter_dev_major); | ||
64 | EXPORT_SYMBOL_GPL(hwpoison_filter_dev_minor); | ||
65 | EXPORT_SYMBOL_GPL(hwpoison_filter_flags_mask); | ||
66 | EXPORT_SYMBOL_GPL(hwpoison_filter_flags_value); | ||
67 | |||
68 | static int hwpoison_filter_dev(struct page *p) | ||
69 | { | ||
70 | struct address_space *mapping; | ||
71 | dev_t dev; | ||
72 | |||
73 | if (hwpoison_filter_dev_major == ~0U && | ||
74 | hwpoison_filter_dev_minor == ~0U) | ||
75 | return 0; | ||
76 | |||
77 | /* | ||
78 | * page_mapping() does not accept slab page | ||
79 | */ | ||
80 | if (PageSlab(p)) | ||
81 | return -EINVAL; | ||
82 | |||
83 | mapping = page_mapping(p); | ||
84 | if (mapping == NULL || mapping->host == NULL) | ||
85 | return -EINVAL; | ||
86 | |||
87 | dev = mapping->host->i_sb->s_dev; | ||
88 | if (hwpoison_filter_dev_major != ~0U && | ||
89 | hwpoison_filter_dev_major != MAJOR(dev)) | ||
90 | return -EINVAL; | ||
91 | if (hwpoison_filter_dev_minor != ~0U && | ||
92 | hwpoison_filter_dev_minor != MINOR(dev)) | ||
93 | return -EINVAL; | ||
94 | |||
95 | return 0; | ||
96 | } | ||
97 | |||
98 | static int hwpoison_filter_flags(struct page *p) | ||
99 | { | ||
100 | if (!hwpoison_filter_flags_mask) | ||
101 | return 0; | ||
102 | |||
103 | if ((stable_page_flags(p) & hwpoison_filter_flags_mask) == | ||
104 | hwpoison_filter_flags_value) | ||
105 | return 0; | ||
106 | else | ||
107 | return -EINVAL; | ||
108 | } | ||
109 | |||
110 | /* | ||
111 | * This allows stress tests to limit test scope to a collection of tasks | ||
112 | * by putting them under some memcg. This prevents killing unrelated/important | ||
113 | * processes such as /sbin/init. Note that the target task may share clean | ||
114 | * pages with init (eg. libc text), which is harmless. If the target task | ||
115 | * share _dirty_ pages with another task B, the test scheme must make sure B | ||
116 | * is also included in the memcg. At last, due to race conditions this filter | ||
117 | * can only guarantee that the page either belongs to the memcg tasks, or is | ||
118 | * a freed page. | ||
119 | */ | ||
120 | #ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP | ||
121 | u64 hwpoison_filter_memcg; | ||
122 | EXPORT_SYMBOL_GPL(hwpoison_filter_memcg); | ||
123 | static int hwpoison_filter_task(struct page *p) | ||
124 | { | ||
125 | struct mem_cgroup *mem; | ||
126 | struct cgroup_subsys_state *css; | ||
127 | unsigned long ino; | ||
128 | |||
129 | if (!hwpoison_filter_memcg) | ||
130 | return 0; | ||
131 | |||
132 | mem = try_get_mem_cgroup_from_page(p); | ||
133 | if (!mem) | ||
134 | return -EINVAL; | ||
135 | |||
136 | css = mem_cgroup_css(mem); | ||
137 | /* root_mem_cgroup has NULL dentries */ | ||
138 | if (!css->cgroup->dentry) | ||
139 | return -EINVAL; | ||
140 | |||
141 | ino = css->cgroup->dentry->d_inode->i_ino; | ||
142 | css_put(css); | ||
143 | |||
144 | if (ino != hwpoison_filter_memcg) | ||
145 | return -EINVAL; | ||
146 | |||
147 | return 0; | ||
148 | } | ||
149 | #else | ||
150 | static int hwpoison_filter_task(struct page *p) { return 0; } | ||
151 | #endif | ||
152 | |||
153 | int hwpoison_filter(struct page *p) | ||
154 | { | ||
155 | if (!hwpoison_filter_enable) | ||
156 | return 0; | ||
157 | |||
158 | if (hwpoison_filter_dev(p)) | ||
159 | return -EINVAL; | ||
160 | |||
161 | if (hwpoison_filter_flags(p)) | ||
162 | return -EINVAL; | ||
163 | |||
164 | if (hwpoison_filter_task(p)) | ||
165 | return -EINVAL; | ||
166 | |||
167 | return 0; | ||
168 | } | ||
169 | #else | ||
170 | int hwpoison_filter(struct page *p) | ||
171 | { | ||
172 | return 0; | ||
173 | } | ||
174 | #endif | ||
175 | |||
176 | EXPORT_SYMBOL_GPL(hwpoison_filter); | ||
177 | |||
51 | /* | 178 | /* |
52 | * Send all the processes who have the page mapped an ``action optional'' | 179 | * Send all the processes who have the page mapped an ``action optional'' |
53 | * signal. | 180 | * signal. |
@@ -83,6 +210,36 @@ static int kill_proc_ao(struct task_struct *t, unsigned long addr, int trapno, | |||
83 | } | 210 | } |
84 | 211 | ||
85 | /* | 212 | /* |
213 | * When a unknown page type is encountered drain as many buffers as possible | ||
214 | * in the hope to turn the page into a LRU or free page, which we can handle. | ||
215 | */ | ||
216 | void shake_page(struct page *p, int access) | ||
217 | { | ||
218 | if (!PageSlab(p)) { | ||
219 | lru_add_drain_all(); | ||
220 | if (PageLRU(p)) | ||
221 | return; | ||
222 | drain_all_pages(); | ||
223 | if (PageLRU(p) || is_free_buddy_page(p)) | ||
224 | return; | ||
225 | } | ||
226 | |||
227 | /* | ||
228 | * Only all shrink_slab here (which would also | ||
229 | * shrink other caches) if access is not potentially fatal. | ||
230 | */ | ||
231 | if (access) { | ||
232 | int nr; | ||
233 | do { | ||
234 | nr = shrink_slab(1000, GFP_KERNEL, 1000); | ||
235 | if (page_count(p) == 0) | ||
236 | break; | ||
237 | } while (nr > 10); | ||
238 | } | ||
239 | } | ||
240 | EXPORT_SYMBOL_GPL(shake_page); | ||
241 | |||
242 | /* | ||
86 | * Kill all processes that have a poisoned page mapped and then isolate | 243 | * Kill all processes that have a poisoned page mapped and then isolate |
87 | * the page. | 244 | * the page. |
88 | * | 245 | * |
@@ -177,7 +334,6 @@ static void kill_procs_ao(struct list_head *to_kill, int doit, int trapno, | |||
177 | * In case something went wrong with munmapping | 334 | * In case something went wrong with munmapping |
178 | * make sure the process doesn't catch the | 335 | * make sure the process doesn't catch the |
179 | * signal and then access the memory. Just kill it. | 336 | * signal and then access the memory. Just kill it. |
180 | * the signal handlers | ||
181 | */ | 337 | */ |
182 | if (fail || tk->addr_valid == 0) { | 338 | if (fail || tk->addr_valid == 0) { |
183 | printk(KERN_ERR | 339 | printk(KERN_ERR |
@@ -314,33 +470,49 @@ static void collect_procs(struct page *page, struct list_head *tokill) | |||
314 | */ | 470 | */ |
315 | 471 | ||
316 | enum outcome { | 472 | enum outcome { |
317 | FAILED, /* Error handling failed */ | 473 | IGNORED, /* Error: cannot be handled */ |
474 | FAILED, /* Error: handling failed */ | ||
318 | DELAYED, /* Will be handled later */ | 475 | DELAYED, /* Will be handled later */ |
319 | IGNORED, /* Error safely ignored */ | ||
320 | RECOVERED, /* Successfully recovered */ | 476 | RECOVERED, /* Successfully recovered */ |
321 | }; | 477 | }; |
322 | 478 | ||
323 | static const char *action_name[] = { | 479 | static const char *action_name[] = { |
480 | [IGNORED] = "Ignored", | ||
324 | [FAILED] = "Failed", | 481 | [FAILED] = "Failed", |
325 | [DELAYED] = "Delayed", | 482 | [DELAYED] = "Delayed", |
326 | [IGNORED] = "Ignored", | ||
327 | [RECOVERED] = "Recovered", | 483 | [RECOVERED] = "Recovered", |
328 | }; | 484 | }; |
329 | 485 | ||
330 | /* | 486 | /* |
331 | * Error hit kernel page. | 487 | * XXX: It is possible that a page is isolated from LRU cache, |
332 | * Do nothing, try to be lucky and not touch this instead. For a few cases we | 488 | * and then kept in swap cache or failed to remove from page cache. |
333 | * could be more sophisticated. | 489 | * The page count will stop it from being freed by unpoison. |
490 | * Stress tests should be aware of this memory leak problem. | ||
334 | */ | 491 | */ |
335 | static int me_kernel(struct page *p, unsigned long pfn) | 492 | static int delete_from_lru_cache(struct page *p) |
336 | { | 493 | { |
337 | return DELAYED; | 494 | if (!isolate_lru_page(p)) { |
495 | /* | ||
496 | * Clear sensible page flags, so that the buddy system won't | ||
497 | * complain when the page is unpoison-and-freed. | ||
498 | */ | ||
499 | ClearPageActive(p); | ||
500 | ClearPageUnevictable(p); | ||
501 | /* | ||
502 | * drop the page count elevated by isolate_lru_page() | ||
503 | */ | ||
504 | page_cache_release(p); | ||
505 | return 0; | ||
506 | } | ||
507 | return -EIO; | ||
338 | } | 508 | } |
339 | 509 | ||
340 | /* | 510 | /* |
341 | * Already poisoned page. | 511 | * Error hit kernel page. |
512 | * Do nothing, try to be lucky and not touch this instead. For a few cases we | ||
513 | * could be more sophisticated. | ||
342 | */ | 514 | */ |
343 | static int me_ignore(struct page *p, unsigned long pfn) | 515 | static int me_kernel(struct page *p, unsigned long pfn) |
344 | { | 516 | { |
345 | return IGNORED; | 517 | return IGNORED; |
346 | } | 518 | } |
@@ -355,14 +527,6 @@ static int me_unknown(struct page *p, unsigned long pfn) | |||
355 | } | 527 | } |
356 | 528 | ||
357 | /* | 529 | /* |
358 | * Free memory | ||
359 | */ | ||
360 | static int me_free(struct page *p, unsigned long pfn) | ||
361 | { | ||
362 | return DELAYED; | ||
363 | } | ||
364 | |||
365 | /* | ||
366 | * Clean (or cleaned) page cache page. | 530 | * Clean (or cleaned) page cache page. |
367 | */ | 531 | */ |
368 | static int me_pagecache_clean(struct page *p, unsigned long pfn) | 532 | static int me_pagecache_clean(struct page *p, unsigned long pfn) |
@@ -371,6 +535,8 @@ static int me_pagecache_clean(struct page *p, unsigned long pfn) | |||
371 | int ret = FAILED; | 535 | int ret = FAILED; |
372 | struct address_space *mapping; | 536 | struct address_space *mapping; |
373 | 537 | ||
538 | delete_from_lru_cache(p); | ||
539 | |||
374 | /* | 540 | /* |
375 | * For anonymous pages we're done the only reference left | 541 | * For anonymous pages we're done the only reference left |
376 | * should be the one m_f() holds. | 542 | * should be the one m_f() holds. |
@@ -500,14 +666,20 @@ static int me_swapcache_dirty(struct page *p, unsigned long pfn) | |||
500 | /* Trigger EIO in shmem: */ | 666 | /* Trigger EIO in shmem: */ |
501 | ClearPageUptodate(p); | 667 | ClearPageUptodate(p); |
502 | 668 | ||
503 | return DELAYED; | 669 | if (!delete_from_lru_cache(p)) |
670 | return DELAYED; | ||
671 | else | ||
672 | return FAILED; | ||
504 | } | 673 | } |
505 | 674 | ||
506 | static int me_swapcache_clean(struct page *p, unsigned long pfn) | 675 | static int me_swapcache_clean(struct page *p, unsigned long pfn) |
507 | { | 676 | { |
508 | delete_from_swap_cache(p); | 677 | delete_from_swap_cache(p); |
509 | 678 | ||
510 | return RECOVERED; | 679 | if (!delete_from_lru_cache(p)) |
680 | return RECOVERED; | ||
681 | else | ||
682 | return FAILED; | ||
511 | } | 683 | } |
512 | 684 | ||
513 | /* | 685 | /* |
@@ -550,7 +722,6 @@ static int me_huge_page(struct page *p, unsigned long pfn) | |||
550 | #define tail (1UL << PG_tail) | 722 | #define tail (1UL << PG_tail) |
551 | #define compound (1UL << PG_compound) | 723 | #define compound (1UL << PG_compound) |
552 | #define slab (1UL << PG_slab) | 724 | #define slab (1UL << PG_slab) |
553 | #define buddy (1UL << PG_buddy) | ||
554 | #define reserved (1UL << PG_reserved) | 725 | #define reserved (1UL << PG_reserved) |
555 | 726 | ||
556 | static struct page_state { | 727 | static struct page_state { |
@@ -559,8 +730,11 @@ static struct page_state { | |||
559 | char *msg; | 730 | char *msg; |
560 | int (*action)(struct page *p, unsigned long pfn); | 731 | int (*action)(struct page *p, unsigned long pfn); |
561 | } error_states[] = { | 732 | } error_states[] = { |
562 | { reserved, reserved, "reserved kernel", me_ignore }, | 733 | { reserved, reserved, "reserved kernel", me_kernel }, |
563 | { buddy, buddy, "free kernel", me_free }, | 734 | /* |
735 | * free pages are specially detected outside this table: | ||
736 | * PG_buddy pages only make a small fraction of all free pages. | ||
737 | */ | ||
564 | 738 | ||
565 | /* | 739 | /* |
566 | * Could in theory check if slab page is free or if we can drop | 740 | * Could in theory check if slab page is free or if we can drop |
@@ -582,14 +756,11 @@ static struct page_state { | |||
582 | { unevict|dirty, unevict|dirty, "unevictable LRU", me_pagecache_dirty}, | 756 | { unevict|dirty, unevict|dirty, "unevictable LRU", me_pagecache_dirty}, |
583 | { unevict, unevict, "unevictable LRU", me_pagecache_clean}, | 757 | { unevict, unevict, "unevictable LRU", me_pagecache_clean}, |
584 | 758 | ||
585 | #ifdef CONFIG_HAVE_MLOCKED_PAGE_BIT | ||
586 | { mlock|dirty, mlock|dirty, "mlocked LRU", me_pagecache_dirty }, | 759 | { mlock|dirty, mlock|dirty, "mlocked LRU", me_pagecache_dirty }, |
587 | { mlock, mlock, "mlocked LRU", me_pagecache_clean }, | 760 | { mlock, mlock, "mlocked LRU", me_pagecache_clean }, |
588 | #endif | ||
589 | 761 | ||
590 | { lru|dirty, lru|dirty, "LRU", me_pagecache_dirty }, | 762 | { lru|dirty, lru|dirty, "LRU", me_pagecache_dirty }, |
591 | { lru|dirty, lru, "clean LRU", me_pagecache_clean }, | 763 | { lru|dirty, lru, "clean LRU", me_pagecache_clean }, |
592 | { swapbacked, swapbacked, "anonymous", me_pagecache_clean }, | ||
593 | 764 | ||
594 | /* | 765 | /* |
595 | * Catchall entry: must be at end. | 766 | * Catchall entry: must be at end. |
@@ -597,20 +768,31 @@ static struct page_state { | |||
597 | { 0, 0, "unknown page state", me_unknown }, | 768 | { 0, 0, "unknown page state", me_unknown }, |
598 | }; | 769 | }; |
599 | 770 | ||
771 | #undef dirty | ||
772 | #undef sc | ||
773 | #undef unevict | ||
774 | #undef mlock | ||
775 | #undef writeback | ||
776 | #undef lru | ||
777 | #undef swapbacked | ||
778 | #undef head | ||
779 | #undef tail | ||
780 | #undef compound | ||
781 | #undef slab | ||
782 | #undef reserved | ||
783 | |||
600 | static void action_result(unsigned long pfn, char *msg, int result) | 784 | static void action_result(unsigned long pfn, char *msg, int result) |
601 | { | 785 | { |
602 | struct page *page = NULL; | 786 | struct page *page = pfn_to_page(pfn); |
603 | if (pfn_valid(pfn)) | ||
604 | page = pfn_to_page(pfn); | ||
605 | 787 | ||
606 | printk(KERN_ERR "MCE %#lx: %s%s page recovery: %s\n", | 788 | printk(KERN_ERR "MCE %#lx: %s%s page recovery: %s\n", |
607 | pfn, | 789 | pfn, |
608 | page && PageDirty(page) ? "dirty " : "", | 790 | PageDirty(page) ? "dirty " : "", |
609 | msg, action_name[result]); | 791 | msg, action_name[result]); |
610 | } | 792 | } |
611 | 793 | ||
612 | static int page_action(struct page_state *ps, struct page *p, | 794 | static int page_action(struct page_state *ps, struct page *p, |
613 | unsigned long pfn, int ref) | 795 | unsigned long pfn) |
614 | { | 796 | { |
615 | int result; | 797 | int result; |
616 | int count; | 798 | int count; |
@@ -618,18 +800,22 @@ static int page_action(struct page_state *ps, struct page *p, | |||
618 | result = ps->action(p, pfn); | 800 | result = ps->action(p, pfn); |
619 | action_result(pfn, ps->msg, result); | 801 | action_result(pfn, ps->msg, result); |
620 | 802 | ||
621 | count = page_count(p) - 1 - ref; | 803 | count = page_count(p) - 1; |
622 | if (count != 0) | 804 | if (ps->action == me_swapcache_dirty && result == DELAYED) |
805 | count--; | ||
806 | if (count != 0) { | ||
623 | printk(KERN_ERR | 807 | printk(KERN_ERR |
624 | "MCE %#lx: %s page still referenced by %d users\n", | 808 | "MCE %#lx: %s page still referenced by %d users\n", |
625 | pfn, ps->msg, count); | 809 | pfn, ps->msg, count); |
810 | result = FAILED; | ||
811 | } | ||
626 | 812 | ||
627 | /* Could do more checks here if page looks ok */ | 813 | /* Could do more checks here if page looks ok */ |
628 | /* | 814 | /* |
629 | * Could adjust zone counters here to correct for the missing page. | 815 | * Could adjust zone counters here to correct for the missing page. |
630 | */ | 816 | */ |
631 | 817 | ||
632 | return result == RECOVERED ? 0 : -EBUSY; | 818 | return (result == RECOVERED || result == DELAYED) ? 0 : -EBUSY; |
633 | } | 819 | } |
634 | 820 | ||
635 | #define N_UNMAP_TRIES 5 | 821 | #define N_UNMAP_TRIES 5 |
@@ -638,7 +824,7 @@ static int page_action(struct page_state *ps, struct page *p, | |||
638 | * Do all that is necessary to remove user space mappings. Unmap | 824 | * Do all that is necessary to remove user space mappings. Unmap |
639 | * the pages and send SIGBUS to the processes if the data was dirty. | 825 | * the pages and send SIGBUS to the processes if the data was dirty. |
640 | */ | 826 | */ |
641 | static void hwpoison_user_mappings(struct page *p, unsigned long pfn, | 827 | static int hwpoison_user_mappings(struct page *p, unsigned long pfn, |
642 | int trapno) | 828 | int trapno) |
643 | { | 829 | { |
644 | enum ttu_flags ttu = TTU_UNMAP | TTU_IGNORE_MLOCK | TTU_IGNORE_ACCESS; | 830 | enum ttu_flags ttu = TTU_UNMAP | TTU_IGNORE_MLOCK | TTU_IGNORE_ACCESS; |
@@ -648,15 +834,18 @@ static void hwpoison_user_mappings(struct page *p, unsigned long pfn, | |||
648 | int i; | 834 | int i; |
649 | int kill = 1; | 835 | int kill = 1; |
650 | 836 | ||
651 | if (PageReserved(p) || PageCompound(p) || PageSlab(p) || PageKsm(p)) | 837 | if (PageReserved(p) || PageSlab(p)) |
652 | return; | 838 | return SWAP_SUCCESS; |
653 | 839 | ||
654 | /* | 840 | /* |
655 | * This check implies we don't kill processes if their pages | 841 | * This check implies we don't kill processes if their pages |
656 | * are in the swap cache early. Those are always late kills. | 842 | * are in the swap cache early. Those are always late kills. |
657 | */ | 843 | */ |
658 | if (!page_mapped(p)) | 844 | if (!page_mapped(p)) |
659 | return; | 845 | return SWAP_SUCCESS; |
846 | |||
847 | if (PageCompound(p) || PageKsm(p)) | ||
848 | return SWAP_FAIL; | ||
660 | 849 | ||
661 | if (PageSwapCache(p)) { | 850 | if (PageSwapCache(p)) { |
662 | printk(KERN_ERR | 851 | printk(KERN_ERR |
@@ -667,6 +856,8 @@ static void hwpoison_user_mappings(struct page *p, unsigned long pfn, | |||
667 | /* | 856 | /* |
668 | * Propagate the dirty bit from PTEs to struct page first, because we | 857 | * Propagate the dirty bit from PTEs to struct page first, because we |
669 | * need this to decide if we should kill or just drop the page. | 858 | * need this to decide if we should kill or just drop the page. |
859 | * XXX: the dirty test could be racy: set_page_dirty() may not always | ||
860 | * be called inside page lock (it's recommended but not enforced). | ||
670 | */ | 861 | */ |
671 | mapping = page_mapping(p); | 862 | mapping = page_mapping(p); |
672 | if (!PageDirty(p) && mapping && mapping_cap_writeback_dirty(mapping)) { | 863 | if (!PageDirty(p) && mapping && mapping_cap_writeback_dirty(mapping)) { |
@@ -718,11 +909,12 @@ static void hwpoison_user_mappings(struct page *p, unsigned long pfn, | |||
718 | */ | 909 | */ |
719 | kill_procs_ao(&tokill, !!PageDirty(p), trapno, | 910 | kill_procs_ao(&tokill, !!PageDirty(p), trapno, |
720 | ret != SWAP_SUCCESS, pfn); | 911 | ret != SWAP_SUCCESS, pfn); |
912 | |||
913 | return ret; | ||
721 | } | 914 | } |
722 | 915 | ||
723 | int __memory_failure(unsigned long pfn, int trapno, int ref) | 916 | int __memory_failure(unsigned long pfn, int trapno, int flags) |
724 | { | 917 | { |
725 | unsigned long lru_flag; | ||
726 | struct page_state *ps; | 918 | struct page_state *ps; |
727 | struct page *p; | 919 | struct page *p; |
728 | int res; | 920 | int res; |
@@ -731,13 +923,15 @@ int __memory_failure(unsigned long pfn, int trapno, int ref) | |||
731 | panic("Memory failure from trap %d on page %lx", trapno, pfn); | 923 | panic("Memory failure from trap %d on page %lx", trapno, pfn); |
732 | 924 | ||
733 | if (!pfn_valid(pfn)) { | 925 | if (!pfn_valid(pfn)) { |
734 | action_result(pfn, "memory outside kernel control", IGNORED); | 926 | printk(KERN_ERR |
735 | return -EIO; | 927 | "MCE %#lx: memory outside kernel control\n", |
928 | pfn); | ||
929 | return -ENXIO; | ||
736 | } | 930 | } |
737 | 931 | ||
738 | p = pfn_to_page(pfn); | 932 | p = pfn_to_page(pfn); |
739 | if (TestSetPageHWPoison(p)) { | 933 | if (TestSetPageHWPoison(p)) { |
740 | action_result(pfn, "already hardware poisoned", IGNORED); | 934 | printk(KERN_ERR "MCE %#lx: already hardware poisoned\n", pfn); |
741 | return 0; | 935 | return 0; |
742 | } | 936 | } |
743 | 937 | ||
@@ -754,9 +948,15 @@ int __memory_failure(unsigned long pfn, int trapno, int ref) | |||
754 | * In fact it's dangerous to directly bump up page count from 0, | 948 | * In fact it's dangerous to directly bump up page count from 0, |
755 | * that may make page_freeze_refs()/page_unfreeze_refs() mismatch. | 949 | * that may make page_freeze_refs()/page_unfreeze_refs() mismatch. |
756 | */ | 950 | */ |
757 | if (!get_page_unless_zero(compound_head(p))) { | 951 | if (!(flags & MF_COUNT_INCREASED) && |
758 | action_result(pfn, "free or high order kernel", IGNORED); | 952 | !get_page_unless_zero(compound_head(p))) { |
759 | return PageBuddy(compound_head(p)) ? 0 : -EBUSY; | 953 | if (is_free_buddy_page(p)) { |
954 | action_result(pfn, "free buddy", DELAYED); | ||
955 | return 0; | ||
956 | } else { | ||
957 | action_result(pfn, "high order kernel", IGNORED); | ||
958 | return -EBUSY; | ||
959 | } | ||
760 | } | 960 | } |
761 | 961 | ||
762 | /* | 962 | /* |
@@ -768,14 +968,19 @@ int __memory_failure(unsigned long pfn, int trapno, int ref) | |||
768 | * walked by the page reclaim code, however that's not a big loss. | 968 | * walked by the page reclaim code, however that's not a big loss. |
769 | */ | 969 | */ |
770 | if (!PageLRU(p)) | 970 | if (!PageLRU(p)) |
771 | lru_add_drain_all(); | 971 | shake_page(p, 0); |
772 | lru_flag = p->flags & lru; | 972 | if (!PageLRU(p)) { |
773 | if (isolate_lru_page(p)) { | 973 | /* |
974 | * shake_page could have turned it free. | ||
975 | */ | ||
976 | if (is_free_buddy_page(p)) { | ||
977 | action_result(pfn, "free buddy, 2nd try", DELAYED); | ||
978 | return 0; | ||
979 | } | ||
774 | action_result(pfn, "non LRU", IGNORED); | 980 | action_result(pfn, "non LRU", IGNORED); |
775 | put_page(p); | 981 | put_page(p); |
776 | return -EBUSY; | 982 | return -EBUSY; |
777 | } | 983 | } |
778 | page_cache_release(p); | ||
779 | 984 | ||
780 | /* | 985 | /* |
781 | * Lock the page and wait for writeback to finish. | 986 | * Lock the page and wait for writeback to finish. |
@@ -783,26 +988,48 @@ int __memory_failure(unsigned long pfn, int trapno, int ref) | |||
783 | * and in many cases impossible, so we just avoid it here. | 988 | * and in many cases impossible, so we just avoid it here. |
784 | */ | 989 | */ |
785 | lock_page_nosync(p); | 990 | lock_page_nosync(p); |
991 | |||
992 | /* | ||
993 | * unpoison always clear PG_hwpoison inside page lock | ||
994 | */ | ||
995 | if (!PageHWPoison(p)) { | ||
996 | printk(KERN_ERR "MCE %#lx: just unpoisoned\n", pfn); | ||
997 | res = 0; | ||
998 | goto out; | ||
999 | } | ||
1000 | if (hwpoison_filter(p)) { | ||
1001 | if (TestClearPageHWPoison(p)) | ||
1002 | atomic_long_dec(&mce_bad_pages); | ||
1003 | unlock_page(p); | ||
1004 | put_page(p); | ||
1005 | return 0; | ||
1006 | } | ||
1007 | |||
786 | wait_on_page_writeback(p); | 1008 | wait_on_page_writeback(p); |
787 | 1009 | ||
788 | /* | 1010 | /* |
789 | * Now take care of user space mappings. | 1011 | * Now take care of user space mappings. |
1012 | * Abort on fail: __remove_from_page_cache() assumes unmapped page. | ||
790 | */ | 1013 | */ |
791 | hwpoison_user_mappings(p, pfn, trapno); | 1014 | if (hwpoison_user_mappings(p, pfn, trapno) != SWAP_SUCCESS) { |
1015 | printk(KERN_ERR "MCE %#lx: cannot unmap page, give up\n", pfn); | ||
1016 | res = -EBUSY; | ||
1017 | goto out; | ||
1018 | } | ||
792 | 1019 | ||
793 | /* | 1020 | /* |
794 | * Torn down by someone else? | 1021 | * Torn down by someone else? |
795 | */ | 1022 | */ |
796 | if ((lru_flag & lru) && !PageSwapCache(p) && p->mapping == NULL) { | 1023 | if (PageLRU(p) && !PageSwapCache(p) && p->mapping == NULL) { |
797 | action_result(pfn, "already truncated LRU", IGNORED); | 1024 | action_result(pfn, "already truncated LRU", IGNORED); |
798 | res = 0; | 1025 | res = -EBUSY; |
799 | goto out; | 1026 | goto out; |
800 | } | 1027 | } |
801 | 1028 | ||
802 | res = -EBUSY; | 1029 | res = -EBUSY; |
803 | for (ps = error_states;; ps++) { | 1030 | for (ps = error_states;; ps++) { |
804 | if (((p->flags | lru_flag)& ps->mask) == ps->res) { | 1031 | if ((p->flags & ps->mask) == ps->res) { |
805 | res = page_action(ps, p, pfn, ref); | 1032 | res = page_action(ps, p, pfn); |
806 | break; | 1033 | break; |
807 | } | 1034 | } |
808 | } | 1035 | } |
@@ -833,3 +1060,235 @@ void memory_failure(unsigned long pfn, int trapno) | |||
833 | { | 1060 | { |
834 | __memory_failure(pfn, trapno, 0); | 1061 | __memory_failure(pfn, trapno, 0); |
835 | } | 1062 | } |
1063 | |||
1064 | /** | ||
1065 | * unpoison_memory - Unpoison a previously poisoned page | ||
1066 | * @pfn: Page number of the to be unpoisoned page | ||
1067 | * | ||
1068 | * Software-unpoison a page that has been poisoned by | ||
1069 | * memory_failure() earlier. | ||
1070 | * | ||
1071 | * This is only done on the software-level, so it only works | ||
1072 | * for linux injected failures, not real hardware failures | ||
1073 | * | ||
1074 | * Returns 0 for success, otherwise -errno. | ||
1075 | */ | ||
1076 | int unpoison_memory(unsigned long pfn) | ||
1077 | { | ||
1078 | struct page *page; | ||
1079 | struct page *p; | ||
1080 | int freeit = 0; | ||
1081 | |||
1082 | if (!pfn_valid(pfn)) | ||
1083 | return -ENXIO; | ||
1084 | |||
1085 | p = pfn_to_page(pfn); | ||
1086 | page = compound_head(p); | ||
1087 | |||
1088 | if (!PageHWPoison(p)) { | ||
1089 | pr_debug("MCE: Page was already unpoisoned %#lx\n", pfn); | ||
1090 | return 0; | ||
1091 | } | ||
1092 | |||
1093 | if (!get_page_unless_zero(page)) { | ||
1094 | if (TestClearPageHWPoison(p)) | ||
1095 | atomic_long_dec(&mce_bad_pages); | ||
1096 | pr_debug("MCE: Software-unpoisoned free page %#lx\n", pfn); | ||
1097 | return 0; | ||
1098 | } | ||
1099 | |||
1100 | lock_page_nosync(page); | ||
1101 | /* | ||
1102 | * This test is racy because PG_hwpoison is set outside of page lock. | ||
1103 | * That's acceptable because that won't trigger kernel panic. Instead, | ||
1104 | * the PG_hwpoison page will be caught and isolated on the entrance to | ||
1105 | * the free buddy page pool. | ||
1106 | */ | ||
1107 | if (TestClearPageHWPoison(p)) { | ||
1108 | pr_debug("MCE: Software-unpoisoned page %#lx\n", pfn); | ||
1109 | atomic_long_dec(&mce_bad_pages); | ||
1110 | freeit = 1; | ||
1111 | } | ||
1112 | unlock_page(page); | ||
1113 | |||
1114 | put_page(page); | ||
1115 | if (freeit) | ||
1116 | put_page(page); | ||
1117 | |||
1118 | return 0; | ||
1119 | } | ||
1120 | EXPORT_SYMBOL(unpoison_memory); | ||
1121 | |||
1122 | static struct page *new_page(struct page *p, unsigned long private, int **x) | ||
1123 | { | ||
1124 | int nid = page_to_nid(p); | ||
1125 | return alloc_pages_exact_node(nid, GFP_HIGHUSER_MOVABLE, 0); | ||
1126 | } | ||
1127 | |||
1128 | /* | ||
1129 | * Safely get reference count of an arbitrary page. | ||
1130 | * Returns 0 for a free page, -EIO for a zero refcount page | ||
1131 | * that is not free, and 1 for any other page type. | ||
1132 | * For 1 the page is returned with increased page count, otherwise not. | ||
1133 | */ | ||
1134 | static int get_any_page(struct page *p, unsigned long pfn, int flags) | ||
1135 | { | ||
1136 | int ret; | ||
1137 | |||
1138 | if (flags & MF_COUNT_INCREASED) | ||
1139 | return 1; | ||
1140 | |||
1141 | /* | ||
1142 | * The lock_system_sleep prevents a race with memory hotplug, | ||
1143 | * because the isolation assumes there's only a single user. | ||
1144 | * This is a big hammer, a better would be nicer. | ||
1145 | */ | ||
1146 | lock_system_sleep(); | ||
1147 | |||
1148 | /* | ||
1149 | * Isolate the page, so that it doesn't get reallocated if it | ||
1150 | * was free. | ||
1151 | */ | ||
1152 | set_migratetype_isolate(p); | ||
1153 | if (!get_page_unless_zero(compound_head(p))) { | ||
1154 | if (is_free_buddy_page(p)) { | ||
1155 | pr_debug("get_any_page: %#lx free buddy page\n", pfn); | ||
1156 | /* Set hwpoison bit while page is still isolated */ | ||
1157 | SetPageHWPoison(p); | ||
1158 | ret = 0; | ||
1159 | } else { | ||
1160 | pr_debug("get_any_page: %#lx: unknown zero refcount page type %lx\n", | ||
1161 | pfn, p->flags); | ||
1162 | ret = -EIO; | ||
1163 | } | ||
1164 | } else { | ||
1165 | /* Not a free page */ | ||
1166 | ret = 1; | ||
1167 | } | ||
1168 | unset_migratetype_isolate(p); | ||
1169 | unlock_system_sleep(); | ||
1170 | return ret; | ||
1171 | } | ||
1172 | |||
1173 | /** | ||
1174 | * soft_offline_page - Soft offline a page. | ||
1175 | * @page: page to offline | ||
1176 | * @flags: flags. Same as memory_failure(). | ||
1177 | * | ||
1178 | * Returns 0 on success, otherwise negated errno. | ||
1179 | * | ||
1180 | * Soft offline a page, by migration or invalidation, | ||
1181 | * without killing anything. This is for the case when | ||
1182 | * a page is not corrupted yet (so it's still valid to access), | ||
1183 | * but has had a number of corrected errors and is better taken | ||
1184 | * out. | ||
1185 | * | ||
1186 | * The actual policy on when to do that is maintained by | ||
1187 | * user space. | ||
1188 | * | ||
1189 | * This should never impact any application or cause data loss, | ||
1190 | * however it might take some time. | ||
1191 | * | ||
1192 | * This is not a 100% solution for all memory, but tries to be | ||
1193 | * ``good enough'' for the majority of memory. | ||
1194 | */ | ||
1195 | int soft_offline_page(struct page *page, int flags) | ||
1196 | { | ||
1197 | int ret; | ||
1198 | unsigned long pfn = page_to_pfn(page); | ||
1199 | |||
1200 | ret = get_any_page(page, pfn, flags); | ||
1201 | if (ret < 0) | ||
1202 | return ret; | ||
1203 | if (ret == 0) | ||
1204 | goto done; | ||
1205 | |||
1206 | /* | ||
1207 | * Page cache page we can handle? | ||
1208 | */ | ||
1209 | if (!PageLRU(page)) { | ||
1210 | /* | ||
1211 | * Try to free it. | ||
1212 | */ | ||
1213 | put_page(page); | ||
1214 | shake_page(page, 1); | ||
1215 | |||
1216 | /* | ||
1217 | * Did it turn free? | ||
1218 | */ | ||
1219 | ret = get_any_page(page, pfn, 0); | ||
1220 | if (ret < 0) | ||
1221 | return ret; | ||
1222 | if (ret == 0) | ||
1223 | goto done; | ||
1224 | } | ||
1225 | if (!PageLRU(page)) { | ||
1226 | pr_debug("soft_offline: %#lx: unknown non LRU page type %lx\n", | ||
1227 | pfn, page->flags); | ||
1228 | return -EIO; | ||
1229 | } | ||
1230 | |||
1231 | lock_page(page); | ||
1232 | wait_on_page_writeback(page); | ||
1233 | |||
1234 | /* | ||
1235 | * Synchronized using the page lock with memory_failure() | ||
1236 | */ | ||
1237 | if (PageHWPoison(page)) { | ||
1238 | unlock_page(page); | ||
1239 | put_page(page); | ||
1240 | pr_debug("soft offline: %#lx page already poisoned\n", pfn); | ||
1241 | return -EBUSY; | ||
1242 | } | ||
1243 | |||
1244 | /* | ||
1245 | * Try to invalidate first. This should work for | ||
1246 | * non dirty unmapped page cache pages. | ||
1247 | */ | ||
1248 | ret = invalidate_inode_page(page); | ||
1249 | unlock_page(page); | ||
1250 | |||
1251 | /* | ||
1252 | * Drop count because page migration doesn't like raised | ||
1253 | * counts. The page could get re-allocated, but if it becomes | ||
1254 | * LRU the isolation will just fail. | ||
1255 | * RED-PEN would be better to keep it isolated here, but we | ||
1256 | * would need to fix isolation locking first. | ||
1257 | */ | ||
1258 | put_page(page); | ||
1259 | if (ret == 1) { | ||
1260 | ret = 0; | ||
1261 | pr_debug("soft_offline: %#lx: invalidated\n", pfn); | ||
1262 | goto done; | ||
1263 | } | ||
1264 | |||
1265 | /* | ||
1266 | * Simple invalidation didn't work. | ||
1267 | * Try to migrate to a new page instead. migrate.c | ||
1268 | * handles a large number of cases for us. | ||
1269 | */ | ||
1270 | ret = isolate_lru_page(page); | ||
1271 | if (!ret) { | ||
1272 | LIST_HEAD(pagelist); | ||
1273 | |||
1274 | list_add(&page->lru, &pagelist); | ||
1275 | ret = migrate_pages(&pagelist, new_page, MPOL_MF_MOVE_ALL, 0); | ||
1276 | if (ret) { | ||
1277 | pr_debug("soft offline: %#lx: migration failed %d, type %lx\n", | ||
1278 | pfn, ret, page->flags); | ||
1279 | if (ret > 0) | ||
1280 | ret = -EIO; | ||
1281 | } | ||
1282 | } else { | ||
1283 | pr_debug("soft offline: %#lx: isolation failed: %d, page count %d, type %lx\n", | ||
1284 | pfn, ret, page_count(page), page->flags); | ||
1285 | } | ||
1286 | if (ret) | ||
1287 | return ret; | ||
1288 | |||
1289 | done: | ||
1290 | atomic_long_add(1, &mce_bad_pages); | ||
1291 | SetPageHWPoison(page); | ||
1292 | /* keep elevated page count for bad page */ | ||
1293 | return ret; | ||
1294 | } | ||