* [PULL v2 00/28] Misc HW patches for 2024-05-08
@ 2024-05-08 22:15 Philippe Mathieu-Daudé
2024-05-08 22:15 ` [PULL v2 14/28] hw/i386/x86: Don't leak "isa-bios" memory regions Philippe Mathieu-Daudé
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-05-08 22:15 UTC (permalink / raw)
To: qemu-devel; +Cc: Philippe =?unknown-8bit?q?Mathieu-Daud=C3=A9?=
v2: Updated Bernhard's patches
The following changes since commit 4e66a08546a2588a4667766a1edab9caccf24ce3:
Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu into staging (2024-05-07 09:26:30 -0700)
are available in the Git repository at:
https://github.com/philmd/qemu.git tags/hw-misc-20240508
for you to fetch changes up to 8b4d80bb53af30db5de91749216d0bb73fa93cab:
misc: Use QEMU header path relative to include/ directory (2024-05-09 00:07:21 +0200)
----------------------------------------------------------------
Misc HW patches
- Few more g_memdup() replaced by safer g_memdup2() wrapper (Phil)
- Endianness access fixed in vfio-user config space (Mattias)
- Replace qemu_mutex_lock() -> QEMU_LOCK_GUARD in system/physmem (Phil)
- Per-AddressSpace bounce buffering (Mattias)
- Allow to compile x86 PC machines without Floppy Controller (Thomas)
- Cleanups around i386 "isa-bios" memory regions (Bernhard)
- Remove unused usb rndis_config_parameter structure (David)
- Migrate missing clock in STM32L4x5 GPIOs (Inès)
- Deprecate PPC 'ref405ep' machine and 405 CPUs (Cédric)
- Memory leak fixed in Loongarch Virt machine (Song Gao)
- hw/loongarch/ code moved around (Paolo & Bibo Mao)
- Emulate S3 suspend in loongson3_virt machine (Jiaxun)
- Implement IOCSR address space in Loongson IPI (Jiaxun)
- Use QEMU header path relative to include/ directory (Phil)
----------------------------------------------------------------
Bernhard Beschow (5):
hw/i386/x86: Eliminate two if statements in x86_bios_rom_init()
hw/i386: Have x86_bios_rom_init() take X86MachineState rather than
MachineState
hw/i386/x86: Don't leak "isa-bios" memory regions
hw/i386/x86: Don't leak "pc.bios" memory region
hw/i386/x86: Extract x86_isa_bios_init() from x86_bios_rom_init()
Bibo Mao (2):
hw/loongarch: Rename LOONGARCH_MACHINE with LOONGARCH_VIRT_MACHINE
hw/loongarch: Rename LoongArchMachineState with
LoongArchVirtMachineState
Cédric Le Goater (1):
hw/ppc: Deprecate 'ref405ep' machine and 405 CPUs
Dr. David Alan Gilbert (1):
hw/usb/dev-network: Remove unused struct 'rndis_config_parameter'
Inès Varhol (1):
hw/gpio: Handle clock migration in STM32L4x5 gpios
Jiaxun Yang (4):
hw/mips/loongson3_virt: Emulate suspend function
hw/intc/loongarch_ipi: Remove pointless MAX_CPU check
hw/intc/loongarch_ipi: Rename as loongson_ipi
hw/intc/loongson_ipi: Implement IOCSR address space for MIPS
Mattias Nissler (3):
hw/remote/vfio-user: Fix config space access byte order
system/physmem: Propagate AddressSpace to MapClient helpers
system/physmem: Per-AddressSpace bounce buffering
Paolo Bonzini (1):
hw/loongarch: move memory map to boot.c
Philippe Mathieu-Daudé (6):
block/qcow2-bitmap: Replace g_memdup() by g_memdup2()
target/ppc: Replace g_memdup() by g_memdup2()
hw/hppa/machine: Replace g_memdup() by g_memdup2()
hw/ppc/spapr_pci: Replace g_memdup() by g_memdup2()
system/physmem: Replace qemu_mutex_lock() calls with QEMU_LOCK_GUARD
misc: Use QEMU header path relative to include/ directory
Song Gao (1):
hw/loongarch/virt: Fix memory leak
Thomas Huth (3):
hw/i386/pc: Allow to compile without CONFIG_FDC_ISA
hw/i386/Kconfig: Allow to compile Q35 without FDC_ISA
hw/i386: Add the possibility to use i440fx and isapc without FDC
MAINTAINERS | 4 +
docs/about/deprecated.rst | 8 +
hw/loongarch/fw_cfg.h | 2 +-
include/exec/cpu-common.h | 2 -
include/exec/memory.h | 45 ++-
include/hw/i386/x86.h | 17 +-
.../intc/{loongarch_ipi.h => loongson_ipi.h} | 12 +-
include/hw/loongarch/boot.h | 10 +
include/hw/loongarch/virt.h | 21 +-
block/qcow2-bitmap.c | 2 +-
hw/audio/virtio-snd.c | 2 +-
hw/gpio/stm32l4x5_gpio.c | 6 +-
hw/hppa/machine.c | 16 +-
hw/i386/microvm.c | 2 +-
hw/i386/pc.c | 13 +-
hw/i386/pc_piix.c | 6 +-
hw/i386/pc_sysfw.c | 11 +-
hw/i386/x86.c | 45 +--
hw/intc/loongarch_ipi.c | 19 +-
hw/intc/loongson_ipi.c | 368 ++++++++++++++++++
hw/loongarch/acpi-build.c | 89 +++--
hw/loongarch/boot.c | 13 +-
hw/loongarch/fw_cfg.c | 2 +-
hw/loongarch/virt.c | 353 ++++++++---------
hw/mips/loongson3_bootp.c | 1 +
hw/mips/loongson3_virt.c | 20 +
hw/ppc/ppc405_boards.c | 1 +
hw/ppc/spapr_pci.c | 7 +-
hw/remote/vfio-user-obj.c | 4 +-
hw/rtc/ls7a_rtc.c | 2 +-
hw/usb/dev-network.c | 8 -
system/dma-helpers.c | 4 +-
system/memory.c | 7 +
system/physmem.c | 99 ++---
target/i386/gdbstub.c | 2 +-
target/ppc/mmu-hash64.c | 2 +-
tests/qtest/nvme-test.c | 2 +-
tests/qtest/ufs-test.c | 2 +-
.gitlab-ci.d/buildtest.yml | 2 +-
hw/i386/Kconfig | 2 +-
hw/intc/Kconfig | 2 +-
hw/intc/meson.build | 2 +-
hw/intc/trace-events | 8 +-
hw/loongarch/Kconfig | 2 +-
44 files changed, 836 insertions(+), 411 deletions(-)
rename include/hw/intc/{loongarch_ipi.h => loongson_ipi.h} (84%)
create mode 100644 hw/intc/loongson_ipi.c
--
2.41.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PULL v2 14/28] hw/i386/x86: Don't leak "isa-bios" memory regions
2024-05-08 22:15 [PULL v2 00/28] Misc HW patches for 2024-05-08 Philippe Mathieu-Daudé
@ 2024-05-08 22:15 ` Philippe Mathieu-Daudé
2024-05-08 22:15 ` [PULL v2 15/28] hw/i386/x86: Don't leak "pc.bios" memory region Philippe Mathieu-Daudé
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-05-08 22:15 UTC (permalink / raw)
To: qemu-devel; +Cc: Bernhard Beschow, Philippe Mathieu-Daudé
From: Bernhard Beschow <shentey@gmail.com>
Fix the leaking in x86_bios_rom_init() and pc_isa_bios_init() by adding an
"isa_bios" attribute to X86MachineState.
Suggested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
Message-ID: <20240508175507.22270-4-shentey@gmail.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
include/hw/i386/x86.h | 7 +++++++
hw/i386/pc_sysfw.c | 7 +++----
hw/i386/x86.c | 9 ++++-----
3 files changed, 14 insertions(+), 9 deletions(-)
diff --git a/include/hw/i386/x86.h b/include/hw/i386/x86.h
index cb07618d19..a07de79167 100644
--- a/include/hw/i386/x86.h
+++ b/include/hw/i386/x86.h
@@ -18,6 +18,7 @@
#define HW_I386_X86_H
#include "exec/hwaddr.h"
+#include "exec/memory.h"
#include "hw/boards.h"
#include "hw/intc/ioapic.h"
@@ -52,6 +53,12 @@ struct X86MachineState {
GMappedFile *initrd_mapped_file;
HotplugHandler *acpi_dev;
+ /*
+ * Map the upper 128 KiB of the BIOS just underneath the 1 MiB address
+ * boundary.
+ */
+ MemoryRegion isa_bios;
+
/* RAM information (sizes, addresses, configuration): */
ram_addr_t below_4g_mem_size, above_4g_mem_size;
diff --git a/hw/i386/pc_sysfw.c b/hw/i386/pc_sysfw.c
index 59c7a81692..82d37cb376 100644
--- a/hw/i386/pc_sysfw.c
+++ b/hw/i386/pc_sysfw.c
@@ -40,11 +40,10 @@
#define FLASH_SECTOR_SIZE 4096
-static void pc_isa_bios_init(MemoryRegion *rom_memory,
+static void pc_isa_bios_init(MemoryRegion *isa_bios, MemoryRegion *rom_memory,
MemoryRegion *flash_mem)
{
int isa_bios_size;
- MemoryRegion *isa_bios;
uint64_t flash_size;
void *flash_ptr, *isa_bios_ptr;
@@ -52,7 +51,6 @@ static void pc_isa_bios_init(MemoryRegion *rom_memory,
/* map the last 128KB of the BIOS in ISA space */
isa_bios_size = MIN(flash_size, 128 * KiB);
- isa_bios = g_malloc(sizeof(*isa_bios));
memory_region_init_ram(isa_bios, NULL, "isa-bios", isa_bios_size,
&error_fatal);
memory_region_add_subregion_overlap(rom_memory,
@@ -136,6 +134,7 @@ void pc_system_flash_cleanup_unused(PCMachineState *pcms)
static void pc_system_flash_map(PCMachineState *pcms,
MemoryRegion *rom_memory)
{
+ X86MachineState *x86ms = X86_MACHINE(pcms);
hwaddr total_size = 0;
int i;
BlockBackend *blk;
@@ -185,7 +184,7 @@ static void pc_system_flash_map(PCMachineState *pcms,
if (i == 0) {
flash_mem = pflash_cfi01_get_memory(system_flash);
- pc_isa_bios_init(rom_memory, flash_mem);
+ pc_isa_bios_init(&x86ms->isa_bios, rom_memory, flash_mem);
/* Encrypt the pflash boot ROM */
if (sev_enabled()) {
diff --git a/hw/i386/x86.c b/hw/i386/x86.c
index 6d3c72f124..457e8a34a5 100644
--- a/hw/i386/x86.c
+++ b/hw/i386/x86.c
@@ -1133,7 +1133,7 @@ void x86_bios_rom_init(X86MachineState *x86ms, const char *default_firmware,
{
const char *bios_name;
char *filename;
- MemoryRegion *bios, *isa_bios;
+ MemoryRegion *bios;
int bios_size, isa_bios_size;
ssize_t ret;
@@ -1173,14 +1173,13 @@ void x86_bios_rom_init(X86MachineState *x86ms, const char *default_firmware,
/* map the last 128KB of the BIOS in ISA space */
isa_bios_size = MIN(bios_size, 128 * KiB);
- isa_bios = g_malloc(sizeof(*isa_bios));
- memory_region_init_alias(isa_bios, NULL, "isa-bios", bios,
+ memory_region_init_alias(&x86ms->isa_bios, NULL, "isa-bios", bios,
bios_size - isa_bios_size, isa_bios_size);
memory_region_add_subregion_overlap(rom_memory,
0x100000 - isa_bios_size,
- isa_bios,
+ &x86ms->isa_bios,
1);
- memory_region_set_readonly(isa_bios, !isapc_ram_fw);
+ memory_region_set_readonly(&x86ms->isa_bios, !isapc_ram_fw);
/* map all the bios at the top of memory */
memory_region_add_subregion(rom_memory,
--
2.41.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PULL v2 15/28] hw/i386/x86: Don't leak "pc.bios" memory region
2024-05-08 22:15 [PULL v2 00/28] Misc HW patches for 2024-05-08 Philippe Mathieu-Daudé
2024-05-08 22:15 ` [PULL v2 14/28] hw/i386/x86: Don't leak "isa-bios" memory regions Philippe Mathieu-Daudé
@ 2024-05-08 22:15 ` Philippe Mathieu-Daudé
2024-05-08 22:15 ` [PULL v2 16/28] hw/i386/x86: Extract x86_isa_bios_init() from x86_bios_rom_init() Philippe Mathieu-Daudé
2024-05-09 8:09 ` [PULL v2 00/28] Misc HW patches for 2024-05-08 Richard Henderson
3 siblings, 0 replies; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-05-08 22:15 UTC (permalink / raw)
To: qemu-devel; +Cc: Bernhard Beschow, Philippe Mathieu-Daudé
From: Bernhard Beschow <shentey@gmail.com>
Fix the leaking in x86_bios_rom_init() by adding a "bios" attribute to
X86MachineState. Note that it is only used in the -bios case.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
Message-ID: <20240508175507.22270-5-shentey@gmail.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
include/hw/i386/x86.h | 6 ++++++
hw/i386/x86.c | 13 ++++++-------
2 files changed, 12 insertions(+), 7 deletions(-)
diff --git a/include/hw/i386/x86.h b/include/hw/i386/x86.h
index a07de79167..55c6809ae0 100644
--- a/include/hw/i386/x86.h
+++ b/include/hw/i386/x86.h
@@ -53,6 +53,12 @@ struct X86MachineState {
GMappedFile *initrd_mapped_file;
HotplugHandler *acpi_dev;
+ /*
+ * Map the whole BIOS just underneath the 4 GiB address boundary. Only used
+ * in the ROM (-bios) case.
+ */
+ MemoryRegion bios;
+
/*
* Map the upper 128 KiB of the BIOS just underneath the 1 MiB address
* boundary.
diff --git a/hw/i386/x86.c b/hw/i386/x86.c
index 457e8a34a5..29167de97d 100644
--- a/hw/i386/x86.c
+++ b/hw/i386/x86.c
@@ -1133,7 +1133,6 @@ void x86_bios_rom_init(X86MachineState *x86ms, const char *default_firmware,
{
const char *bios_name;
char *filename;
- MemoryRegion *bios;
int bios_size, isa_bios_size;
ssize_t ret;
@@ -1149,8 +1148,8 @@ void x86_bios_rom_init(X86MachineState *x86ms, const char *default_firmware,
(bios_size % 65536) != 0) {
goto bios_error;
}
- bios = g_malloc(sizeof(*bios));
- memory_region_init_ram(bios, NULL, "pc.bios", bios_size, &error_fatal);
+ memory_region_init_ram(&x86ms->bios, NULL, "pc.bios", bios_size,
+ &error_fatal);
if (sev_enabled()) {
/*
* The concept of a "reset" simply doesn't exist for
@@ -1159,11 +1158,11 @@ void x86_bios_rom_init(X86MachineState *x86ms, const char *default_firmware,
* the firmware as rom to properly re-initialize on reset.
* Just go for a straight file load instead.
*/
- void *ptr = memory_region_get_ram_ptr(bios);
+ void *ptr = memory_region_get_ram_ptr(&x86ms->bios);
load_image_size(filename, ptr, bios_size);
x86_firmware_configure(ptr, bios_size);
} else {
- memory_region_set_readonly(bios, !isapc_ram_fw);
+ memory_region_set_readonly(&x86ms->bios, !isapc_ram_fw);
ret = rom_add_file_fixed(bios_name, (uint32_t)(-bios_size), -1);
if (ret != 0) {
goto bios_error;
@@ -1173,7 +1172,7 @@ void x86_bios_rom_init(X86MachineState *x86ms, const char *default_firmware,
/* map the last 128KB of the BIOS in ISA space */
isa_bios_size = MIN(bios_size, 128 * KiB);
- memory_region_init_alias(&x86ms->isa_bios, NULL, "isa-bios", bios,
+ memory_region_init_alias(&x86ms->isa_bios, NULL, "isa-bios", &x86ms->bios,
bios_size - isa_bios_size, isa_bios_size);
memory_region_add_subregion_overlap(rom_memory,
0x100000 - isa_bios_size,
@@ -1184,7 +1183,7 @@ void x86_bios_rom_init(X86MachineState *x86ms, const char *default_firmware,
/* map all the bios at the top of memory */
memory_region_add_subregion(rom_memory,
(uint32_t)(-bios_size),
- bios);
+ &x86ms->bios);
return;
bios_error:
--
2.41.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PULL v2 16/28] hw/i386/x86: Extract x86_isa_bios_init() from x86_bios_rom_init()
2024-05-08 22:15 [PULL v2 00/28] Misc HW patches for 2024-05-08 Philippe Mathieu-Daudé
2024-05-08 22:15 ` [PULL v2 14/28] hw/i386/x86: Don't leak "isa-bios" memory regions Philippe Mathieu-Daudé
2024-05-08 22:15 ` [PULL v2 15/28] hw/i386/x86: Don't leak "pc.bios" memory region Philippe Mathieu-Daudé
@ 2024-05-08 22:15 ` Philippe Mathieu-Daudé
2024-05-09 8:09 ` [PULL v2 00/28] Misc HW patches for 2024-05-08 Richard Henderson
3 siblings, 0 replies; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-05-08 22:15 UTC (permalink / raw)
To: qemu-devel; +Cc: Bernhard Beschow, Philippe Mathieu-Daudé
From: Bernhard Beschow <shentey@gmail.com>
The function is inspired by pc_isa_bios_init() and should eventually replace it.
Using x86_isa_bios_init() rather than pc_isa_bios_init() fixes pflash commands
to work in the isa-bios region.
While at it convert the magic number 0x100000 (== 1MiB) to increase readability.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
Message-ID: <20240508175507.22270-6-shentey@gmail.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
include/hw/i386/x86.h | 2 ++
hw/i386/x86.c | 25 ++++++++++++++++---------
2 files changed, 18 insertions(+), 9 deletions(-)
diff --git a/include/hw/i386/x86.h b/include/hw/i386/x86.h
index 55c6809ae0..d7b7d3f3ce 100644
--- a/include/hw/i386/x86.h
+++ b/include/hw/i386/x86.h
@@ -129,6 +129,8 @@ void x86_cpu_unplug_request_cb(HotplugHandler *hotplug_dev,
void x86_cpu_unplug_cb(HotplugHandler *hotplug_dev,
DeviceState *dev, Error **errp);
+void x86_isa_bios_init(MemoryRegion *isa_bios, MemoryRegion *isa_memory,
+ MemoryRegion *bios, bool read_only);
void x86_bios_rom_init(X86MachineState *x86ms, const char *default_firmware,
MemoryRegion *rom_memory, bool isapc_ram_fw);
diff --git a/hw/i386/x86.c b/hw/i386/x86.c
index 29167de97d..c61f4ebfa6 100644
--- a/hw/i386/x86.c
+++ b/hw/i386/x86.c
@@ -1128,12 +1128,25 @@ void x86_load_linux(X86MachineState *x86ms,
nb_option_roms++;
}
+void x86_isa_bios_init(MemoryRegion *isa_bios, MemoryRegion *isa_memory,
+ MemoryRegion *bios, bool read_only)
+{
+ uint64_t bios_size = memory_region_size(bios);
+ uint64_t isa_bios_size = MIN(bios_size, 128 * KiB);
+
+ memory_region_init_alias(isa_bios, NULL, "isa-bios", bios,
+ bios_size - isa_bios_size, isa_bios_size);
+ memory_region_add_subregion_overlap(isa_memory, 1 * MiB - isa_bios_size,
+ isa_bios, 1);
+ memory_region_set_readonly(isa_bios, read_only);
+}
+
void x86_bios_rom_init(X86MachineState *x86ms, const char *default_firmware,
MemoryRegion *rom_memory, bool isapc_ram_fw)
{
const char *bios_name;
char *filename;
- int bios_size, isa_bios_size;
+ int bios_size;
ssize_t ret;
/* BIOS load */
@@ -1171,14 +1184,8 @@ void x86_bios_rom_init(X86MachineState *x86ms, const char *default_firmware,
g_free(filename);
/* map the last 128KB of the BIOS in ISA space */
- isa_bios_size = MIN(bios_size, 128 * KiB);
- memory_region_init_alias(&x86ms->isa_bios, NULL, "isa-bios", &x86ms->bios,
- bios_size - isa_bios_size, isa_bios_size);
- memory_region_add_subregion_overlap(rom_memory,
- 0x100000 - isa_bios_size,
- &x86ms->isa_bios,
- 1);
- memory_region_set_readonly(&x86ms->isa_bios, !isapc_ram_fw);
+ x86_isa_bios_init(&x86ms->isa_bios, rom_memory, &x86ms->bios,
+ !isapc_ram_fw);
/* map all the bios at the top of memory */
memory_region_add_subregion(rom_memory,
--
2.41.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PULL v2 00/28] Misc HW patches for 2024-05-08
2024-05-08 22:15 [PULL v2 00/28] Misc HW patches for 2024-05-08 Philippe Mathieu-Daudé
` (2 preceding siblings ...)
2024-05-08 22:15 ` [PULL v2 16/28] hw/i386/x86: Extract x86_isa_bios_init() from x86_bios_rom_init() Philippe Mathieu-Daudé
@ 2024-05-09 8:09 ` Richard Henderson
3 siblings, 0 replies; 5+ messages in thread
From: Richard Henderson @ 2024-05-09 8:09 UTC (permalink / raw)
To: Philippe Mathieu-Daudé, qemu-devel
On 5/9/24 00:15, Philippe Mathieu-Daudé wrote:
> v2: Updated Bernhard's patches
>
> The following changes since commit 4e66a08546a2588a4667766a1edab9caccf24ce3:
>
> Merge tag 'for-upstream' ofhttps://gitlab.com/bonzini/qemu into staging (2024-05-07 09:26:30 -0700)
>
> are available in the Git repository at:
>
> https://github.com/philmd/qemu.git tags/hw-misc-20240508
>
> for you to fetch changes up to 8b4d80bb53af30db5de91749216d0bb73fa93cab:
>
> misc: Use QEMU header path relative to include/ directory (2024-05-09 00:07:21 +0200)
>
> ----------------------------------------------------------------
> Misc HW patches
>
> - Few more g_memdup() replaced by safer g_memdup2() wrapper (Phil)
> - Endianness access fixed in vfio-user config space (Mattias)
> - Replace qemu_mutex_lock() -> QEMU_LOCK_GUARD in system/physmem (Phil)
> - Per-AddressSpace bounce buffering (Mattias)
> - Allow to compile x86 PC machines without Floppy Controller (Thomas)
> - Cleanups around i386 "isa-bios" memory regions (Bernhard)
> - Remove unused usb rndis_config_parameter structure (David)
> - Migrate missing clock in STM32L4x5 GPIOs (Inès)
> - Deprecate PPC 'ref405ep' machine and 405 CPUs (Cédric)
> - Memory leak fixed in Loongarch Virt machine (Song Gao)
> - hw/loongarch/ code moved around (Paolo & Bibo Mao)
> - Emulate S3 suspend in loongson3_virt machine (Jiaxun)
> - Implement IOCSR address space in Loongson IPI (Jiaxun)
> - Use QEMU header path relative to include/ directory (Phil)
Applied, thanks. Please update https://wiki.qemu.org/ChangeLog/9.1 as appropriate.
r~
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-05-09 8:10 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-08 22:15 [PULL v2 00/28] Misc HW patches for 2024-05-08 Philippe Mathieu-Daudé
2024-05-08 22:15 ` [PULL v2 14/28] hw/i386/x86: Don't leak "isa-bios" memory regions Philippe Mathieu-Daudé
2024-05-08 22:15 ` [PULL v2 15/28] hw/i386/x86: Don't leak "pc.bios" memory region Philippe Mathieu-Daudé
2024-05-08 22:15 ` [PULL v2 16/28] hw/i386/x86: Extract x86_isa_bios_init() from x86_bios_rom_init() Philippe Mathieu-Daudé
2024-05-09 8:09 ` [PULL v2 00/28] Misc HW patches for 2024-05-08 Richard Henderson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).