mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 14:17:06 -04:00
Move the message complaining about failed system resource allocations
under bootverbose. Every example I've seen to date has been due to an ACPI system resource device reserving a range that overlaps with system memory (which ram0 attempts to reserve) or a local or I/O APIC (which apic0 attempts to reserve). These are always harmless but look scary to users. MFC after: 1 week
This commit is contained in:
parent
7a9d50b370
commit
44947d3aeb
1 changed files with 1 additions and 1 deletions
|
|
@ -1151,7 +1151,7 @@ acpi_sysres_alloc(device_t dev)
|
|||
if (res != NULL) {
|
||||
rman_manage_region(rm, rman_get_start(res), rman_get_end(res));
|
||||
rle->res = res;
|
||||
} else
|
||||
} else if (bootverbose)
|
||||
device_printf(dev, "reservation of %lx, %lx (%d) failed\n",
|
||||
rle->start, rle->count, rle->type);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue