|
@@ -79,7 +79,7 @@ static long mce_handle_derror(uint64_t dsisr, uint64_t slb_error_bits)
|
|
}
|
|
}
|
|
if (dsisr & P7_DSISR_MC_TLB_MULTIHIT_MFTLB) {
|
|
if (dsisr & P7_DSISR_MC_TLB_MULTIHIT_MFTLB) {
|
|
if (cur_cpu_spec && cur_cpu_spec->flush_tlb)
|
|
if (cur_cpu_spec && cur_cpu_spec->flush_tlb)
|
|
- cur_cpu_spec->flush_tlb(TLBIEL_INVAL_PAGE);
|
|
|
|
|
|
+ cur_cpu_spec->flush_tlb(TLBIEL_INVAL_SET);
|
|
/* reset error bits */
|
|
/* reset error bits */
|
|
dsisr &= ~P7_DSISR_MC_TLB_MULTIHIT_MFTLB;
|
|
dsisr &= ~P7_DSISR_MC_TLB_MULTIHIT_MFTLB;
|
|
}
|
|
}
|
|
@@ -110,7 +110,7 @@ static long mce_handle_common_ierror(uint64_t srr1)
|
|
break;
|
|
break;
|
|
case P7_SRR1_MC_IFETCH_TLB_MULTIHIT:
|
|
case P7_SRR1_MC_IFETCH_TLB_MULTIHIT:
|
|
if (cur_cpu_spec && cur_cpu_spec->flush_tlb) {
|
|
if (cur_cpu_spec && cur_cpu_spec->flush_tlb) {
|
|
- cur_cpu_spec->flush_tlb(TLBIEL_INVAL_PAGE);
|
|
|
|
|
|
+ cur_cpu_spec->flush_tlb(TLBIEL_INVAL_SET);
|
|
handled = 1;
|
|
handled = 1;
|
|
}
|
|
}
|
|
break;
|
|
break;
|