69342a5d53
- Update to version 181: * mcelog: Add support for Raptorlake - Adopt patches to latest git version M Start-consolidating-AMD-specific-stuff.patch M add-f10h-support.patch M add-f11h-support.patch M add-f12h-support.patch M add-f14h-support.patch M add-f15h-support.patch M add-f16h-support.patch M email.patch M fix_setgroups_missing_call.patch M mcelog_invert_prefill_db_warning.patch - Use Python3 shebang instead of python A python3_shebang - Use Github URL - Update to version 180: * Fix warnings in sysfs.c * mcelog: Change "DDR4" string to "DDR" for i10nm platforms * Fix logrotate syntax * remove outdated mcelog.conf.5 manual file * add furture print function for Python2 * fix python errors in genconfig.py * fix the buf not freed in read_field * mcelog: Print warning for locked down kernel * mcelog: Handle sysfs files without length * Fix make test fail OBS-URL: https://build.opensuse.org/request/show/974669 OBS-URL: https://build.opensuse.org/package/show/Base:System/mcelog?expand=0&rev=99
26 lines
672 B
Diff
26 lines
672 B
Diff
---
|
|
memdb.c | 10 +++++-----
|
|
1 file changed, 5 insertions(+), 5 deletions(-)
|
|
|
|
Index: mcelog-181/memdb.c
|
|
===================================================================
|
|
--- mcelog-181.orig/memdb.c
|
|
+++ mcelog-181/memdb.c
|
|
@@ -431,11 +431,11 @@ void prefill_memdb(int do_dmi)
|
|
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;
|
|
}
|
|
}
|
|
}
|