mca: Remove excessively verbose debug messages.

Expecially in case of AMD there was more than dozen lines per CPU.

MFC after:	1 week
This commit is contained in:
Alexander Motin 2021-12-07 22:27:09 -05:00
parent c2003f2684
commit 935dc0de88
2 changed files with 0 additions and 9 deletions

View File

@ -1479,8 +1479,6 @@ native_lapic_enable_cmc(void)
("%s: missing APIC %u", __func__, apic_id));
lapics[apic_id].la_lvts[APIC_LVT_CMCI].lvt_masked = 0;
lapics[apic_id].la_lvts[APIC_LVT_CMCI].lvt_active = 1;
if (bootverbose)
printf("lapic%u: CMCI unmasked\n", apic_id);
}
static int
@ -1510,8 +1508,6 @@ native_lapic_enable_mca_elvt(void)
}
lapics[apic_id].la_elvts[APIC_ELVT_MCA].lvt_masked = 0;
lapics[apic_id].la_elvts[APIC_ELVT_MCA].lvt_active = 1;
if (bootverbose)
printf("lapic%u: MCE Thresholding ELVT unmasked\n", apic_id);
return (APIC_ELVT_MCA);
}

View File

@ -1223,11 +1223,6 @@ amd_thresholding_monitor(int i)
return;
}
/* Re-use Intel CMC support infrastructure. */
if (bootverbose)
printf("%s: Starting AMD thresholding on bank %d\n", __func__,
i);
cc = &amd_et_state[PCPU_GET(cpuid)][i];
cc->cur_threshold = 1;
amd_thresholding_start(cc, i);