Merge branch 'btrfs-3.0' into for-linus
[pandora-kernel.git] / arch / x86 / kernel / cpu / mcheck / mce.c
1 /*
2  * Machine check handler.
3  *
4  * K8 parts Copyright 2002,2003 Andi Kleen, SuSE Labs.
5  * Rest from unknown author(s).
6  * 2004 Andi Kleen. Rewrote most of it.
7  * Copyright 2008 Intel Corporation
8  * Author: Andi Kleen
9  */
10 #include <linux/thread_info.h>
11 #include <linux/capability.h>
12 #include <linux/miscdevice.h>
13 #include <linux/ratelimit.h>
14 #include <linux/kallsyms.h>
15 #include <linux/rcupdate.h>
16 #include <linux/kobject.h>
17 #include <linux/uaccess.h>
18 #include <linux/kdebug.h>
19 #include <linux/kernel.h>
20 #include <linux/percpu.h>
21 #include <linux/string.h>
22 #include <linux/sysdev.h>
23 #include <linux/syscore_ops.h>
24 #include <linux/delay.h>
25 #include <linux/ctype.h>
26 #include <linux/sched.h>
27 #include <linux/sysfs.h>
28 #include <linux/types.h>
29 #include <linux/slab.h>
30 #include <linux/init.h>
31 #include <linux/kmod.h>
32 #include <linux/poll.h>
33 #include <linux/nmi.h>
34 #include <linux/cpu.h>
35 #include <linux/smp.h>
36 #include <linux/fs.h>
37 #include <linux/mm.h>
38 #include <linux/debugfs.h>
39 #include <linux/edac_mce.h>
40 #include <linux/irq_work.h>
41
42 #include <asm/processor.h>
43 #include <asm/mce.h>
44 #include <asm/msr.h>
45
46 #include "mce-internal.h"
47
48 static DEFINE_MUTEX(mce_chrdev_read_mutex);
49
50 #define rcu_dereference_check_mce(p) \
51         rcu_dereference_index_check((p), \
52                               rcu_read_lock_sched_held() || \
53                               lockdep_is_held(&mce_chrdev_read_mutex))
54
55 #define CREATE_TRACE_POINTS
56 #include <trace/events/mce.h>
57
58 int mce_disabled __read_mostly;
59
60 #define MISC_MCELOG_MINOR       227
61
62 #define SPINUNIT 100    /* 100ns */
63
64 atomic_t mce_entry;
65
66 DEFINE_PER_CPU(unsigned, mce_exception_count);
67
68 /*
69  * Tolerant levels:
70  *   0: always panic on uncorrected errors, log corrected errors
71  *   1: panic or SIGBUS on uncorrected errors, log corrected errors
72  *   2: SIGBUS or log uncorrected errors (if possible), log corrected errors
73  *   3: never panic or SIGBUS, log all errors (for testing only)
74  */
75 static int                      tolerant                __read_mostly = 1;
76 static int                      banks                   __read_mostly;
77 static int                      rip_msr                 __read_mostly;
78 static int                      mce_bootlog             __read_mostly = -1;
79 static int                      monarch_timeout         __read_mostly = -1;
80 static int                      mce_panic_timeout       __read_mostly;
81 static int                      mce_dont_log_ce         __read_mostly;
82 int                             mce_cmci_disabled       __read_mostly;
83 int                             mce_ignore_ce           __read_mostly;
84 int                             mce_ser                 __read_mostly;
85
86 struct mce_bank                *mce_banks               __read_mostly;
87
88 /* User mode helper program triggered by machine check event */
89 static unsigned long            mce_need_notify;
90 static char                     mce_helper[128];
91 static char                     *mce_helper_argv[2] = { mce_helper, NULL };
92
93 static DECLARE_WAIT_QUEUE_HEAD(mce_chrdev_wait);
94
95 static DEFINE_PER_CPU(struct mce, mces_seen);
96 static int                      cpu_missing;
97
98 /*
99  * CPU/chipset specific EDAC code can register a notifier call here to print
100  * MCE errors in a human-readable form.
101  */
102 ATOMIC_NOTIFIER_HEAD(x86_mce_decoder_chain);
103 EXPORT_SYMBOL_GPL(x86_mce_decoder_chain);
104
105 /* MCA banks polled by the period polling timer for corrected events */
106 DEFINE_PER_CPU(mce_banks_t, mce_poll_banks) = {
107         [0 ... BITS_TO_LONGS(MAX_NR_BANKS)-1] = ~0UL
108 };
109
110 static DEFINE_PER_CPU(struct work_struct, mce_work);
111
112 /* Do initial initialization of a struct mce */
113 void mce_setup(struct mce *m)
114 {
115         memset(m, 0, sizeof(struct mce));
116         m->cpu = m->extcpu = smp_processor_id();
117         rdtscll(m->tsc);
118         /* We hope get_seconds stays lockless */
119         m->time = get_seconds();
120         m->cpuvendor = boot_cpu_data.x86_vendor;
121         m->cpuid = cpuid_eax(1);
122 #ifdef CONFIG_SMP
123         m->socketid = cpu_data(m->extcpu).phys_proc_id;
124 #endif
125         m->apicid = cpu_data(m->extcpu).initial_apicid;
126         rdmsrl(MSR_IA32_MCG_CAP, m->mcgcap);
127 }
128
129 DEFINE_PER_CPU(struct mce, injectm);
130 EXPORT_PER_CPU_SYMBOL_GPL(injectm);
131
132 /*
133  * Lockless MCE logging infrastructure.
134  * This avoids deadlocks on printk locks without having to break locks. Also
135  * separate MCEs from kernel messages to avoid bogus bug reports.
136  */
137
138 static struct mce_log mcelog = {
139         .signature      = MCE_LOG_SIGNATURE,
140         .len            = MCE_LOG_LEN,
141         .recordlen      = sizeof(struct mce),
142 };
143
144 void mce_log(struct mce *mce)
145 {
146         unsigned next, entry;
147
148         /* Emit the trace record: */
149         trace_mce_record(mce);
150
151         mce->finished = 0;
152         wmb();
153         for (;;) {
154                 entry = rcu_dereference_check_mce(mcelog.next);
155                 for (;;) {
156                         /*
157                          * If edac_mce is enabled, it will check the error type
158                          * and will process it, if it is a known error.
159                          * Otherwise, the error will be sent through mcelog
160                          * interface
161                          */
162                         if (edac_mce_parse(mce))
163                                 return;
164
165                         /*
166                          * When the buffer fills up discard new entries.
167                          * Assume that the earlier errors are the more
168                          * interesting ones:
169                          */
170                         if (entry >= MCE_LOG_LEN) {
171                                 set_bit(MCE_OVERFLOW,
172                                         (unsigned long *)&mcelog.flags);
173                                 return;
174                         }
175                         /* Old left over entry. Skip: */
176                         if (mcelog.entry[entry].finished) {
177                                 entry++;
178                                 continue;
179                         }
180                         break;
181                 }
182                 smp_rmb();
183                 next = entry + 1;
184                 if (cmpxchg(&mcelog.next, entry, next) == entry)
185                         break;
186         }
187         memcpy(mcelog.entry + entry, mce, sizeof(struct mce));
188         wmb();
189         mcelog.entry[entry].finished = 1;
190         wmb();
191
192         mce->finished = 1;
193         set_bit(0, &mce_need_notify);
194 }
195
196 static void print_mce(struct mce *m)
197 {
198         int ret = 0;
199
200         pr_emerg(HW_ERR "CPU %d: Machine Check Exception: %Lx Bank %d: %016Lx\n",
201                m->extcpu, m->mcgstatus, m->bank, m->status);
202
203         if (m->ip) {
204                 pr_emerg(HW_ERR "RIP%s %02x:<%016Lx> ",
205                         !(m->mcgstatus & MCG_STATUS_EIPV) ? " !INEXACT!" : "",
206                                 m->cs, m->ip);
207
208                 if (m->cs == __KERNEL_CS)
209                         print_symbol("{%s}", m->ip);
210                 pr_cont("\n");
211         }
212
213         pr_emerg(HW_ERR "TSC %llx ", m->tsc);
214         if (m->addr)
215                 pr_cont("ADDR %llx ", m->addr);
216         if (m->misc)
217                 pr_cont("MISC %llx ", m->misc);
218
219         pr_cont("\n");
220         pr_emerg(HW_ERR "PROCESSOR %u:%x TIME %llu SOCKET %u APIC %x\n",
221                 m->cpuvendor, m->cpuid, m->time, m->socketid, m->apicid);
222
223         /*
224          * Print out human-readable details about the MCE error,
225          * (if the CPU has an implementation for that)
226          */
227         ret = atomic_notifier_call_chain(&x86_mce_decoder_chain, 0, m);
228         if (ret == NOTIFY_STOP)
229                 return;
230
231         pr_emerg_ratelimited(HW_ERR "Run the above through 'mcelog --ascii'\n");
232 }
233
234 #define PANIC_TIMEOUT 5 /* 5 seconds */
235
236 static atomic_t mce_paniced;
237
238 static int fake_panic;
239 static atomic_t mce_fake_paniced;
240
241 /* Panic in progress. Enable interrupts and wait for final IPI */
242 static void wait_for_panic(void)
243 {
244         long timeout = PANIC_TIMEOUT*USEC_PER_SEC;
245
246         preempt_disable();
247         local_irq_enable();
248         while (timeout-- > 0)
249                 udelay(1);
250         if (panic_timeout == 0)
251                 panic_timeout = mce_panic_timeout;
252         panic("Panicing machine check CPU died");
253 }
254
255 static void mce_panic(char *msg, struct mce *final, char *exp)
256 {
257         int i, apei_err = 0;
258
259         if (!fake_panic) {
260                 /*
261                  * Make sure only one CPU runs in machine check panic
262                  */
263                 if (atomic_inc_return(&mce_paniced) > 1)
264                         wait_for_panic();
265                 barrier();
266
267                 bust_spinlocks(1);
268                 console_verbose();
269         } else {
270                 /* Don't log too much for fake panic */
271                 if (atomic_inc_return(&mce_fake_paniced) > 1)
272                         return;
273         }
274         /* First print corrected ones that are still unlogged */
275         for (i = 0; i < MCE_LOG_LEN; i++) {
276                 struct mce *m = &mcelog.entry[i];
277                 if (!(m->status & MCI_STATUS_VAL))
278                         continue;
279                 if (!(m->status & MCI_STATUS_UC)) {
280                         print_mce(m);
281                         if (!apei_err)
282                                 apei_err = apei_write_mce(m);
283                 }
284         }
285         /* Now print uncorrected but with the final one last */
286         for (i = 0; i < MCE_LOG_LEN; i++) {
287                 struct mce *m = &mcelog.entry[i];
288                 if (!(m->status & MCI_STATUS_VAL))
289                         continue;
290                 if (!(m->status & MCI_STATUS_UC))
291                         continue;
292                 if (!final || memcmp(m, final, sizeof(struct mce))) {
293                         print_mce(m);
294                         if (!apei_err)
295                                 apei_err = apei_write_mce(m);
296                 }
297         }
298         if (final) {
299                 print_mce(final);
300                 if (!apei_err)
301                         apei_err = apei_write_mce(final);
302         }
303         if (cpu_missing)
304                 pr_emerg(HW_ERR "Some CPUs didn't answer in synchronization\n");
305         if (exp)
306                 pr_emerg(HW_ERR "Machine check: %s\n", exp);
307         if (!fake_panic) {
308                 if (panic_timeout == 0)
309                         panic_timeout = mce_panic_timeout;
310                 panic(msg);
311         } else
312                 pr_emerg(HW_ERR "Fake kernel panic: %s\n", msg);
313 }
314
315 /* Support code for software error injection */
316
317 static int msr_to_offset(u32 msr)
318 {
319         unsigned bank = __this_cpu_read(injectm.bank);
320
321         if (msr == rip_msr)
322                 return offsetof(struct mce, ip);
323         if (msr == MSR_IA32_MCx_STATUS(bank))
324                 return offsetof(struct mce, status);
325         if (msr == MSR_IA32_MCx_ADDR(bank))
326                 return offsetof(struct mce, addr);
327         if (msr == MSR_IA32_MCx_MISC(bank))
328                 return offsetof(struct mce, misc);
329         if (msr == MSR_IA32_MCG_STATUS)
330                 return offsetof(struct mce, mcgstatus);
331         return -1;
332 }
333
334 /* MSR access wrappers used for error injection */
335 static u64 mce_rdmsrl(u32 msr)
336 {
337         u64 v;
338
339         if (__this_cpu_read(injectm.finished)) {
340                 int offset = msr_to_offset(msr);
341
342                 if (offset < 0)
343                         return 0;
344                 return *(u64 *)((char *)&__get_cpu_var(injectm) + offset);
345         }
346
347         if (rdmsrl_safe(msr, &v)) {
348                 WARN_ONCE(1, "mce: Unable to read msr %d!\n", msr);
349                 /*
350                  * Return zero in case the access faulted. This should
351                  * not happen normally but can happen if the CPU does
352                  * something weird, or if the code is buggy.
353                  */
354                 v = 0;
355         }
356
357         return v;
358 }
359
360 static void mce_wrmsrl(u32 msr, u64 v)
361 {
362         if (__this_cpu_read(injectm.finished)) {
363                 int offset = msr_to_offset(msr);
364
365                 if (offset >= 0)
366                         *(u64 *)((char *)&__get_cpu_var(injectm) + offset) = v;
367                 return;
368         }
369         wrmsrl(msr, v);
370 }
371
372 /*
373  * Collect all global (w.r.t. this processor) status about this machine
374  * check into our "mce" struct so that we can use it later to assess
375  * the severity of the problem as we read per-bank specific details.
376  */
377 static inline void mce_gather_info(struct mce *m, struct pt_regs *regs)
378 {
379         mce_setup(m);
380
381         m->mcgstatus = mce_rdmsrl(MSR_IA32_MCG_STATUS);
382         if (regs) {
383                 /*
384                  * Get the address of the instruction at the time of
385                  * the machine check error.
386                  */
387                 if (m->mcgstatus & (MCG_STATUS_RIPV|MCG_STATUS_EIPV)) {
388                         m->ip = regs->ip;
389                         m->cs = regs->cs;
390                 }
391                 /* Use accurate RIP reporting if available. */
392                 if (rip_msr)
393                         m->ip = mce_rdmsrl(rip_msr);
394         }
395 }
396
397 /*
398  * Simple lockless ring to communicate PFNs from the exception handler with the
399  * process context work function. This is vastly simplified because there's
400  * only a single reader and a single writer.
401  */
402 #define MCE_RING_SIZE 16        /* we use one entry less */
403
404 struct mce_ring {
405         unsigned short start;
406         unsigned short end;
407         unsigned long ring[MCE_RING_SIZE];
408 };
409 static DEFINE_PER_CPU(struct mce_ring, mce_ring);
410
411 /* Runs with CPU affinity in workqueue */
412 static int mce_ring_empty(void)
413 {
414         struct mce_ring *r = &__get_cpu_var(mce_ring);
415
416         return r->start == r->end;
417 }
418
419 static int mce_ring_get(unsigned long *pfn)
420 {
421         struct mce_ring *r;
422         int ret = 0;
423
424         *pfn = 0;
425         get_cpu();
426         r = &__get_cpu_var(mce_ring);
427         if (r->start == r->end)
428                 goto out;
429         *pfn = r->ring[r->start];
430         r->start = (r->start + 1) % MCE_RING_SIZE;
431         ret = 1;
432 out:
433         put_cpu();
434         return ret;
435 }
436
437 /* Always runs in MCE context with preempt off */
438 static int mce_ring_add(unsigned long pfn)
439 {
440         struct mce_ring *r = &__get_cpu_var(mce_ring);
441         unsigned next;
442
443         next = (r->end + 1) % MCE_RING_SIZE;
444         if (next == r->start)
445                 return -1;
446         r->ring[r->end] = pfn;
447         wmb();
448         r->end = next;
449         return 0;
450 }
451
452 int mce_available(struct cpuinfo_x86 *c)
453 {
454         if (mce_disabled)
455                 return 0;
456         return cpu_has(c, X86_FEATURE_MCE) && cpu_has(c, X86_FEATURE_MCA);
457 }
458
459 static void mce_schedule_work(void)
460 {
461         if (!mce_ring_empty()) {
462                 struct work_struct *work = &__get_cpu_var(mce_work);
463                 if (!work_pending(work))
464                         schedule_work(work);
465         }
466 }
467
468 DEFINE_PER_CPU(struct irq_work, mce_irq_work);
469
470 static void mce_irq_work_cb(struct irq_work *entry)
471 {
472         mce_notify_irq();
473         mce_schedule_work();
474 }
475
476 static void mce_report_event(struct pt_regs *regs)
477 {
478         if (regs->flags & (X86_VM_MASK|X86_EFLAGS_IF)) {
479                 mce_notify_irq();
480                 /*
481                  * Triggering the work queue here is just an insurance
482                  * policy in case the syscall exit notify handler
483                  * doesn't run soon enough or ends up running on the
484                  * wrong CPU (can happen when audit sleeps)
485                  */
486                 mce_schedule_work();
487                 return;
488         }
489
490         irq_work_queue(&__get_cpu_var(mce_irq_work));
491 }
492
493 DEFINE_PER_CPU(unsigned, mce_poll_count);
494
495 /*
496  * Poll for corrected events or events that happened before reset.
497  * Those are just logged through /dev/mcelog.
498  *
499  * This is executed in standard interrupt context.
500  *
501  * Note: spec recommends to panic for fatal unsignalled
502  * errors here. However this would be quite problematic --
503  * we would need to reimplement the Monarch handling and
504  * it would mess up the exclusion between exception handler
505  * and poll hander -- * so we skip this for now.
506  * These cases should not happen anyways, or only when the CPU
507  * is already totally * confused. In this case it's likely it will
508  * not fully execute the machine check handler either.
509  */
510 void machine_check_poll(enum mcp_flags flags, mce_banks_t *b)
511 {
512         struct mce m;
513         int i;
514
515         percpu_inc(mce_poll_count);
516
517         mce_gather_info(&m, NULL);
518
519         for (i = 0; i < banks; i++) {
520                 if (!mce_banks[i].ctl || !test_bit(i, *b))
521                         continue;
522
523                 m.misc = 0;
524                 m.addr = 0;
525                 m.bank = i;
526                 m.tsc = 0;
527
528                 barrier();
529                 m.status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
530                 if (!(m.status & MCI_STATUS_VAL))
531                         continue;
532
533                 /*
534                  * Uncorrected or signalled events are handled by the exception
535                  * handler when it is enabled, so don't process those here.
536                  *
537                  * TBD do the same check for MCI_STATUS_EN here?
538                  */
539                 if (!(flags & MCP_UC) &&
540                     (m.status & (mce_ser ? MCI_STATUS_S : MCI_STATUS_UC)))
541                         continue;
542
543                 if (m.status & MCI_STATUS_MISCV)
544                         m.misc = mce_rdmsrl(MSR_IA32_MCx_MISC(i));
545                 if (m.status & MCI_STATUS_ADDRV)
546                         m.addr = mce_rdmsrl(MSR_IA32_MCx_ADDR(i));
547
548                 if (!(flags & MCP_TIMESTAMP))
549                         m.tsc = 0;
550                 /*
551                  * Don't get the IP here because it's unlikely to
552                  * have anything to do with the actual error location.
553                  */
554                 if (!(flags & MCP_DONTLOG) && !mce_dont_log_ce) {
555                         mce_log(&m);
556                         atomic_notifier_call_chain(&x86_mce_decoder_chain, 0, &m);
557                 }
558
559                 /*
560                  * Clear state for this bank.
561                  */
562                 mce_wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
563         }
564
565         /*
566          * Don't clear MCG_STATUS here because it's only defined for
567          * exceptions.
568          */
569
570         sync_core();
571 }
572 EXPORT_SYMBOL_GPL(machine_check_poll);
573
574 /*
575  * Do a quick check if any of the events requires a panic.
576  * This decides if we keep the events around or clear them.
577  */
578 static int mce_no_way_out(struct mce *m, char **msg)
579 {
580         int i;
581
582         for (i = 0; i < banks; i++) {
583                 m->status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
584                 if (mce_severity(m, tolerant, msg) >= MCE_PANIC_SEVERITY)
585                         return 1;
586         }
587         return 0;
588 }
589
590 /*
591  * Variable to establish order between CPUs while scanning.
592  * Each CPU spins initially until executing is equal its number.
593  */
594 static atomic_t mce_executing;
595
596 /*
597  * Defines order of CPUs on entry. First CPU becomes Monarch.
598  */
599 static atomic_t mce_callin;
600
601 /*
602  * Check if a timeout waiting for other CPUs happened.
603  */
604 static int mce_timed_out(u64 *t)
605 {
606         /*
607          * The others already did panic for some reason.
608          * Bail out like in a timeout.
609          * rmb() to tell the compiler that system_state
610          * might have been modified by someone else.
611          */
612         rmb();
613         if (atomic_read(&mce_paniced))
614                 wait_for_panic();
615         if (!monarch_timeout)
616                 goto out;
617         if ((s64)*t < SPINUNIT) {
618                 /* CHECKME: Make panic default for 1 too? */
619                 if (tolerant < 1)
620                         mce_panic("Timeout synchronizing machine check over CPUs",
621                                   NULL, NULL);
622                 cpu_missing = 1;
623                 return 1;
624         }
625         *t -= SPINUNIT;
626 out:
627         touch_nmi_watchdog();
628         return 0;
629 }
630
631 /*
632  * The Monarch's reign.  The Monarch is the CPU who entered
633  * the machine check handler first. It waits for the others to
634  * raise the exception too and then grades them. When any
635  * error is fatal panic. Only then let the others continue.
636  *
637  * The other CPUs entering the MCE handler will be controlled by the
638  * Monarch. They are called Subjects.
639  *
640  * This way we prevent any potential data corruption in a unrecoverable case
641  * and also makes sure always all CPU's errors are examined.
642  *
643  * Also this detects the case of a machine check event coming from outer
644  * space (not detected by any CPUs) In this case some external agent wants
645  * us to shut down, so panic too.
646  *
647  * The other CPUs might still decide to panic if the handler happens
648  * in a unrecoverable place, but in this case the system is in a semi-stable
649  * state and won't corrupt anything by itself. It's ok to let the others
650  * continue for a bit first.
651  *
652  * All the spin loops have timeouts; when a timeout happens a CPU
653  * typically elects itself to be Monarch.
654  */
655 static void mce_reign(void)
656 {
657         int cpu;
658         struct mce *m = NULL;
659         int global_worst = 0;
660         char *msg = NULL;
661         char *nmsg = NULL;
662
663         /*
664          * This CPU is the Monarch and the other CPUs have run
665          * through their handlers.
666          * Grade the severity of the errors of all the CPUs.
667          */
668         for_each_possible_cpu(cpu) {
669                 int severity = mce_severity(&per_cpu(mces_seen, cpu), tolerant,
670                                             &nmsg);
671                 if (severity > global_worst) {
672                         msg = nmsg;
673                         global_worst = severity;
674                         m = &per_cpu(mces_seen, cpu);
675                 }
676         }
677
678         /*
679          * Cannot recover? Panic here then.
680          * This dumps all the mces in the log buffer and stops the
681          * other CPUs.
682          */
683         if (m && global_worst >= MCE_PANIC_SEVERITY && tolerant < 3)
684                 mce_panic("Fatal Machine check", m, msg);
685
686         /*
687          * For UC somewhere we let the CPU who detects it handle it.
688          * Also must let continue the others, otherwise the handling
689          * CPU could deadlock on a lock.
690          */
691
692         /*
693          * No machine check event found. Must be some external
694          * source or one CPU is hung. Panic.
695          */
696         if (global_worst <= MCE_KEEP_SEVERITY && tolerant < 3)
697                 mce_panic("Machine check from unknown source", NULL, NULL);
698
699         /*
700          * Now clear all the mces_seen so that they don't reappear on
701          * the next mce.
702          */
703         for_each_possible_cpu(cpu)
704                 memset(&per_cpu(mces_seen, cpu), 0, sizeof(struct mce));
705 }
706
707 static atomic_t global_nwo;
708
709 /*
710  * Start of Monarch synchronization. This waits until all CPUs have
711  * entered the exception handler and then determines if any of them
712  * saw a fatal event that requires panic. Then it executes them
713  * in the entry order.
714  * TBD double check parallel CPU hotunplug
715  */
716 static int mce_start(int *no_way_out)
717 {
718         int order;
719         int cpus = num_online_cpus();
720         u64 timeout = (u64)monarch_timeout * NSEC_PER_USEC;
721
722         if (!timeout)
723                 return -1;
724
725         atomic_add(*no_way_out, &global_nwo);
726         /*
727          * global_nwo should be updated before mce_callin
728          */
729         smp_wmb();
730         order = atomic_inc_return(&mce_callin);
731
732         /*
733          * Wait for everyone.
734          */
735         while (atomic_read(&mce_callin) != cpus) {
736                 if (mce_timed_out(&timeout)) {
737                         atomic_set(&global_nwo, 0);
738                         return -1;
739                 }
740                 ndelay(SPINUNIT);
741         }
742
743         /*
744          * mce_callin should be read before global_nwo
745          */
746         smp_rmb();
747
748         if (order == 1) {
749                 /*
750                  * Monarch: Starts executing now, the others wait.
751                  */
752                 atomic_set(&mce_executing, 1);
753         } else {
754                 /*
755                  * Subject: Now start the scanning loop one by one in
756                  * the original callin order.
757                  * This way when there are any shared banks it will be
758                  * only seen by one CPU before cleared, avoiding duplicates.
759                  */
760                 while (atomic_read(&mce_executing) < order) {
761                         if (mce_timed_out(&timeout)) {
762                                 atomic_set(&global_nwo, 0);
763                                 return -1;
764                         }
765                         ndelay(SPINUNIT);
766                 }
767         }
768
769         /*
770          * Cache the global no_way_out state.
771          */
772         *no_way_out = atomic_read(&global_nwo);
773
774         return order;
775 }
776
777 /*
778  * Synchronize between CPUs after main scanning loop.
779  * This invokes the bulk of the Monarch processing.
780  */
781 static int mce_end(int order)
782 {
783         int ret = -1;
784         u64 timeout = (u64)monarch_timeout * NSEC_PER_USEC;
785
786         if (!timeout)
787                 goto reset;
788         if (order < 0)
789                 goto reset;
790
791         /*
792          * Allow others to run.
793          */
794         atomic_inc(&mce_executing);
795
796         if (order == 1) {
797                 /* CHECKME: Can this race with a parallel hotplug? */
798                 int cpus = num_online_cpus();
799
800                 /*
801                  * Monarch: Wait for everyone to go through their scanning
802                  * loops.
803                  */
804                 while (atomic_read(&mce_executing) <= cpus) {
805                         if (mce_timed_out(&timeout))
806                                 goto reset;
807                         ndelay(SPINUNIT);
808                 }
809
810                 mce_reign();
811                 barrier();
812                 ret = 0;
813         } else {
814                 /*
815                  * Subject: Wait for Monarch to finish.
816                  */
817                 while (atomic_read(&mce_executing) != 0) {
818                         if (mce_timed_out(&timeout))
819                                 goto reset;
820                         ndelay(SPINUNIT);
821                 }
822
823                 /*
824                  * Don't reset anything. That's done by the Monarch.
825                  */
826                 return 0;
827         }
828
829         /*
830          * Reset all global state.
831          */
832 reset:
833         atomic_set(&global_nwo, 0);
834         atomic_set(&mce_callin, 0);
835         barrier();
836
837         /*
838          * Let others run again.
839          */
840         atomic_set(&mce_executing, 0);
841         return ret;
842 }
843
844 /*
845  * Check if the address reported by the CPU is in a format we can parse.
846  * It would be possible to add code for most other cases, but all would
847  * be somewhat complicated (e.g. segment offset would require an instruction
848  * parser). So only support physical addresses up to page granuality for now.
849  */
850 static int mce_usable_address(struct mce *m)
851 {
852         if (!(m->status & MCI_STATUS_MISCV) || !(m->status & MCI_STATUS_ADDRV))
853                 return 0;
854         if (MCI_MISC_ADDR_LSB(m->misc) > PAGE_SHIFT)
855                 return 0;
856         if (MCI_MISC_ADDR_MODE(m->misc) != MCI_MISC_ADDR_PHYS)
857                 return 0;
858         return 1;
859 }
860
861 static void mce_clear_state(unsigned long *toclear)
862 {
863         int i;
864
865         for (i = 0; i < banks; i++) {
866                 if (test_bit(i, toclear))
867                         mce_wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
868         }
869 }
870
871 /*
872  * The actual machine check handler. This only handles real
873  * exceptions when something got corrupted coming in through int 18.
874  *
875  * This is executed in NMI context not subject to normal locking rules. This
876  * implies that most kernel services cannot be safely used. Don't even
877  * think about putting a printk in there!
878  *
879  * On Intel systems this is entered on all CPUs in parallel through
880  * MCE broadcast. However some CPUs might be broken beyond repair,
881  * so be always careful when synchronizing with others.
882  */
883 void do_machine_check(struct pt_regs *regs, long error_code)
884 {
885         struct mce m, *final;
886         int i;
887         int worst = 0;
888         int severity;
889         /*
890          * Establish sequential order between the CPUs entering the machine
891          * check handler.
892          */
893         int order;
894         /*
895          * If no_way_out gets set, there is no safe way to recover from this
896          * MCE.  If tolerant is cranked up, we'll try anyway.
897          */
898         int no_way_out = 0;
899         /*
900          * If kill_it gets set, there might be a way to recover from this
901          * error.
902          */
903         int kill_it = 0;
904         DECLARE_BITMAP(toclear, MAX_NR_BANKS);
905         char *msg = "Unknown";
906
907         atomic_inc(&mce_entry);
908
909         percpu_inc(mce_exception_count);
910
911         if (notify_die(DIE_NMI, "machine check", regs, error_code,
912                            18, SIGKILL) == NOTIFY_STOP)
913                 goto out;
914         if (!banks)
915                 goto out;
916
917         mce_gather_info(&m, regs);
918
919         final = &__get_cpu_var(mces_seen);
920         *final = m;
921
922         no_way_out = mce_no_way_out(&m, &msg);
923
924         barrier();
925
926         /*
927          * When no restart IP must always kill or panic.
928          */
929         if (!(m.mcgstatus & MCG_STATUS_RIPV))
930                 kill_it = 1;
931
932         /*
933          * Go through all the banks in exclusion of the other CPUs.
934          * This way we don't report duplicated events on shared banks
935          * because the first one to see it will clear it.
936          */
937         order = mce_start(&no_way_out);
938         for (i = 0; i < banks; i++) {
939                 __clear_bit(i, toclear);
940                 if (!mce_banks[i].ctl)
941                         continue;
942
943                 m.misc = 0;
944                 m.addr = 0;
945                 m.bank = i;
946
947                 m.status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
948                 if ((m.status & MCI_STATUS_VAL) == 0)
949                         continue;
950
951                 /*
952                  * Non uncorrected or non signaled errors are handled by
953                  * machine_check_poll. Leave them alone, unless this panics.
954                  */
955                 if (!(m.status & (mce_ser ? MCI_STATUS_S : MCI_STATUS_UC)) &&
956                         !no_way_out)
957                         continue;
958
959                 /*
960                  * Set taint even when machine check was not enabled.
961                  */
962                 add_taint(TAINT_MACHINE_CHECK);
963
964                 severity = mce_severity(&m, tolerant, NULL);
965
966                 /*
967                  * When machine check was for corrected handler don't touch,
968                  * unless we're panicing.
969                  */
970                 if (severity == MCE_KEEP_SEVERITY && !no_way_out)
971                         continue;
972                 __set_bit(i, toclear);
973                 if (severity == MCE_NO_SEVERITY) {
974                         /*
975                          * Machine check event was not enabled. Clear, but
976                          * ignore.
977                          */
978                         continue;
979                 }
980
981                 /*
982                  * Kill on action required.
983                  */
984                 if (severity == MCE_AR_SEVERITY)
985                         kill_it = 1;
986
987                 if (m.status & MCI_STATUS_MISCV)
988                         m.misc = mce_rdmsrl(MSR_IA32_MCx_MISC(i));
989                 if (m.status & MCI_STATUS_ADDRV)
990                         m.addr = mce_rdmsrl(MSR_IA32_MCx_ADDR(i));
991
992                 /*
993                  * Action optional error. Queue address for later processing.
994                  * When the ring overflows we just ignore the AO error.
995                  * RED-PEN add some logging mechanism when
996                  * usable_address or mce_add_ring fails.
997                  * RED-PEN don't ignore overflow for tolerant == 0
998                  */
999                 if (severity == MCE_AO_SEVERITY && mce_usable_address(&m))
1000                         mce_ring_add(m.addr >> PAGE_SHIFT);
1001
1002                 mce_log(&m);
1003
1004                 if (severity > worst) {
1005                         *final = m;
1006                         worst = severity;
1007                 }
1008         }
1009
1010         if (!no_way_out)
1011                 mce_clear_state(toclear);
1012
1013         /*
1014          * Do most of the synchronization with other CPUs.
1015          * When there's any problem use only local no_way_out state.
1016          */
1017         if (mce_end(order) < 0)
1018                 no_way_out = worst >= MCE_PANIC_SEVERITY;
1019
1020         /*
1021          * If we have decided that we just CAN'T continue, and the user
1022          * has not set tolerant to an insane level, give up and die.
1023          *
1024          * This is mainly used in the case when the system doesn't
1025          * support MCE broadcasting or it has been disabled.
1026          */
1027         if (no_way_out && tolerant < 3)
1028                 mce_panic("Fatal machine check on current CPU", final, msg);
1029
1030         /*
1031          * If the error seems to be unrecoverable, something should be
1032          * done.  Try to kill as little as possible.  If we can kill just
1033          * one task, do that.  If the user has set the tolerance very
1034          * high, don't try to do anything at all.
1035          */
1036
1037         if (kill_it && tolerant < 3)
1038                 force_sig(SIGBUS, current);
1039
1040         /* notify userspace ASAP */
1041         set_thread_flag(TIF_MCE_NOTIFY);
1042
1043         if (worst > 0)
1044                 mce_report_event(regs);
1045         mce_wrmsrl(MSR_IA32_MCG_STATUS, 0);
1046 out:
1047         atomic_dec(&mce_entry);
1048         sync_core();
1049 }
1050 EXPORT_SYMBOL_GPL(do_machine_check);
1051
1052 /* dummy to break dependency. actual code is in mm/memory-failure.c */
1053 void __attribute__((weak)) memory_failure(unsigned long pfn, int vector)
1054 {
1055         printk(KERN_ERR "Action optional memory failure at %lx ignored\n", pfn);
1056 }
1057
1058 /*
1059  * Called after mce notification in process context. This code
1060  * is allowed to sleep. Call the high level VM handler to process
1061  * any corrupted pages.
1062  * Assume that the work queue code only calls this one at a time
1063  * per CPU.
1064  * Note we don't disable preemption, so this code might run on the wrong
1065  * CPU. In this case the event is picked up by the scheduled work queue.
1066  * This is merely a fast path to expedite processing in some common
1067  * cases.
1068  */
1069 void mce_notify_process(void)
1070 {
1071         unsigned long pfn;
1072         mce_notify_irq();
1073         while (mce_ring_get(&pfn))
1074                 memory_failure(pfn, MCE_VECTOR);
1075 }
1076
1077 static void mce_process_work(struct work_struct *dummy)
1078 {
1079         mce_notify_process();
1080 }
1081
1082 #ifdef CONFIG_X86_MCE_INTEL
1083 /***
1084  * mce_log_therm_throt_event - Logs the thermal throttling event to mcelog
1085  * @cpu: The CPU on which the event occurred.
1086  * @status: Event status information
1087  *
1088  * This function should be called by the thermal interrupt after the
1089  * event has been processed and the decision was made to log the event
1090  * further.
1091  *
1092  * The status parameter will be saved to the 'status' field of 'struct mce'
1093  * and historically has been the register value of the
1094  * MSR_IA32_THERMAL_STATUS (Intel) msr.
1095  */
1096 void mce_log_therm_throt_event(__u64 status)
1097 {
1098         struct mce m;
1099
1100         mce_setup(&m);
1101         m.bank = MCE_THERMAL_BANK;
1102         m.status = status;
1103         mce_log(&m);
1104 }
1105 #endif /* CONFIG_X86_MCE_INTEL */
1106
1107 /*
1108  * Periodic polling timer for "silent" machine check errors.  If the
1109  * poller finds an MCE, poll 2x faster.  When the poller finds no more
1110  * errors, poll 2x slower (up to check_interval seconds).
1111  */
1112 static int check_interval = 5 * 60; /* 5 minutes */
1113
1114 static DEFINE_PER_CPU(int, mce_next_interval); /* in jiffies */
1115 static DEFINE_PER_CPU(struct timer_list, mce_timer);
1116
1117 static void mce_start_timer(unsigned long data)
1118 {
1119         struct timer_list *t = &per_cpu(mce_timer, data);
1120         int *n;
1121
1122         WARN_ON(smp_processor_id() != data);
1123
1124         if (mce_available(__this_cpu_ptr(&cpu_info))) {
1125                 machine_check_poll(MCP_TIMESTAMP,
1126                                 &__get_cpu_var(mce_poll_banks));
1127         }
1128
1129         /*
1130          * Alert userspace if needed.  If we logged an MCE, reduce the
1131          * polling interval, otherwise increase the polling interval.
1132          */
1133         n = &__get_cpu_var(mce_next_interval);
1134         if (mce_notify_irq())
1135                 *n = max(*n/2, HZ/100);
1136         else
1137                 *n = min(*n*2, (int)round_jiffies_relative(check_interval*HZ));
1138
1139         t->expires = jiffies + *n;
1140         add_timer_on(t, smp_processor_id());
1141 }
1142
1143 static void mce_do_trigger(struct work_struct *work)
1144 {
1145         call_usermodehelper(mce_helper, mce_helper_argv, NULL, UMH_NO_WAIT);
1146 }
1147
1148 static DECLARE_WORK(mce_trigger_work, mce_do_trigger);
1149
1150 /*
1151  * Notify the user(s) about new machine check events.
1152  * Can be called from interrupt context, but not from machine check/NMI
1153  * context.
1154  */
1155 int mce_notify_irq(void)
1156 {
1157         /* Not more than two messages every minute */
1158         static DEFINE_RATELIMIT_STATE(ratelimit, 60*HZ, 2);
1159
1160         clear_thread_flag(TIF_MCE_NOTIFY);
1161
1162         if (test_and_clear_bit(0, &mce_need_notify)) {
1163                 /* wake processes polling /dev/mcelog */
1164                 wake_up_interruptible(&mce_chrdev_wait);
1165
1166                 /*
1167                  * There is no risk of missing notifications because
1168                  * work_pending is always cleared before the function is
1169                  * executed.
1170                  */
1171                 if (mce_helper[0] && !work_pending(&mce_trigger_work))
1172                         schedule_work(&mce_trigger_work);
1173
1174                 if (__ratelimit(&ratelimit))
1175                         pr_info(HW_ERR "Machine check events logged\n");
1176
1177                 return 1;
1178         }
1179         return 0;
1180 }
1181 EXPORT_SYMBOL_GPL(mce_notify_irq);
1182
1183 static int __cpuinit __mcheck_cpu_mce_banks_init(void)
1184 {
1185         int i;
1186
1187         mce_banks = kzalloc(banks * sizeof(struct mce_bank), GFP_KERNEL);
1188         if (!mce_banks)
1189                 return -ENOMEM;
1190         for (i = 0; i < banks; i++) {
1191                 struct mce_bank *b = &mce_banks[i];
1192
1193                 b->ctl = -1ULL;
1194                 b->init = 1;
1195         }
1196         return 0;
1197 }
1198
1199 /*
1200  * Initialize Machine Checks for a CPU.
1201  */
1202 static int __cpuinit __mcheck_cpu_cap_init(void)
1203 {
1204         unsigned b;
1205         u64 cap;
1206
1207         rdmsrl(MSR_IA32_MCG_CAP, cap);
1208
1209         b = cap & MCG_BANKCNT_MASK;
1210         if (!banks)
1211                 printk(KERN_INFO "mce: CPU supports %d MCE banks\n", b);
1212
1213         if (b > MAX_NR_BANKS) {
1214                 printk(KERN_WARNING
1215                        "MCE: Using only %u machine check banks out of %u\n",
1216                         MAX_NR_BANKS, b);
1217                 b = MAX_NR_BANKS;
1218         }
1219
1220         /* Don't support asymmetric configurations today */
1221         WARN_ON(banks != 0 && b != banks);
1222         banks = b;
1223         if (!mce_banks) {
1224                 int err = __mcheck_cpu_mce_banks_init();
1225
1226                 if (err)
1227                         return err;
1228         }
1229
1230         /* Use accurate RIP reporting if available. */
1231         if ((cap & MCG_EXT_P) && MCG_EXT_CNT(cap) >= 9)
1232                 rip_msr = MSR_IA32_MCG_EIP;
1233
1234         if (cap & MCG_SER_P)
1235                 mce_ser = 1;
1236
1237         return 0;
1238 }
1239
1240 static void __mcheck_cpu_init_generic(void)
1241 {
1242         mce_banks_t all_banks;
1243         u64 cap;
1244         int i;
1245
1246         /*
1247          * Log the machine checks left over from the previous reset.
1248          */
1249         bitmap_fill(all_banks, MAX_NR_BANKS);
1250         machine_check_poll(MCP_UC|(!mce_bootlog ? MCP_DONTLOG : 0), &all_banks);
1251
1252         set_in_cr4(X86_CR4_MCE);
1253
1254         rdmsrl(MSR_IA32_MCG_CAP, cap);
1255         if (cap & MCG_CTL_P)
1256                 wrmsr(MSR_IA32_MCG_CTL, 0xffffffff, 0xffffffff);
1257
1258         for (i = 0; i < banks; i++) {
1259                 struct mce_bank *b = &mce_banks[i];
1260
1261                 if (!b->init)
1262                         continue;
1263                 wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl);
1264                 wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
1265         }
1266 }
1267
1268 /* Add per CPU specific workarounds here */
1269 static int __cpuinit __mcheck_cpu_apply_quirks(struct cpuinfo_x86 *c)
1270 {
1271         if (c->x86_vendor == X86_VENDOR_UNKNOWN) {
1272                 pr_info("MCE: unknown CPU type - not enabling MCE support.\n");
1273                 return -EOPNOTSUPP;
1274         }
1275
1276         /* This should be disabled by the BIOS, but isn't always */
1277         if (c->x86_vendor == X86_VENDOR_AMD) {
1278                 if (c->x86 == 15 && banks > 4) {
1279                         /*
1280                          * disable GART TBL walk error reporting, which
1281                          * trips off incorrectly with the IOMMU & 3ware
1282                          * & Cerberus:
1283                          */
1284                         clear_bit(10, (unsigned long *)&mce_banks[4].ctl);
1285                 }
1286                 if (c->x86 <= 17 && mce_bootlog < 0) {
1287                         /*
1288                          * Lots of broken BIOS around that don't clear them
1289                          * by default and leave crap in there. Don't log:
1290                          */
1291                         mce_bootlog = 0;
1292                 }
1293                 /*
1294                  * Various K7s with broken bank 0 around. Always disable
1295                  * by default.
1296                  */
1297                  if (c->x86 == 6 && banks > 0)
1298                         mce_banks[0].ctl = 0;
1299         }
1300
1301         if (c->x86_vendor == X86_VENDOR_INTEL) {
1302                 /*
1303                  * SDM documents that on family 6 bank 0 should not be written
1304                  * because it aliases to another special BIOS controlled
1305                  * register.
1306                  * But it's not aliased anymore on model 0x1a+
1307                  * Don't ignore bank 0 completely because there could be a
1308                  * valid event later, merely don't write CTL0.
1309                  */
1310
1311                 if (c->x86 == 6 && c->x86_model < 0x1A && banks > 0)
1312                         mce_banks[0].init = 0;
1313
1314                 /*
1315                  * All newer Intel systems support MCE broadcasting. Enable
1316                  * synchronization with a one second timeout.
1317                  */
1318                 if ((c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xe)) &&
1319                         monarch_timeout < 0)
1320                         monarch_timeout = USEC_PER_SEC;
1321
1322                 /*
1323                  * There are also broken BIOSes on some Pentium M and
1324                  * earlier systems:
1325                  */
1326                 if (c->x86 == 6 && c->x86_model <= 13 && mce_bootlog < 0)
1327                         mce_bootlog = 0;
1328         }
1329         if (monarch_timeout < 0)
1330                 monarch_timeout = 0;
1331         if (mce_bootlog != 0)
1332                 mce_panic_timeout = 30;
1333
1334         return 0;
1335 }
1336
1337 static int __cpuinit __mcheck_cpu_ancient_init(struct cpuinfo_x86 *c)
1338 {
1339         if (c->x86 != 5)
1340                 return 0;
1341
1342         switch (c->x86_vendor) {
1343         case X86_VENDOR_INTEL:
1344                 intel_p5_mcheck_init(c);
1345                 return 1;
1346                 break;
1347         case X86_VENDOR_CENTAUR:
1348                 winchip_mcheck_init(c);
1349                 return 1;
1350                 break;
1351         }
1352
1353         return 0;
1354 }
1355
1356 static void __mcheck_cpu_init_vendor(struct cpuinfo_x86 *c)
1357 {
1358         switch (c->x86_vendor) {
1359         case X86_VENDOR_INTEL:
1360                 mce_intel_feature_init(c);
1361                 break;
1362         case X86_VENDOR_AMD:
1363                 mce_amd_feature_init(c);
1364                 break;
1365         default:
1366                 break;
1367         }
1368 }
1369
1370 static void __mcheck_cpu_init_timer(void)
1371 {
1372         struct timer_list *t = &__get_cpu_var(mce_timer);
1373         int *n = &__get_cpu_var(mce_next_interval);
1374
1375         setup_timer(t, mce_start_timer, smp_processor_id());
1376
1377         if (mce_ignore_ce)
1378                 return;
1379
1380         *n = check_interval * HZ;
1381         if (!*n)
1382                 return;
1383         t->expires = round_jiffies(jiffies + *n);
1384         add_timer_on(t, smp_processor_id());
1385 }
1386
1387 /* Handle unconfigured int18 (should never happen) */
1388 static void unexpected_machine_check(struct pt_regs *regs, long error_code)
1389 {
1390         printk(KERN_ERR "CPU#%d: Unexpected int18 (Machine Check).\n",
1391                smp_processor_id());
1392 }
1393
1394 /* Call the installed machine check handler for this CPU setup. */
1395 void (*machine_check_vector)(struct pt_regs *, long error_code) =
1396                                                 unexpected_machine_check;
1397
1398 /*
1399  * Called for each booted CPU to set up machine checks.
1400  * Must be called with preempt off:
1401  */
1402 void __cpuinit mcheck_cpu_init(struct cpuinfo_x86 *c)
1403 {
1404         if (mce_disabled)
1405                 return;
1406
1407         if (__mcheck_cpu_ancient_init(c))
1408                 return;
1409
1410         if (!mce_available(c))
1411                 return;
1412
1413         if (__mcheck_cpu_cap_init() < 0 || __mcheck_cpu_apply_quirks(c) < 0) {
1414                 mce_disabled = 1;
1415                 return;
1416         }
1417
1418         machine_check_vector = do_machine_check;
1419
1420         __mcheck_cpu_init_generic();
1421         __mcheck_cpu_init_vendor(c);
1422         __mcheck_cpu_init_timer();
1423         INIT_WORK(&__get_cpu_var(mce_work), mce_process_work);
1424         init_irq_work(&__get_cpu_var(mce_irq_work), &mce_irq_work_cb);
1425 }
1426
1427 /*
1428  * mce_chrdev: Character device /dev/mcelog to read and clear the MCE log.
1429  */
1430
1431 static DEFINE_SPINLOCK(mce_chrdev_state_lock);
1432 static int mce_chrdev_open_count;       /* #times opened */
1433 static int mce_chrdev_open_exclu;       /* already open exclusive? */
1434
1435 static int mce_chrdev_open(struct inode *inode, struct file *file)
1436 {
1437         spin_lock(&mce_chrdev_state_lock);
1438
1439         if (mce_chrdev_open_exclu ||
1440             (mce_chrdev_open_count && (file->f_flags & O_EXCL))) {
1441                 spin_unlock(&mce_chrdev_state_lock);
1442
1443                 return -EBUSY;
1444         }
1445
1446         if (file->f_flags & O_EXCL)
1447                 mce_chrdev_open_exclu = 1;
1448         mce_chrdev_open_count++;
1449
1450         spin_unlock(&mce_chrdev_state_lock);
1451
1452         return nonseekable_open(inode, file);
1453 }
1454
1455 static int mce_chrdev_release(struct inode *inode, struct file *file)
1456 {
1457         spin_lock(&mce_chrdev_state_lock);
1458
1459         mce_chrdev_open_count--;
1460         mce_chrdev_open_exclu = 0;
1461
1462         spin_unlock(&mce_chrdev_state_lock);
1463
1464         return 0;
1465 }
1466
1467 static void collect_tscs(void *data)
1468 {
1469         unsigned long *cpu_tsc = (unsigned long *)data;
1470
1471         rdtscll(cpu_tsc[smp_processor_id()]);
1472 }
1473
1474 static int mce_apei_read_done;
1475
1476 /* Collect MCE record of previous boot in persistent storage via APEI ERST. */
1477 static int __mce_read_apei(char __user **ubuf, size_t usize)
1478 {
1479         int rc;
1480         u64 record_id;
1481         struct mce m;
1482
1483         if (usize < sizeof(struct mce))
1484                 return -EINVAL;
1485
1486         rc = apei_read_mce(&m, &record_id);
1487         /* Error or no more MCE record */
1488         if (rc <= 0) {
1489                 mce_apei_read_done = 1;
1490                 return rc;
1491         }
1492         rc = -EFAULT;
1493         if (copy_to_user(*ubuf, &m, sizeof(struct mce)))
1494                 return rc;
1495         /*
1496          * In fact, we should have cleared the record after that has
1497          * been flushed to the disk or sent to network in
1498          * /sbin/mcelog, but we have no interface to support that now,
1499          * so just clear it to avoid duplication.
1500          */
1501         rc = apei_clear_mce(record_id);
1502         if (rc) {
1503                 mce_apei_read_done = 1;
1504                 return rc;
1505         }
1506         *ubuf += sizeof(struct mce);
1507
1508         return 0;
1509 }
1510
1511 static ssize_t mce_chrdev_read(struct file *filp, char __user *ubuf,
1512                                 size_t usize, loff_t *off)
1513 {
1514         char __user *buf = ubuf;
1515         unsigned long *cpu_tsc;
1516         unsigned prev, next;
1517         int i, err;
1518
1519         cpu_tsc = kmalloc(nr_cpu_ids * sizeof(long), GFP_KERNEL);
1520         if (!cpu_tsc)
1521                 return -ENOMEM;
1522
1523         mutex_lock(&mce_chrdev_read_mutex);
1524
1525         if (!mce_apei_read_done) {
1526                 err = __mce_read_apei(&buf, usize);
1527                 if (err || buf != ubuf)
1528                         goto out;
1529         }
1530
1531         next = rcu_dereference_check_mce(mcelog.next);
1532
1533         /* Only supports full reads right now */
1534         err = -EINVAL;
1535         if (*off != 0 || usize < MCE_LOG_LEN*sizeof(struct mce))
1536                 goto out;
1537
1538         err = 0;
1539         prev = 0;
1540         do {
1541                 for (i = prev; i < next; i++) {
1542                         unsigned long start = jiffies;
1543                         struct mce *m = &mcelog.entry[i];
1544
1545                         while (!m->finished) {
1546                                 if (time_after_eq(jiffies, start + 2)) {
1547                                         memset(m, 0, sizeof(*m));
1548                                         goto timeout;
1549                                 }
1550                                 cpu_relax();
1551                         }
1552                         smp_rmb();
1553                         err |= copy_to_user(buf, m, sizeof(*m));
1554                         buf += sizeof(*m);
1555 timeout:
1556                         ;
1557                 }
1558
1559                 memset(mcelog.entry + prev, 0,
1560                        (next - prev) * sizeof(struct mce));
1561                 prev = next;
1562                 next = cmpxchg(&mcelog.next, prev, 0);
1563         } while (next != prev);
1564
1565         synchronize_sched();
1566
1567         /*
1568          * Collect entries that were still getting written before the
1569          * synchronize.
1570          */
1571         on_each_cpu(collect_tscs, cpu_tsc, 1);
1572
1573         for (i = next; i < MCE_LOG_LEN; i++) {
1574                 struct mce *m = &mcelog.entry[i];
1575
1576                 if (m->finished && m->tsc < cpu_tsc[m->cpu]) {
1577                         err |= copy_to_user(buf, m, sizeof(*m));
1578                         smp_rmb();
1579                         buf += sizeof(*m);
1580                         memset(m, 0, sizeof(*m));
1581                 }
1582         }
1583
1584         if (err)
1585                 err = -EFAULT;
1586
1587 out:
1588         mutex_unlock(&mce_chrdev_read_mutex);
1589         kfree(cpu_tsc);
1590
1591         return err ? err : buf - ubuf;
1592 }
1593
1594 static unsigned int mce_chrdev_poll(struct file *file, poll_table *wait)
1595 {
1596         poll_wait(file, &mce_chrdev_wait, wait);
1597         if (rcu_access_index(mcelog.next))
1598                 return POLLIN | POLLRDNORM;
1599         if (!mce_apei_read_done && apei_check_mce())
1600                 return POLLIN | POLLRDNORM;
1601         return 0;
1602 }
1603
1604 static long mce_chrdev_ioctl(struct file *f, unsigned int cmd,
1605                                 unsigned long arg)
1606 {
1607         int __user *p = (int __user *)arg;
1608
1609         if (!capable(CAP_SYS_ADMIN))
1610                 return -EPERM;
1611
1612         switch (cmd) {
1613         case MCE_GET_RECORD_LEN:
1614                 return put_user(sizeof(struct mce), p);
1615         case MCE_GET_LOG_LEN:
1616                 return put_user(MCE_LOG_LEN, p);
1617         case MCE_GETCLEAR_FLAGS: {
1618                 unsigned flags;
1619
1620                 do {
1621                         flags = mcelog.flags;
1622                 } while (cmpxchg(&mcelog.flags, flags, 0) != flags);
1623
1624                 return put_user(flags, p);
1625         }
1626         default:
1627                 return -ENOTTY;
1628         }
1629 }
1630
1631 /* Modified in mce-inject.c, so not static or const */
1632 struct file_operations mce_chrdev_ops = {
1633         .open                   = mce_chrdev_open,
1634         .release                = mce_chrdev_release,
1635         .read                   = mce_chrdev_read,
1636         .poll                   = mce_chrdev_poll,
1637         .unlocked_ioctl         = mce_chrdev_ioctl,
1638         .llseek                 = no_llseek,
1639 };
1640 EXPORT_SYMBOL_GPL(mce_chrdev_ops);
1641
1642 static struct miscdevice mce_chrdev_device = {
1643         MISC_MCELOG_MINOR,
1644         "mcelog",
1645         &mce_chrdev_ops,
1646 };
1647
1648 /*
1649  * mce=off Disables machine check
1650  * mce=no_cmci Disables CMCI
1651  * mce=dont_log_ce Clears corrected events silently, no log created for CEs.
1652  * mce=ignore_ce Disables polling and CMCI, corrected events are not cleared.
1653  * mce=TOLERANCELEVEL[,monarchtimeout] (number, see above)
1654  *      monarchtimeout is how long to wait for other CPUs on machine
1655  *      check, or 0 to not wait
1656  * mce=bootlog Log MCEs from before booting. Disabled by default on AMD.
1657  * mce=nobootlog Don't log MCEs from before booting.
1658  */
1659 static int __init mcheck_enable(char *str)
1660 {
1661         if (*str == 0) {
1662                 enable_p5_mce();
1663                 return 1;
1664         }
1665         if (*str == '=')
1666                 str++;
1667         if (!strcmp(str, "off"))
1668                 mce_disabled = 1;
1669         else if (!strcmp(str, "no_cmci"))
1670                 mce_cmci_disabled = 1;
1671         else if (!strcmp(str, "dont_log_ce"))
1672                 mce_dont_log_ce = 1;
1673         else if (!strcmp(str, "ignore_ce"))
1674                 mce_ignore_ce = 1;
1675         else if (!strcmp(str, "bootlog") || !strcmp(str, "nobootlog"))
1676                 mce_bootlog = (str[0] == 'b');
1677         else if (isdigit(str[0])) {
1678                 get_option(&str, &tolerant);
1679                 if (*str == ',') {
1680                         ++str;
1681                         get_option(&str, &monarch_timeout);
1682                 }
1683         } else {
1684                 printk(KERN_INFO "mce argument %s ignored. Please use /sys\n",
1685                        str);
1686                 return 0;
1687         }
1688         return 1;
1689 }
1690 __setup("mce", mcheck_enable);
1691
1692 int __init mcheck_init(void)
1693 {
1694         mcheck_intel_therm_init();
1695
1696         return 0;
1697 }
1698
1699 /*
1700  * mce_syscore: PM support
1701  */
1702
1703 /*
1704  * Disable machine checks on suspend and shutdown. We can't really handle
1705  * them later.
1706  */
1707 static int mce_disable_error_reporting(void)
1708 {
1709         int i;
1710
1711         for (i = 0; i < banks; i++) {
1712                 struct mce_bank *b = &mce_banks[i];
1713
1714                 if (b->init)
1715                         wrmsrl(MSR_IA32_MCx_CTL(i), 0);
1716         }
1717         return 0;
1718 }
1719
1720 static int mce_syscore_suspend(void)
1721 {
1722         return mce_disable_error_reporting();
1723 }
1724
1725 static void mce_syscore_shutdown(void)
1726 {
1727         mce_disable_error_reporting();
1728 }
1729
1730 /*
1731  * On resume clear all MCE state. Don't want to see leftovers from the BIOS.
1732  * Only one CPU is active at this time, the others get re-added later using
1733  * CPU hotplug:
1734  */
1735 static void mce_syscore_resume(void)
1736 {
1737         __mcheck_cpu_init_generic();
1738         __mcheck_cpu_init_vendor(__this_cpu_ptr(&cpu_info));
1739 }
1740
1741 static struct syscore_ops mce_syscore_ops = {
1742         .suspend        = mce_syscore_suspend,
1743         .shutdown       = mce_syscore_shutdown,
1744         .resume         = mce_syscore_resume,
1745 };
1746
1747 /*
1748  * mce_sysdev: Sysfs support
1749  */
1750
1751 static void mce_cpu_restart(void *data)
1752 {
1753         del_timer_sync(&__get_cpu_var(mce_timer));
1754         if (!mce_available(__this_cpu_ptr(&cpu_info)))
1755                 return;
1756         __mcheck_cpu_init_generic();
1757         __mcheck_cpu_init_timer();
1758 }
1759
1760 /* Reinit MCEs after user configuration changes */
1761 static void mce_restart(void)
1762 {
1763         on_each_cpu(mce_cpu_restart, NULL, 1);
1764 }
1765
1766 /* Toggle features for corrected errors */
1767 static void mce_disable_ce(void *all)
1768 {
1769         if (!mce_available(__this_cpu_ptr(&cpu_info)))
1770                 return;
1771         if (all)
1772                 del_timer_sync(&__get_cpu_var(mce_timer));
1773         cmci_clear();
1774 }
1775
1776 static void mce_enable_ce(void *all)
1777 {
1778         if (!mce_available(__this_cpu_ptr(&cpu_info)))
1779                 return;
1780         cmci_reenable();
1781         cmci_recheck();
1782         if (all)
1783                 __mcheck_cpu_init_timer();
1784 }
1785
1786 static struct sysdev_class mce_sysdev_class = {
1787         .name           = "machinecheck",
1788 };
1789
1790 DEFINE_PER_CPU(struct sys_device, mce_sysdev);
1791
1792 __cpuinitdata
1793 void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu);
1794
1795 static inline struct mce_bank *attr_to_bank(struct sysdev_attribute *attr)
1796 {
1797         return container_of(attr, struct mce_bank, attr);
1798 }
1799
1800 static ssize_t show_bank(struct sys_device *s, struct sysdev_attribute *attr,
1801                          char *buf)
1802 {
1803         return sprintf(buf, "%llx\n", attr_to_bank(attr)->ctl);
1804 }
1805
1806 static ssize_t set_bank(struct sys_device *s, struct sysdev_attribute *attr,
1807                         const char *buf, size_t size)
1808 {
1809         u64 new;
1810
1811         if (strict_strtoull(buf, 0, &new) < 0)
1812                 return -EINVAL;
1813
1814         attr_to_bank(attr)->ctl = new;
1815         mce_restart();
1816
1817         return size;
1818 }
1819
1820 static ssize_t
1821 show_trigger(struct sys_device *s, struct sysdev_attribute *attr, char *buf)
1822 {
1823         strcpy(buf, mce_helper);
1824         strcat(buf, "\n");
1825         return strlen(mce_helper) + 1;
1826 }
1827
1828 static ssize_t set_trigger(struct sys_device *s, struct sysdev_attribute *attr,
1829                                 const char *buf, size_t siz)
1830 {
1831         char *p;
1832
1833         strncpy(mce_helper, buf, sizeof(mce_helper));
1834         mce_helper[sizeof(mce_helper)-1] = 0;
1835         p = strchr(mce_helper, '\n');
1836
1837         if (p)
1838                 *p = 0;
1839
1840         return strlen(mce_helper) + !!p;
1841 }
1842
1843 static ssize_t set_ignore_ce(struct sys_device *s,
1844                              struct sysdev_attribute *attr,
1845                              const char *buf, size_t size)
1846 {
1847         u64 new;
1848
1849         if (strict_strtoull(buf, 0, &new) < 0)
1850                 return -EINVAL;
1851
1852         if (mce_ignore_ce ^ !!new) {
1853                 if (new) {
1854                         /* disable ce features */
1855                         on_each_cpu(mce_disable_ce, (void *)1, 1);
1856                         mce_ignore_ce = 1;
1857                 } else {
1858                         /* enable ce features */
1859                         mce_ignore_ce = 0;
1860                         on_each_cpu(mce_enable_ce, (void *)1, 1);
1861                 }
1862         }
1863         return size;
1864 }
1865
1866 static ssize_t set_cmci_disabled(struct sys_device *s,
1867                                  struct sysdev_attribute *attr,
1868                                  const char *buf, size_t size)
1869 {
1870         u64 new;
1871
1872         if (strict_strtoull(buf, 0, &new) < 0)
1873                 return -EINVAL;
1874
1875         if (mce_cmci_disabled ^ !!new) {
1876                 if (new) {
1877                         /* disable cmci */
1878                         on_each_cpu(mce_disable_ce, NULL, 1);
1879                         mce_cmci_disabled = 1;
1880                 } else {
1881                         /* enable cmci */
1882                         mce_cmci_disabled = 0;
1883                         on_each_cpu(mce_enable_ce, NULL, 1);
1884                 }
1885         }
1886         return size;
1887 }
1888
1889 static ssize_t store_int_with_restart(struct sys_device *s,
1890                                       struct sysdev_attribute *attr,
1891                                       const char *buf, size_t size)
1892 {
1893         ssize_t ret = sysdev_store_int(s, attr, buf, size);
1894         mce_restart();
1895         return ret;
1896 }
1897
1898 static SYSDEV_ATTR(trigger, 0644, show_trigger, set_trigger);
1899 static SYSDEV_INT_ATTR(tolerant, 0644, tolerant);
1900 static SYSDEV_INT_ATTR(monarch_timeout, 0644, monarch_timeout);
1901 static SYSDEV_INT_ATTR(dont_log_ce, 0644, mce_dont_log_ce);
1902
1903 static struct sysdev_ext_attribute attr_check_interval = {
1904         _SYSDEV_ATTR(check_interval, 0644, sysdev_show_int,
1905                      store_int_with_restart),
1906         &check_interval
1907 };
1908
1909 static struct sysdev_ext_attribute attr_ignore_ce = {
1910         _SYSDEV_ATTR(ignore_ce, 0644, sysdev_show_int, set_ignore_ce),
1911         &mce_ignore_ce
1912 };
1913
1914 static struct sysdev_ext_attribute attr_cmci_disabled = {
1915         _SYSDEV_ATTR(cmci_disabled, 0644, sysdev_show_int, set_cmci_disabled),
1916         &mce_cmci_disabled
1917 };
1918
1919 static struct sysdev_attribute *mce_sysdev_attrs[] = {
1920         &attr_tolerant.attr,
1921         &attr_check_interval.attr,
1922         &attr_trigger,
1923         &attr_monarch_timeout.attr,
1924         &attr_dont_log_ce.attr,
1925         &attr_ignore_ce.attr,
1926         &attr_cmci_disabled.attr,
1927         NULL
1928 };
1929
1930 static cpumask_var_t mce_sysdev_initialized;
1931
1932 /* Per cpu sysdev init. All of the cpus still share the same ctrl bank: */
1933 static __cpuinit int mce_sysdev_create(unsigned int cpu)
1934 {
1935         struct sys_device *sysdev = &per_cpu(mce_sysdev, cpu);
1936         int err;
1937         int i, j;
1938
1939         if (!mce_available(&boot_cpu_data))
1940                 return -EIO;
1941
1942         memset(&sysdev->kobj, 0, sizeof(struct kobject));
1943         sysdev->id  = cpu;
1944         sysdev->cls = &mce_sysdev_class;
1945
1946         err = sysdev_register(sysdev);
1947         if (err)
1948                 return err;
1949
1950         for (i = 0; mce_sysdev_attrs[i]; i++) {
1951                 err = sysdev_create_file(sysdev, mce_sysdev_attrs[i]);
1952                 if (err)
1953                         goto error;
1954         }
1955         for (j = 0; j < banks; j++) {
1956                 err = sysdev_create_file(sysdev, &mce_banks[j].attr);
1957                 if (err)
1958                         goto error2;
1959         }
1960         cpumask_set_cpu(cpu, mce_sysdev_initialized);
1961
1962         return 0;
1963 error2:
1964         while (--j >= 0)
1965                 sysdev_remove_file(sysdev, &mce_banks[j].attr);
1966 error:
1967         while (--i >= 0)
1968                 sysdev_remove_file(sysdev, mce_sysdev_attrs[i]);
1969
1970         sysdev_unregister(sysdev);
1971
1972         return err;
1973 }
1974
1975 static __cpuinit void mce_sysdev_remove(unsigned int cpu)
1976 {
1977         struct sys_device *sysdev = &per_cpu(mce_sysdev, cpu);
1978         int i;
1979
1980         if (!cpumask_test_cpu(cpu, mce_sysdev_initialized))
1981                 return;
1982
1983         for (i = 0; mce_sysdev_attrs[i]; i++)
1984                 sysdev_remove_file(sysdev, mce_sysdev_attrs[i]);
1985
1986         for (i = 0; i < banks; i++)
1987                 sysdev_remove_file(sysdev, &mce_banks[i].attr);
1988
1989         sysdev_unregister(sysdev);
1990         cpumask_clear_cpu(cpu, mce_sysdev_initialized);
1991 }
1992
1993 /* Make sure there are no machine checks on offlined CPUs. */
1994 static void __cpuinit mce_disable_cpu(void *h)
1995 {
1996         unsigned long action = *(unsigned long *)h;
1997         int i;
1998
1999         if (!mce_available(__this_cpu_ptr(&cpu_info)))
2000                 return;
2001
2002         if (!(action & CPU_TASKS_FROZEN))
2003                 cmci_clear();
2004         for (i = 0; i < banks; i++) {
2005                 struct mce_bank *b = &mce_banks[i];
2006
2007                 if (b->init)
2008                         wrmsrl(MSR_IA32_MCx_CTL(i), 0);
2009         }
2010 }
2011
2012 static void __cpuinit mce_reenable_cpu(void *h)
2013 {
2014         unsigned long action = *(unsigned long *)h;
2015         int i;
2016
2017         if (!mce_available(__this_cpu_ptr(&cpu_info)))
2018                 return;
2019
2020         if (!(action & CPU_TASKS_FROZEN))
2021                 cmci_reenable();
2022         for (i = 0; i < banks; i++) {
2023                 struct mce_bank *b = &mce_banks[i];
2024
2025                 if (b->init)
2026                         wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl);
2027         }
2028 }
2029
2030 /* Get notified when a cpu comes on/off. Be hotplug friendly. */
2031 static int __cpuinit
2032 mce_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu)
2033 {
2034         unsigned int cpu = (unsigned long)hcpu;
2035         struct timer_list *t = &per_cpu(mce_timer, cpu);
2036
2037         switch (action) {
2038         case CPU_ONLINE:
2039         case CPU_ONLINE_FROZEN:
2040                 mce_sysdev_create(cpu);
2041                 if (threshold_cpu_callback)
2042                         threshold_cpu_callback(action, cpu);
2043                 break;
2044         case CPU_DEAD:
2045         case CPU_DEAD_FROZEN:
2046                 if (threshold_cpu_callback)
2047                         threshold_cpu_callback(action, cpu);
2048                 mce_sysdev_remove(cpu);
2049                 break;
2050         case CPU_DOWN_PREPARE:
2051         case CPU_DOWN_PREPARE_FROZEN:
2052                 del_timer_sync(t);
2053                 smp_call_function_single(cpu, mce_disable_cpu, &action, 1);
2054                 break;
2055         case CPU_DOWN_FAILED:
2056         case CPU_DOWN_FAILED_FROZEN:
2057                 if (!mce_ignore_ce && check_interval) {
2058                         t->expires = round_jiffies(jiffies +
2059                                            __get_cpu_var(mce_next_interval));
2060                         add_timer_on(t, cpu);
2061                 }
2062                 smp_call_function_single(cpu, mce_reenable_cpu, &action, 1);
2063                 break;
2064         case CPU_POST_DEAD:
2065                 /* intentionally ignoring frozen here */
2066                 cmci_rediscover(cpu);
2067                 break;
2068         }
2069         return NOTIFY_OK;
2070 }
2071
2072 static struct notifier_block mce_cpu_notifier __cpuinitdata = {
2073         .notifier_call = mce_cpu_callback,
2074 };
2075
2076 static __init void mce_init_banks(void)
2077 {
2078         int i;
2079
2080         for (i = 0; i < banks; i++) {
2081                 struct mce_bank *b = &mce_banks[i];
2082                 struct sysdev_attribute *a = &b->attr;
2083
2084                 sysfs_attr_init(&a->attr);
2085                 a->attr.name    = b->attrname;
2086                 snprintf(b->attrname, ATTR_LEN, "bank%d", i);
2087
2088                 a->attr.mode    = 0644;
2089                 a->show         = show_bank;
2090                 a->store        = set_bank;
2091         }
2092 }
2093
2094 static __init int mcheck_init_device(void)
2095 {
2096         int err;
2097         int i = 0;
2098
2099         if (!mce_available(&boot_cpu_data))
2100                 return -EIO;
2101
2102         zalloc_cpumask_var(&mce_sysdev_initialized, GFP_KERNEL);
2103
2104         mce_init_banks();
2105
2106         err = sysdev_class_register(&mce_sysdev_class);
2107         if (err)
2108                 return err;
2109
2110         for_each_online_cpu(i) {
2111                 err = mce_sysdev_create(i);
2112                 if (err)
2113                         return err;
2114         }
2115
2116         register_syscore_ops(&mce_syscore_ops);
2117         register_hotcpu_notifier(&mce_cpu_notifier);
2118
2119         /* register character device /dev/mcelog */
2120         misc_register(&mce_chrdev_device);
2121
2122         return err;
2123 }
2124 device_initcall(mcheck_init_device);
2125
2126 /*
2127  * Old style boot options parsing. Only for compatibility.
2128  */
2129 static int __init mcheck_disable(char *str)
2130 {
2131         mce_disabled = 1;
2132         return 1;
2133 }
2134 __setup("nomce", mcheck_disable);
2135
2136 #ifdef CONFIG_DEBUG_FS
2137 struct dentry *mce_get_debugfs_dir(void)
2138 {
2139         static struct dentry *dmce;
2140
2141         if (!dmce)
2142                 dmce = debugfs_create_dir("mce", NULL);
2143
2144         return dmce;
2145 }
2146
2147 static void mce_reset(void)
2148 {
2149         cpu_missing = 0;
2150         atomic_set(&mce_fake_paniced, 0);
2151         atomic_set(&mce_executing, 0);
2152         atomic_set(&mce_callin, 0);
2153         atomic_set(&global_nwo, 0);
2154 }
2155
2156 static int fake_panic_get(void *data, u64 *val)
2157 {
2158         *val = fake_panic;
2159         return 0;
2160 }
2161
2162 static int fake_panic_set(void *data, u64 val)
2163 {
2164         mce_reset();
2165         fake_panic = val;
2166         return 0;
2167 }
2168
2169 DEFINE_SIMPLE_ATTRIBUTE(fake_panic_fops, fake_panic_get,
2170                         fake_panic_set, "%llu\n");
2171
2172 static int __init mcheck_debugfs_init(void)
2173 {
2174         struct dentry *dmce, *ffake_panic;
2175
2176         dmce = mce_get_debugfs_dir();
2177         if (!dmce)
2178                 return -ENOMEM;
2179         ffake_panic = debugfs_create_file("fake_panic", 0444, dmce, NULL,
2180                                           &fake_panic_fops);
2181         if (!ffake_panic)
2182                 return -ENOMEM;
2183
2184         return 0;
2185 }
2186 late_initcall(mcheck_debugfs_init);
2187 #endif