// SPDX-License-Identifier: GPL-2.0 /* * IDT Winchip specific Machine Check Exception Reporting * (C) Copyright 2002 Alan Cox <alan@lxorguk.ukuu.org.uk> */ #include <linux/interrupt.h> #include <linux/kernel.h> #include <linux/types.h> #include <asm/processor.h> #include <asm/traps.h> #include <asm/tlbflush.h> #include <asm/mce.h> #include <asm/msr.h> /* Machine check handler for WinChip C6: */
static void winchip_machine_check(struct pt_regs *regs, long error_code) { ist_enter(regs); pr_emerg("CPU0: Machine Check Exception.\n"); add_taint(TAINT_MACHINE_CHECK, LOCKDEP_NOW_UNRELIABLE); ist_exit(regs); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dave Jones | 18 | 50.00% | 1 | 16.67% |
Andrew Lutomirski | 10 | 27.78% | 2 | 33.33% |
Andi Kleen | 5 | 13.89% | 1 | 16.67% |
Rusty Russell | 2 | 5.56% | 1 | 16.67% |
Chen Yucong | 1 | 2.78% | 1 | 16.67% |
Total | 36 | 100.00% | 6 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Dave Jones | 67 | 95.71% | 1 | 25.00% |
Andrew Lutomirski | 1 | 1.43% | 1 | 25.00% |
Ingo Molnar | 1 | 1.43% | 1 | 25.00% |
Chen Yucong | 1 | 1.43% | 1 | 25.00% |
Total | 70 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Dave Jones | 99 | 73.88% | 1 | 9.09% |
Andrew Lutomirski | 17 | 12.69% | 3 | 27.27% |
Andi Kleen | 5 | 3.73% | 1 | 9.09% |
Ingo Molnar | 5 | 3.73% | 1 | 9.09% |
Chen Yucong | 2 | 1.49% | 1 | 9.09% |
Rusty Russell | 2 | 1.49% | 1 | 9.09% |
Hidetoshi Seto | 2 | 1.49% | 1 | 9.09% |
Alan Cox | 1 | 0.75% | 1 | 9.09% |
Greg Kroah-Hartman | 1 | 0.75% | 1 | 9.09% |
Total | 134 | 100.00% | 11 | 100.00% |