]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/x86/kernel/cpu/mcheck/mce.c
5b5cceec94c5e0966b231b7fb32dce8959fcdb54
[karo-tx-linux.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 /* Must not be called in IRQ context where del_timer_sync() can deadlock */
1144 static void mce_timer_delete_all(void)
1145 {
1146         int cpu;
1147
1148         for_each_online_cpu(cpu)
1149                 del_timer_sync(&per_cpu(mce_timer, cpu));
1150 }
1151
1152 static void mce_do_trigger(struct work_struct *work)
1153 {
1154         call_usermodehelper(mce_helper, mce_helper_argv, NULL, UMH_NO_WAIT);
1155 }
1156
1157 static DECLARE_WORK(mce_trigger_work, mce_do_trigger);
1158
1159 /*
1160  * Notify the user(s) about new machine check events.
1161  * Can be called from interrupt context, but not from machine check/NMI
1162  * context.
1163  */
1164 int mce_notify_irq(void)
1165 {
1166         /* Not more than two messages every minute */
1167         static DEFINE_RATELIMIT_STATE(ratelimit, 60*HZ, 2);
1168
1169         clear_thread_flag(TIF_MCE_NOTIFY);
1170
1171         if (test_and_clear_bit(0, &mce_need_notify)) {
1172                 /* wake processes polling /dev/mcelog */
1173                 wake_up_interruptible(&mce_chrdev_wait);
1174
1175                 /*
1176                  * There is no risk of missing notifications because
1177                  * work_pending is always cleared before the function is
1178                  * executed.
1179                  */
1180                 if (mce_helper[0] && !work_pending(&mce_trigger_work))
1181                         schedule_work(&mce_trigger_work);
1182
1183                 if (__ratelimit(&ratelimit))
1184                         pr_info(HW_ERR "Machine check events logged\n");
1185
1186                 return 1;
1187         }
1188         return 0;
1189 }
1190 EXPORT_SYMBOL_GPL(mce_notify_irq);
1191
1192 static int __cpuinit __mcheck_cpu_mce_banks_init(void)
1193 {
1194         int i;
1195
1196         mce_banks = kzalloc(banks * sizeof(struct mce_bank), GFP_KERNEL);
1197         if (!mce_banks)
1198                 return -ENOMEM;
1199         for (i = 0; i < banks; i++) {
1200                 struct mce_bank *b = &mce_banks[i];
1201
1202                 b->ctl = -1ULL;
1203                 b->init = 1;
1204         }
1205         return 0;
1206 }
1207
1208 /*
1209  * Initialize Machine Checks for a CPU.
1210  */
1211 static int __cpuinit __mcheck_cpu_cap_init(void)
1212 {
1213         unsigned b;
1214         u64 cap;
1215
1216         rdmsrl(MSR_IA32_MCG_CAP, cap);
1217
1218         b = cap & MCG_BANKCNT_MASK;
1219         if (!banks)
1220                 printk(KERN_INFO "mce: CPU supports %d MCE banks\n", b);
1221
1222         if (b > MAX_NR_BANKS) {
1223                 printk(KERN_WARNING
1224                        "MCE: Using only %u machine check banks out of %u\n",
1225                         MAX_NR_BANKS, b);
1226                 b = MAX_NR_BANKS;
1227         }
1228
1229         /* Don't support asymmetric configurations today */
1230         WARN_ON(banks != 0 && b != banks);
1231         banks = b;
1232         if (!mce_banks) {
1233                 int err = __mcheck_cpu_mce_banks_init();
1234
1235                 if (err)
1236                         return err;
1237         }
1238
1239         /* Use accurate RIP reporting if available. */
1240         if ((cap & MCG_EXT_P) && MCG_EXT_CNT(cap) >= 9)
1241                 rip_msr = MSR_IA32_MCG_EIP;
1242
1243         if (cap & MCG_SER_P)
1244                 mce_ser = 1;
1245
1246         return 0;
1247 }
1248
1249 static void __mcheck_cpu_init_generic(void)
1250 {
1251         mce_banks_t all_banks;
1252         u64 cap;
1253         int i;
1254
1255         /*
1256          * Log the machine checks left over from the previous reset.
1257          */
1258         bitmap_fill(all_banks, MAX_NR_BANKS);
1259         machine_check_poll(MCP_UC|(!mce_bootlog ? MCP_DONTLOG : 0), &all_banks);
1260
1261         set_in_cr4(X86_CR4_MCE);
1262
1263         rdmsrl(MSR_IA32_MCG_CAP, cap);
1264         if (cap & MCG_CTL_P)
1265                 wrmsr(MSR_IA32_MCG_CTL, 0xffffffff, 0xffffffff);
1266
1267         for (i = 0; i < banks; i++) {
1268                 struct mce_bank *b = &mce_banks[i];
1269
1270                 if (!b->init)
1271                         continue;
1272                 wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl);
1273                 wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
1274         }
1275 }
1276
1277 /* Add per CPU specific workarounds here */
1278 static int __cpuinit __mcheck_cpu_apply_quirks(struct cpuinfo_x86 *c)
1279 {
1280         if (c->x86_vendor == X86_VENDOR_UNKNOWN) {
1281                 pr_info("MCE: unknown CPU type - not enabling MCE support.\n");
1282                 return -EOPNOTSUPP;
1283         }
1284
1285         /* This should be disabled by the BIOS, but isn't always */
1286         if (c->x86_vendor == X86_VENDOR_AMD) {
1287                 if (c->x86 == 15 && banks > 4) {
1288                         /*
1289                          * disable GART TBL walk error reporting, which
1290                          * trips off incorrectly with the IOMMU & 3ware
1291                          * & Cerberus:
1292                          */
1293                         clear_bit(10, (unsigned long *)&mce_banks[4].ctl);
1294                 }
1295                 if (c->x86 <= 17 && mce_bootlog < 0) {
1296                         /*
1297                          * Lots of broken BIOS around that don't clear them
1298                          * by default and leave crap in there. Don't log:
1299                          */
1300                         mce_bootlog = 0;
1301                 }
1302                 /*
1303                  * Various K7s with broken bank 0 around. Always disable
1304                  * by default.
1305                  */
1306                  if (c->x86 == 6 && banks > 0)
1307                         mce_banks[0].ctl = 0;
1308         }
1309
1310         if (c->x86_vendor == X86_VENDOR_INTEL) {
1311                 /*
1312                  * SDM documents that on family 6 bank 0 should not be written
1313                  * because it aliases to another special BIOS controlled
1314                  * register.
1315                  * But it's not aliased anymore on model 0x1a+
1316                  * Don't ignore bank 0 completely because there could be a
1317                  * valid event later, merely don't write CTL0.
1318                  */
1319
1320                 if (c->x86 == 6 && c->x86_model < 0x1A && banks > 0)
1321                         mce_banks[0].init = 0;
1322
1323                 /*
1324                  * All newer Intel systems support MCE broadcasting. Enable
1325                  * synchronization with a one second timeout.
1326                  */
1327                 if ((c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xe)) &&
1328                         monarch_timeout < 0)
1329                         monarch_timeout = USEC_PER_SEC;
1330
1331                 /*
1332                  * There are also broken BIOSes on some Pentium M and
1333                  * earlier systems:
1334                  */
1335                 if (c->x86 == 6 && c->x86_model <= 13 && mce_bootlog < 0)
1336                         mce_bootlog = 0;
1337         }
1338         if (monarch_timeout < 0)
1339                 monarch_timeout = 0;
1340         if (mce_bootlog != 0)
1341                 mce_panic_timeout = 30;
1342
1343         return 0;
1344 }
1345
1346 static int __cpuinit __mcheck_cpu_ancient_init(struct cpuinfo_x86 *c)
1347 {
1348         if (c->x86 != 5)
1349                 return 0;
1350
1351         switch (c->x86_vendor) {
1352         case X86_VENDOR_INTEL:
1353                 intel_p5_mcheck_init(c);
1354                 return 1;
1355                 break;
1356         case X86_VENDOR_CENTAUR:
1357                 winchip_mcheck_init(c);
1358                 return 1;
1359                 break;
1360         }
1361
1362         return 0;
1363 }
1364
1365 static void __mcheck_cpu_init_vendor(struct cpuinfo_x86 *c)
1366 {
1367         switch (c->x86_vendor) {
1368         case X86_VENDOR_INTEL:
1369                 mce_intel_feature_init(c);
1370                 break;
1371         case X86_VENDOR_AMD:
1372                 mce_amd_feature_init(c);
1373                 break;
1374         default:
1375                 break;
1376         }
1377 }
1378
1379 static void __mcheck_cpu_init_timer(void)
1380 {
1381         struct timer_list *t = &__get_cpu_var(mce_timer);
1382         int *n = &__get_cpu_var(mce_next_interval);
1383
1384         setup_timer(t, mce_start_timer, smp_processor_id());
1385
1386         if (mce_ignore_ce)
1387                 return;
1388
1389         *n = check_interval * HZ;
1390         if (!*n)
1391                 return;
1392         t->expires = round_jiffies(jiffies + *n);
1393         add_timer_on(t, smp_processor_id());
1394 }
1395
1396 /* Handle unconfigured int18 (should never happen) */
1397 static void unexpected_machine_check(struct pt_regs *regs, long error_code)
1398 {
1399         printk(KERN_ERR "CPU#%d: Unexpected int18 (Machine Check).\n",
1400                smp_processor_id());
1401 }
1402
1403 /* Call the installed machine check handler for this CPU setup. */
1404 void (*machine_check_vector)(struct pt_regs *, long error_code) =
1405                                                 unexpected_machine_check;
1406
1407 /*
1408  * Called for each booted CPU to set up machine checks.
1409  * Must be called with preempt off:
1410  */
1411 void __cpuinit mcheck_cpu_init(struct cpuinfo_x86 *c)
1412 {
1413         if (mce_disabled)
1414                 return;
1415
1416         if (__mcheck_cpu_ancient_init(c))
1417                 return;
1418
1419         if (!mce_available(c))
1420                 return;
1421
1422         if (__mcheck_cpu_cap_init() < 0 || __mcheck_cpu_apply_quirks(c) < 0) {
1423                 mce_disabled = 1;
1424                 return;
1425         }
1426
1427         machine_check_vector = do_machine_check;
1428
1429         __mcheck_cpu_init_generic();
1430         __mcheck_cpu_init_vendor(c);
1431         __mcheck_cpu_init_timer();
1432         INIT_WORK(&__get_cpu_var(mce_work), mce_process_work);
1433         init_irq_work(&__get_cpu_var(mce_irq_work), &mce_irq_work_cb);
1434 }
1435
1436 /*
1437  * mce_chrdev: Character device /dev/mcelog to read and clear the MCE log.
1438  */
1439
1440 static DEFINE_SPINLOCK(mce_chrdev_state_lock);
1441 static int mce_chrdev_open_count;       /* #times opened */
1442 static int mce_chrdev_open_exclu;       /* already open exclusive? */
1443
1444 static int mce_chrdev_open(struct inode *inode, struct file *file)
1445 {
1446         spin_lock(&mce_chrdev_state_lock);
1447
1448         if (mce_chrdev_open_exclu ||
1449             (mce_chrdev_open_count && (file->f_flags & O_EXCL))) {
1450                 spin_unlock(&mce_chrdev_state_lock);
1451
1452                 return -EBUSY;
1453         }
1454
1455         if (file->f_flags & O_EXCL)
1456                 mce_chrdev_open_exclu = 1;
1457         mce_chrdev_open_count++;
1458
1459         spin_unlock(&mce_chrdev_state_lock);
1460
1461         return nonseekable_open(inode, file);
1462 }
1463
1464 static int mce_chrdev_release(struct inode *inode, struct file *file)
1465 {
1466         spin_lock(&mce_chrdev_state_lock);
1467
1468         mce_chrdev_open_count--;
1469         mce_chrdev_open_exclu = 0;
1470
1471         spin_unlock(&mce_chrdev_state_lock);
1472
1473         return 0;
1474 }
1475
1476 static void collect_tscs(void *data)
1477 {
1478         unsigned long *cpu_tsc = (unsigned long *)data;
1479
1480         rdtscll(cpu_tsc[smp_processor_id()]);
1481 }
1482
1483 static int mce_apei_read_done;
1484
1485 /* Collect MCE record of previous boot in persistent storage via APEI ERST. */
1486 static int __mce_read_apei(char __user **ubuf, size_t usize)
1487 {
1488         int rc;
1489         u64 record_id;
1490         struct mce m;
1491
1492         if (usize < sizeof(struct mce))
1493                 return -EINVAL;
1494
1495         rc = apei_read_mce(&m, &record_id);
1496         /* Error or no more MCE record */
1497         if (rc <= 0) {
1498                 mce_apei_read_done = 1;
1499                 return rc;
1500         }
1501         rc = -EFAULT;
1502         if (copy_to_user(*ubuf, &m, sizeof(struct mce)))
1503                 return rc;
1504         /*
1505          * In fact, we should have cleared the record after that has
1506          * been flushed to the disk or sent to network in
1507          * /sbin/mcelog, but we have no interface to support that now,
1508          * so just clear it to avoid duplication.
1509          */
1510         rc = apei_clear_mce(record_id);
1511         if (rc) {
1512                 mce_apei_read_done = 1;
1513                 return rc;
1514         }
1515         *ubuf += sizeof(struct mce);
1516
1517         return 0;
1518 }
1519
1520 static ssize_t mce_chrdev_read(struct file *filp, char __user *ubuf,
1521                                 size_t usize, loff_t *off)
1522 {
1523         char __user *buf = ubuf;
1524         unsigned long *cpu_tsc;
1525         unsigned prev, next;
1526         int i, err;
1527
1528         cpu_tsc = kmalloc(nr_cpu_ids * sizeof(long), GFP_KERNEL);
1529         if (!cpu_tsc)
1530                 return -ENOMEM;
1531
1532         mutex_lock(&mce_chrdev_read_mutex);
1533
1534         if (!mce_apei_read_done) {
1535                 err = __mce_read_apei(&buf, usize);
1536                 if (err || buf != ubuf)
1537                         goto out;
1538         }
1539
1540         next = rcu_dereference_check_mce(mcelog.next);
1541
1542         /* Only supports full reads right now */
1543         err = -EINVAL;
1544         if (*off != 0 || usize < MCE_LOG_LEN*sizeof(struct mce))
1545                 goto out;
1546
1547         err = 0;
1548         prev = 0;
1549         do {
1550                 for (i = prev; i < next; i++) {
1551                         unsigned long start = jiffies;
1552                         struct mce *m = &mcelog.entry[i];
1553
1554                         while (!m->finished) {
1555                                 if (time_after_eq(jiffies, start + 2)) {
1556                                         memset(m, 0, sizeof(*m));
1557                                         goto timeout;
1558                                 }
1559                                 cpu_relax();
1560                         }
1561                         smp_rmb();
1562                         err |= copy_to_user(buf, m, sizeof(*m));
1563                         buf += sizeof(*m);
1564 timeout:
1565                         ;
1566                 }
1567
1568                 memset(mcelog.entry + prev, 0,
1569                        (next - prev) * sizeof(struct mce));
1570                 prev = next;
1571                 next = cmpxchg(&mcelog.next, prev, 0);
1572         } while (next != prev);
1573
1574         synchronize_sched();
1575
1576         /*
1577          * Collect entries that were still getting written before the
1578          * synchronize.
1579          */
1580         on_each_cpu(collect_tscs, cpu_tsc, 1);
1581
1582         for (i = next; i < MCE_LOG_LEN; i++) {
1583                 struct mce *m = &mcelog.entry[i];
1584
1585                 if (m->finished && m->tsc < cpu_tsc[m->cpu]) {
1586                         err |= copy_to_user(buf, m, sizeof(*m));
1587                         smp_rmb();
1588                         buf += sizeof(*m);
1589                         memset(m, 0, sizeof(*m));
1590                 }
1591         }
1592
1593         if (err)
1594                 err = -EFAULT;
1595
1596 out:
1597         mutex_unlock(&mce_chrdev_read_mutex);
1598         kfree(cpu_tsc);
1599
1600         return err ? err : buf - ubuf;
1601 }
1602
1603 static unsigned int mce_chrdev_poll(struct file *file, poll_table *wait)
1604 {
1605         poll_wait(file, &mce_chrdev_wait, wait);
1606         if (rcu_access_index(mcelog.next))
1607                 return POLLIN | POLLRDNORM;
1608         if (!mce_apei_read_done && apei_check_mce())
1609                 return POLLIN | POLLRDNORM;
1610         return 0;
1611 }
1612
1613 static long mce_chrdev_ioctl(struct file *f, unsigned int cmd,
1614                                 unsigned long arg)
1615 {
1616         int __user *p = (int __user *)arg;
1617
1618         if (!capable(CAP_SYS_ADMIN))
1619                 return -EPERM;
1620
1621         switch (cmd) {
1622         case MCE_GET_RECORD_LEN:
1623                 return put_user(sizeof(struct mce), p);
1624         case MCE_GET_LOG_LEN:
1625                 return put_user(MCE_LOG_LEN, p);
1626         case MCE_GETCLEAR_FLAGS: {
1627                 unsigned flags;
1628
1629                 do {
1630                         flags = mcelog.flags;
1631                 } while (cmpxchg(&mcelog.flags, flags, 0) != flags);
1632
1633                 return put_user(flags, p);
1634         }
1635         default:
1636                 return -ENOTTY;
1637         }
1638 }
1639
1640 /* Modified in mce-inject.c, so not static or const */
1641 struct file_operations mce_chrdev_ops = {
1642         .open                   = mce_chrdev_open,
1643         .release                = mce_chrdev_release,
1644         .read                   = mce_chrdev_read,
1645         .poll                   = mce_chrdev_poll,
1646         .unlocked_ioctl         = mce_chrdev_ioctl,
1647         .llseek                 = no_llseek,
1648 };
1649 EXPORT_SYMBOL_GPL(mce_chrdev_ops);
1650
1651 static struct miscdevice mce_chrdev_device = {
1652         MISC_MCELOG_MINOR,
1653         "mcelog",
1654         &mce_chrdev_ops,
1655 };
1656
1657 /*
1658  * mce=off Disables machine check
1659  * mce=no_cmci Disables CMCI
1660  * mce=dont_log_ce Clears corrected events silently, no log created for CEs.
1661  * mce=ignore_ce Disables polling and CMCI, corrected events are not cleared.
1662  * mce=TOLERANCELEVEL[,monarchtimeout] (number, see above)
1663  *      monarchtimeout is how long to wait for other CPUs on machine
1664  *      check, or 0 to not wait
1665  * mce=bootlog Log MCEs from before booting. Disabled by default on AMD.
1666  * mce=nobootlog Don't log MCEs from before booting.
1667  */
1668 static int __init mcheck_enable(char *str)
1669 {
1670         if (*str == 0) {
1671                 enable_p5_mce();
1672                 return 1;
1673         }
1674         if (*str == '=')
1675                 str++;
1676         if (!strcmp(str, "off"))
1677                 mce_disabled = 1;
1678         else if (!strcmp(str, "no_cmci"))
1679                 mce_cmci_disabled = 1;
1680         else if (!strcmp(str, "dont_log_ce"))
1681                 mce_dont_log_ce = 1;
1682         else if (!strcmp(str, "ignore_ce"))
1683                 mce_ignore_ce = 1;
1684         else if (!strcmp(str, "bootlog") || !strcmp(str, "nobootlog"))
1685                 mce_bootlog = (str[0] == 'b');
1686         else if (isdigit(str[0])) {
1687                 get_option(&str, &tolerant);
1688                 if (*str == ',') {
1689                         ++str;
1690                         get_option(&str, &monarch_timeout);
1691                 }
1692         } else {
1693                 printk(KERN_INFO "mce argument %s ignored. Please use /sys\n",
1694                        str);
1695                 return 0;
1696         }
1697         return 1;
1698 }
1699 __setup("mce", mcheck_enable);
1700
1701 int __init mcheck_init(void)
1702 {
1703         mcheck_intel_therm_init();
1704
1705         return 0;
1706 }
1707
1708 /*
1709  * mce_syscore: PM support
1710  */
1711
1712 /*
1713  * Disable machine checks on suspend and shutdown. We can't really handle
1714  * them later.
1715  */
1716 static int mce_disable_error_reporting(void)
1717 {
1718         int i;
1719
1720         for (i = 0; i < banks; i++) {
1721                 struct mce_bank *b = &mce_banks[i];
1722
1723                 if (b->init)
1724                         wrmsrl(MSR_IA32_MCx_CTL(i), 0);
1725         }
1726         return 0;
1727 }
1728
1729 static int mce_syscore_suspend(void)
1730 {
1731         return mce_disable_error_reporting();
1732 }
1733
1734 static void mce_syscore_shutdown(void)
1735 {
1736         mce_disable_error_reporting();
1737 }
1738
1739 /*
1740  * On resume clear all MCE state. Don't want to see leftovers from the BIOS.
1741  * Only one CPU is active at this time, the others get re-added later using
1742  * CPU hotplug:
1743  */
1744 static void mce_syscore_resume(void)
1745 {
1746         __mcheck_cpu_init_generic();
1747         __mcheck_cpu_init_vendor(__this_cpu_ptr(&cpu_info));
1748 }
1749
1750 static struct syscore_ops mce_syscore_ops = {
1751         .suspend        = mce_syscore_suspend,
1752         .shutdown       = mce_syscore_shutdown,
1753         .resume         = mce_syscore_resume,
1754 };
1755
1756 /*
1757  * mce_sysdev: Sysfs support
1758  */
1759
1760 static void mce_cpu_restart(void *data)
1761 {
1762         if (!mce_available(__this_cpu_ptr(&cpu_info)))
1763                 return;
1764         __mcheck_cpu_init_generic();
1765         __mcheck_cpu_init_timer();
1766 }
1767
1768 /* Reinit MCEs after user configuration changes */
1769 static void mce_restart(void)
1770 {
1771         mce_timer_delete_all();
1772         on_each_cpu(mce_cpu_restart, NULL, 1);
1773 }
1774
1775 /* Toggle features for corrected errors */
1776 static void mce_disable_cmci(void *data)
1777 {
1778         if (!mce_available(__this_cpu_ptr(&cpu_info)))
1779                 return;
1780         cmci_clear();
1781 }
1782
1783 static void mce_enable_ce(void *all)
1784 {
1785         if (!mce_available(__this_cpu_ptr(&cpu_info)))
1786                 return;
1787         cmci_reenable();
1788         cmci_recheck();
1789         if (all)
1790                 __mcheck_cpu_init_timer();
1791 }
1792
1793 static struct sysdev_class mce_sysdev_class = {
1794         .name           = "machinecheck",
1795 };
1796
1797 DEFINE_PER_CPU(struct sys_device, mce_sysdev);
1798
1799 __cpuinitdata
1800 void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu);
1801
1802 static inline struct mce_bank *attr_to_bank(struct sysdev_attribute *attr)
1803 {
1804         return container_of(attr, struct mce_bank, attr);
1805 }
1806
1807 static ssize_t show_bank(struct sys_device *s, struct sysdev_attribute *attr,
1808                          char *buf)
1809 {
1810         return sprintf(buf, "%llx\n", attr_to_bank(attr)->ctl);
1811 }
1812
1813 static ssize_t set_bank(struct sys_device *s, struct sysdev_attribute *attr,
1814                         const char *buf, size_t size)
1815 {
1816         u64 new;
1817
1818         if (strict_strtoull(buf, 0, &new) < 0)
1819                 return -EINVAL;
1820
1821         attr_to_bank(attr)->ctl = new;
1822         mce_restart();
1823
1824         return size;
1825 }
1826
1827 static ssize_t
1828 show_trigger(struct sys_device *s, struct sysdev_attribute *attr, char *buf)
1829 {
1830         strcpy(buf, mce_helper);
1831         strcat(buf, "\n");
1832         return strlen(mce_helper) + 1;
1833 }
1834
1835 static ssize_t set_trigger(struct sys_device *s, struct sysdev_attribute *attr,
1836                                 const char *buf, size_t siz)
1837 {
1838         char *p;
1839
1840         strncpy(mce_helper, buf, sizeof(mce_helper));
1841         mce_helper[sizeof(mce_helper)-1] = 0;
1842         p = strchr(mce_helper, '\n');
1843
1844         if (p)
1845                 *p = 0;
1846
1847         return strlen(mce_helper) + !!p;
1848 }
1849
1850 static ssize_t set_ignore_ce(struct sys_device *s,
1851                              struct sysdev_attribute *attr,
1852                              const char *buf, size_t size)
1853 {
1854         u64 new;
1855
1856         if (strict_strtoull(buf, 0, &new) < 0)
1857                 return -EINVAL;
1858
1859         if (mce_ignore_ce ^ !!new) {
1860                 if (new) {
1861                         /* disable ce features */
1862                         mce_timer_delete_all();
1863                         on_each_cpu(mce_disable_cmci, NULL, 1);
1864                         mce_ignore_ce = 1;
1865                 } else {
1866                         /* enable ce features */
1867                         mce_ignore_ce = 0;
1868                         on_each_cpu(mce_enable_ce, (void *)1, 1);
1869                 }
1870         }
1871         return size;
1872 }
1873
1874 static ssize_t set_cmci_disabled(struct sys_device *s,
1875                                  struct sysdev_attribute *attr,
1876                                  const char *buf, size_t size)
1877 {
1878         u64 new;
1879
1880         if (strict_strtoull(buf, 0, &new) < 0)
1881                 return -EINVAL;
1882
1883         if (mce_cmci_disabled ^ !!new) {
1884                 if (new) {
1885                         /* disable cmci */
1886                         on_each_cpu(mce_disable_cmci, NULL, 1);
1887                         mce_cmci_disabled = 1;
1888                 } else {
1889                         /* enable cmci */
1890                         mce_cmci_disabled = 0;
1891                         on_each_cpu(mce_enable_ce, NULL, 1);
1892                 }
1893         }
1894         return size;
1895 }
1896
1897 static ssize_t store_int_with_restart(struct sys_device *s,
1898                                       struct sysdev_attribute *attr,
1899                                       const char *buf, size_t size)
1900 {
1901         ssize_t ret = sysdev_store_int(s, attr, buf, size);
1902         mce_restart();
1903         return ret;
1904 }
1905
1906 static SYSDEV_ATTR(trigger, 0644, show_trigger, set_trigger);
1907 static SYSDEV_INT_ATTR(tolerant, 0644, tolerant);
1908 static SYSDEV_INT_ATTR(monarch_timeout, 0644, monarch_timeout);
1909 static SYSDEV_INT_ATTR(dont_log_ce, 0644, mce_dont_log_ce);
1910
1911 static struct sysdev_ext_attribute attr_check_interval = {
1912         _SYSDEV_ATTR(check_interval, 0644, sysdev_show_int,
1913                      store_int_with_restart),
1914         &check_interval
1915 };
1916
1917 static struct sysdev_ext_attribute attr_ignore_ce = {
1918         _SYSDEV_ATTR(ignore_ce, 0644, sysdev_show_int, set_ignore_ce),
1919         &mce_ignore_ce
1920 };
1921
1922 static struct sysdev_ext_attribute attr_cmci_disabled = {
1923         _SYSDEV_ATTR(cmci_disabled, 0644, sysdev_show_int, set_cmci_disabled),
1924         &mce_cmci_disabled
1925 };
1926
1927 static struct sysdev_attribute *mce_sysdev_attrs[] = {
1928         &attr_tolerant.attr,
1929         &attr_check_interval.attr,
1930         &attr_trigger,
1931         &attr_monarch_timeout.attr,
1932         &attr_dont_log_ce.attr,
1933         &attr_ignore_ce.attr,
1934         &attr_cmci_disabled.attr,
1935         NULL
1936 };
1937
1938 static cpumask_var_t mce_sysdev_initialized;
1939
1940 /* Per cpu sysdev init. All of the cpus still share the same ctrl bank: */
1941 static __cpuinit int mce_sysdev_create(unsigned int cpu)
1942 {
1943         struct sys_device *sysdev = &per_cpu(mce_sysdev, cpu);
1944         int err;
1945         int i, j;
1946
1947         if (!mce_available(&boot_cpu_data))
1948                 return -EIO;
1949
1950         memset(&sysdev->kobj, 0, sizeof(struct kobject));
1951         sysdev->id  = cpu;
1952         sysdev->cls = &mce_sysdev_class;
1953
1954         err = sysdev_register(sysdev);
1955         if (err)
1956                 return err;
1957
1958         for (i = 0; mce_sysdev_attrs[i]; i++) {
1959                 err = sysdev_create_file(sysdev, mce_sysdev_attrs[i]);
1960                 if (err)
1961                         goto error;
1962         }
1963         for (j = 0; j < banks; j++) {
1964                 err = sysdev_create_file(sysdev, &mce_banks[j].attr);
1965                 if (err)
1966                         goto error2;
1967         }
1968         cpumask_set_cpu(cpu, mce_sysdev_initialized);
1969
1970         return 0;
1971 error2:
1972         while (--j >= 0)
1973                 sysdev_remove_file(sysdev, &mce_banks[j].attr);
1974 error:
1975         while (--i >= 0)
1976                 sysdev_remove_file(sysdev, mce_sysdev_attrs[i]);
1977
1978         sysdev_unregister(sysdev);
1979
1980         return err;
1981 }
1982
1983 static __cpuinit void mce_sysdev_remove(unsigned int cpu)
1984 {
1985         struct sys_device *sysdev = &per_cpu(mce_sysdev, cpu);
1986         int i;
1987
1988         if (!cpumask_test_cpu(cpu, mce_sysdev_initialized))
1989                 return;
1990
1991         for (i = 0; mce_sysdev_attrs[i]; i++)
1992                 sysdev_remove_file(sysdev, mce_sysdev_attrs[i]);
1993
1994         for (i = 0; i < banks; i++)
1995                 sysdev_remove_file(sysdev, &mce_banks[i].attr);
1996
1997         sysdev_unregister(sysdev);
1998         cpumask_clear_cpu(cpu, mce_sysdev_initialized);
1999 }
2000
2001 /* Make sure there are no machine checks on offlined CPUs. */
2002 static void __cpuinit mce_disable_cpu(void *h)
2003 {
2004         unsigned long action = *(unsigned long *)h;
2005         int i;
2006
2007         if (!mce_available(__this_cpu_ptr(&cpu_info)))
2008                 return;
2009
2010         if (!(action & CPU_TASKS_FROZEN))
2011                 cmci_clear();
2012         for (i = 0; i < banks; i++) {
2013                 struct mce_bank *b = &mce_banks[i];
2014
2015                 if (b->init)
2016                         wrmsrl(MSR_IA32_MCx_CTL(i), 0);
2017         }
2018 }
2019
2020 static void __cpuinit mce_reenable_cpu(void *h)
2021 {
2022         unsigned long action = *(unsigned long *)h;
2023         int i;
2024
2025         if (!mce_available(__this_cpu_ptr(&cpu_info)))
2026                 return;
2027
2028         if (!(action & CPU_TASKS_FROZEN))
2029                 cmci_reenable();
2030         for (i = 0; i < banks; i++) {
2031                 struct mce_bank *b = &mce_banks[i];
2032
2033                 if (b->init)
2034                         wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl);
2035         }
2036 }
2037
2038 /* Get notified when a cpu comes on/off. Be hotplug friendly. */
2039 static int __cpuinit
2040 mce_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu)
2041 {
2042         unsigned int cpu = (unsigned long)hcpu;
2043         struct timer_list *t = &per_cpu(mce_timer, cpu);
2044
2045         switch (action) {
2046         case CPU_ONLINE:
2047         case CPU_ONLINE_FROZEN:
2048                 mce_sysdev_create(cpu);
2049                 if (threshold_cpu_callback)
2050                         threshold_cpu_callback(action, cpu);
2051                 break;
2052         case CPU_DEAD:
2053         case CPU_DEAD_FROZEN:
2054                 if (threshold_cpu_callback)
2055                         threshold_cpu_callback(action, cpu);
2056                 mce_sysdev_remove(cpu);
2057                 break;
2058         case CPU_DOWN_PREPARE:
2059         case CPU_DOWN_PREPARE_FROZEN:
2060                 del_timer_sync(t);
2061                 smp_call_function_single(cpu, mce_disable_cpu, &action, 1);
2062                 break;
2063         case CPU_DOWN_FAILED:
2064         case CPU_DOWN_FAILED_FROZEN:
2065                 if (!mce_ignore_ce && check_interval) {
2066                         t->expires = round_jiffies(jiffies +
2067                                            __get_cpu_var(mce_next_interval));
2068                         add_timer_on(t, cpu);
2069                 }
2070                 smp_call_function_single(cpu, mce_reenable_cpu, &action, 1);
2071                 break;
2072         case CPU_POST_DEAD:
2073                 /* intentionally ignoring frozen here */
2074                 cmci_rediscover(cpu);
2075                 break;
2076         }
2077         return NOTIFY_OK;
2078 }
2079
2080 static struct notifier_block mce_cpu_notifier __cpuinitdata = {
2081         .notifier_call = mce_cpu_callback,
2082 };
2083
2084 static __init void mce_init_banks(void)
2085 {
2086         int i;
2087
2088         for (i = 0; i < banks; i++) {
2089                 struct mce_bank *b = &mce_banks[i];
2090                 struct sysdev_attribute *a = &b->attr;
2091
2092                 sysfs_attr_init(&a->attr);
2093                 a->attr.name    = b->attrname;
2094                 snprintf(b->attrname, ATTR_LEN, "bank%d", i);
2095
2096                 a->attr.mode    = 0644;
2097                 a->show         = show_bank;
2098                 a->store        = set_bank;
2099         }
2100 }
2101
2102 static __init int mcheck_init_device(void)
2103 {
2104         int err;
2105         int i = 0;
2106
2107         if (!mce_available(&boot_cpu_data))
2108                 return -EIO;
2109
2110         zalloc_cpumask_var(&mce_sysdev_initialized, GFP_KERNEL);
2111
2112         mce_init_banks();
2113
2114         err = sysdev_class_register(&mce_sysdev_class);
2115         if (err)
2116                 return err;
2117
2118         for_each_online_cpu(i) {
2119                 err = mce_sysdev_create(i);
2120                 if (err)
2121                         return err;
2122         }
2123
2124         register_syscore_ops(&mce_syscore_ops);
2125         register_hotcpu_notifier(&mce_cpu_notifier);
2126
2127         /* register character device /dev/mcelog */
2128         misc_register(&mce_chrdev_device);
2129
2130         return err;
2131 }
2132 device_initcall(mcheck_init_device);
2133
2134 /*
2135  * Old style boot options parsing. Only for compatibility.
2136  */
2137 static int __init mcheck_disable(char *str)
2138 {
2139         mce_disabled = 1;
2140         return 1;
2141 }
2142 __setup("nomce", mcheck_disable);
2143
2144 #ifdef CONFIG_DEBUG_FS
2145 struct dentry *mce_get_debugfs_dir(void)
2146 {
2147         static struct dentry *dmce;
2148
2149         if (!dmce)
2150                 dmce = debugfs_create_dir("mce", NULL);
2151
2152         return dmce;
2153 }
2154
2155 static void mce_reset(void)
2156 {
2157         cpu_missing = 0;
2158         atomic_set(&mce_fake_paniced, 0);
2159         atomic_set(&mce_executing, 0);
2160         atomic_set(&mce_callin, 0);
2161         atomic_set(&global_nwo, 0);
2162 }
2163
2164 static int fake_panic_get(void *data, u64 *val)
2165 {
2166         *val = fake_panic;
2167         return 0;
2168 }
2169
2170 static int fake_panic_set(void *data, u64 val)
2171 {
2172         mce_reset();
2173         fake_panic = val;
2174         return 0;
2175 }
2176
2177 DEFINE_SIMPLE_ATTRIBUTE(fake_panic_fops, fake_panic_get,
2178                         fake_panic_set, "%llu\n");
2179
2180 static int __init mcheck_debugfs_init(void)
2181 {
2182         struct dentry *dmce, *ffake_panic;
2183
2184         dmce = mce_get_debugfs_dir();
2185         if (!dmce)
2186                 return -ENOMEM;
2187         ffake_panic = debugfs_create_file("fake_panic", 0444, dmce, NULL,
2188                                           &fake_panic_fops);
2189         if (!ffake_panic)
2190                 return -ENOMEM;
2191
2192         return 0;
2193 }
2194 late_initcall(mcheck_debugfs_init);
2195 #endif