I see:
rasdaemon: Listening to events for cpus 0 to 64
which would be 65 total cpus - I only have 64.
Fix the log message to use "n_cpus - 1" rather than "n_cpus".
Signed-off-by: Tony Luck <tony.luck@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
}
}
- log(TERM, LOG_INFO, "Listening to events for cpus 0 to %d\n", n_cpus);
+ log(TERM, LOG_INFO, "Listening to events for cpus 0 to %d\n", n_cpus - 1);
if (pdata[0].ras->record_events)
ras_mc_event_opendb(pdata[0].cpu, pdata[0].ras);