From: Gerd Hoffmann Date: Fri, 21 Apr 2023 10:45:04 +0000 (+0200) Subject: qemu: log reservations in fw_cfg e820 table X-Git-Tag: rel-1.16.3~2 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=ecc51f211f3edd4fcc79d38af56cf84283e4d8b1;p=seabios.git qemu: log reservations in fw_cfg e820 table With loglevel 1 (same we use for RAM entries), so it is included in the firmware log by default. Signed-off-by: Gerd Hoffmann --- diff --git a/src/fw/paravirt.c b/src/fw/paravirt.c index 3aee4c0..e5d4eca 100644 --- a/src/fw/paravirt.c +++ b/src/fw/paravirt.c @@ -765,7 +765,7 @@ static int qemu_early_e820(void) switch (table.type) { case E820_RESERVED: e820_add(table.address, table.length, table.type); - dprintf(3, "qemu/e820: addr 0x%016llx len 0x%016llx [reserved]\n", + dprintf(1, "qemu/e820: addr 0x%016llx len 0x%016llx [reserved]\n", table.address, table.length); break; case E820_RAM: