Commit ae797449 authored by Jean Delvare's avatar Jean Delvare Committed by Linus Torvalds

firmware/dmi_scan: drop OOM messages

As reported by Joe Perches: OOM messages generally aren't useful.
dmi_alloc is either a trivial front-end to kzalloc, and kzalloc already
does a dump_stack() when OOM, or for x86, dmi_alloc uses extend_brk
which BUGs when unsuccessful.

So we can remove all 6 such log messages in the dmi_scan driver, to
shrink the binary size (by 528 bytes on x86_64.)
Signed-off-by: default avatarJean Delvare <jdelvare@suse.de>
Reported-by: default avatarJoe Perches <joe@perches.com>
Cc: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent ffbbb96d
......@@ -62,8 +62,6 @@ static const char * __init dmi_string(const struct dmi_header *dm, u8 s)
str = dmi_alloc(len);
if (str != NULL)
strcpy(str, bp);
else
pr_err("dmi_string: cannot allocate %Zu bytes.\n", len);
return str;
}
......@@ -219,10 +217,8 @@ static void __init dmi_save_one_device(int type, const char *name)
return;
dev = dmi_alloc(sizeof(*dev) + strlen(name) + 1);
if (!dev) {
pr_err("dmi_save_one_device: out of memory.\n");
if (!dev)
return;
}
dev->type = type;
strcpy((char *)(dev + 1), name);
......@@ -258,10 +254,8 @@ static void __init dmi_save_oem_strings_devices(const struct dmi_header *dm)
continue;
dev = dmi_alloc(sizeof(*dev));
if (!dev) {
pr_err("dmi_save_oem_strings_devices: out of memory.\n");
if (!dev)
break;
}
dev->type = DMI_DEV_TYPE_OEM_STRING;
dev->name = devname;
......@@ -277,18 +271,14 @@ static void __init dmi_save_ipmi_device(const struct dmi_header *dm)
void *data;
data = dmi_alloc(dm->length);
if (data == NULL) {
pr_err("dmi_save_ipmi_device: out of memory.\n");
if (data == NULL)
return;
}
memcpy(data, dm, dm->length);
dev = dmi_alloc(sizeof(*dev));
if (!dev) {
pr_err("dmi_save_ipmi_device: out of memory.\n");
if (!dev)
return;
}
dev->type = DMI_DEV_TYPE_IPMI;
dev->name = "IPMI controller";
......@@ -303,10 +293,9 @@ static void __init dmi_save_dev_onboard(int instance, int segment, int bus,
struct dmi_dev_onboard *onboard_dev;
onboard_dev = dmi_alloc(sizeof(*onboard_dev) + strlen(name) + 1);
if (!onboard_dev) {
pr_err("dmi_save_dev_onboard: out of memory.\n");
if (!onboard_dev)
return;
}
onboard_dev->instance = instance;
onboard_dev->segment = segment;
onboard_dev->bus = bus;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment