x86: add the word 'WARNING' in check_nmi_watchdog() output
Our automated test suite looks for keywords like error, fail, warning in the boot log. In the case when the nmi watchdog is determined to be stuck in check_nmi_watchdog(), none of those keywords are displayed. This patch adds a keyword, "WARNING:", so it makes it easier to notice when the nmi watchdog isn't working correctly. Also add a proper KERN_WARNING mark to this printout. Signed-off-by: Don Zickus <dzickus@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
Родитель
ee0011a798
Коммит
75bc122c2d
|
@ -106,7 +106,8 @@ static int __init check_nmi_watchdog(void)
|
||||||
if (!per_cpu(wd_enabled, cpu))
|
if (!per_cpu(wd_enabled, cpu))
|
||||||
continue;
|
continue;
|
||||||
if (nmi_count(cpu) - prev_nmi_count[cpu] <= 5) {
|
if (nmi_count(cpu) - prev_nmi_count[cpu] <= 5) {
|
||||||
printk("CPU#%d: NMI appears to be stuck (%d->%d)!\n",
|
printk(KERN_WARNING "WARNING: CPU#%d: NMI "
|
||||||
|
"appears to be stuck (%d->%d)!\n",
|
||||||
cpu,
|
cpu,
|
||||||
prev_nmi_count[cpu],
|
prev_nmi_count[cpu],
|
||||||
nmi_count(cpu));
|
nmi_count(cpu));
|
||||||
|
|
|
@ -109,7 +109,8 @@ int __init check_nmi_watchdog (void)
|
||||||
if (!per_cpu(wd_enabled, cpu))
|
if (!per_cpu(wd_enabled, cpu))
|
||||||
continue;
|
continue;
|
||||||
if (cpu_pda(cpu)->__nmi_count - counts[cpu] <= 5) {
|
if (cpu_pda(cpu)->__nmi_count - counts[cpu] <= 5) {
|
||||||
printk("CPU#%d: NMI appears to be stuck (%d->%d)!\n",
|
printk(KERN_WARNING "WARNING: CPU#%d: NMI "
|
||||||
|
"appears to be stuck (%d->%d)!\n",
|
||||||
cpu,
|
cpu,
|
||||||
counts[cpu],
|
counts[cpu],
|
||||||
cpu_pda(cpu)->__nmi_count);
|
cpu_pda(cpu)->__nmi_count);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче