[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 5/6] qemu: log reservations in fw_cfg e820 table
|
From: |
Gerd Hoffmann |
|
Subject: |
[PATCH v3 5/6] qemu: log reservations in fw_cfg e820 table |
|
Date: |
Fri, 5 May 2023 09:11:16 +0200 |
With loglevel 1 (same we use for RAM entries),
so it is included in the firmware log by default.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
src/fw/paravirt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/fw/paravirt.c b/src/fw/paravirt.c
index fc308bf1ef1d..02351b24caea 100644
--- a/src/fw/paravirt.c
+++ b/src/fw/paravirt.c
@@ -764,7 +764,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:
--
2.40.1
- [PATCH v3 0/6] misc tweaks for kvm and the 64bit pci window, Gerd Hoffmann, 2023/05/05
- [PATCH v3 4/6] be less conservative with the 64bit pci io window, Gerd Hoffmann, 2023/05/05
- [PATCH v3 2/6] detect physical address space size, Gerd Hoffmann, 2023/05/05
- [PATCH v3 1/6] better kvm detection, Gerd Hoffmann, 2023/05/05
- [PATCH v3 6/6] check for e820 conflict, Gerd Hoffmann, 2023/05/05
- [PATCH v3 3/6] move 64bit pci window to end of address space, Gerd Hoffmann, 2023/05/05
- [PATCH v3 5/6] qemu: log reservations in fw_cfg e820 table,
Gerd Hoffmann <=
- Re: [SeaBIOS] [PATCH v3 0/6] misc tweaks for kvm and the 64bit pci window, Kevin O'Connor, 2023/05/09