797faf31d3
- update to GIT of today (6e4e2a000124f08f1a4e3791c2b02ec9ae6af393) - many bugfixes - Implement re-parsing of mcelog output in ASCII - Add support for non-page aligned EFI Configuration Tables - Add --debug-numerrors - Add decoder for corrected XEN events to --ascii - Correctly log kernel supplied time - record the trigger info in the log - mcelog: Implement dmi decoding for UEFI - mcelog: Add usage information to mcelog for --ignorenodev - Fix length calculation of SMBIOS mapping - change disclaimer - explictly spell out corrected errors OBS-URL: https://build.opensuse.org/request/show/79187 OBS-URL: https://build.opensuse.org/package/show/Base:System/mcelog?expand=0&rev=18
26 lines
699 B
Diff
26 lines
699 B
Diff
---
|
|
memdb.c | 10 +++++-----
|
|
1 file changed, 5 insertions(+), 5 deletions(-)
|
|
|
|
Index: mcelog-1.0.2011.06.08/memdb.c
|
|
===================================================================
|
|
--- mcelog-1.0.2011.06.08.orig/memdb.c
|
|
+++ mcelog-1.0.2011.06.08/memdb.c
|
|
@@ -417,11 +417,11 @@ void prefill_memdb(void)
|
|
md->location = xstrdup(bl);
|
|
md->name = xstrdup(dmi_getstring(&d->header, d->device_locator));
|
|
}
|
|
- if (missed) {
|
|
- static int warned;
|
|
- if (!warned) {
|
|
- Eprintf("failed to prefill DIMM database from DMI data");
|
|
- warned = 1;
|
|
+ if (!missed) {
|
|
+ static int db_rill_msg;
|
|
+ if (!db_rill_msg) {
|
|
+ Gprintf("Prefilled DIMM database from DMI data");
|
|
+ db_rill_msg = 1;
|
|
}
|
|
}
|
|
}
|