mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-18 15:44:02 +08:00
EDAC, MCE: Allow F15h bank 6 MCE injection
F15h adds a sixth MCE bank: adjust bank number check in the injection code. Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
This commit is contained in:
parent
fa7ae8cc8c
commit
1b07ca47ff
@ -88,10 +88,11 @@ static ssize_t edac_inject_bank_store(struct kobject *kobj,
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (value > 5) {
|
||||
printk(KERN_ERR "Non-existant MCE bank: %lu\n", value);
|
||||
return -EINVAL;
|
||||
}
|
||||
if (value > 5)
|
||||
if (boot_cpu_data.x86 != 0x15 || value > 6) {
|
||||
printk(KERN_ERR "Non-existant MCE bank: %lu\n", value);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
i_mce.bank = value;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user