Re: [PATCH] hw/smbios: add an ability to set extension bytes in the type0 table

2025-07-23 Thread Michael S. Tsirkin
On Wed, Jul 23, 2025 at 12:16:08PM +0300, Daniil Tatianin wrote: > > On 7/23/25 12:14 PM, Michael S. Tsirkin wrote: > > On Wed, Jul 23, 2025 at 12:01:28PM +0300, Daniil Tatianin wrote: > > > This is useful to be able to indicate various supported features to the > > &g

Re: [PATCH] hw/smbios: add an ability to set extension bytes in the type0 table

2025-07-23 Thread Michael S. Tsirkin
On Wed, Jul 23, 2025 at 12:01:28PM +0300, Daniil Tatianin wrote: > This is useful to be able to indicate various supported features to the > guest, or freeze a specific version of SeaBIOS to prevent guest visible > changes between BIOS updates. This is currently not possible since the > extension b

Re: [PATCH] hw/i386: Fix 'use-legacy-x86-rom' property compatibility

2025-07-23 Thread Michael S. Tsirkin
Add the ramfb romfile compatibility") > Cc: Gerd Hoffmann > Cc: Shaoqin Huang > Signed-off-by: Cédric Le Goater Acked-by: Michael S. Tsirkin > --- > hw/vfio/types.h | 2 ++ > hw/core/machine.c | 2 +- > hw/i386/microvm.c | 2 +- > hw/i386/pc_piix.c | 2 +- >

Re: [RFC 4/6] virtio-net: iter live migration - migrate vmstate

2025-07-22 Thread Michael S. Tsirkin
On Tue, Jul 22, 2025 at 12:41:25PM +, Jonah Palmer wrote: > Lays out the initial groundwork for iteratively migrating the state of a > virtio-net device, starting with its vmstate (via vmstate_save_state & > vmstate_load_state). > > The original non-iterative vmstate framework still runs durin

Re: [PATCH 0/7] hw/i386/amd_iommu: Cleanups and fixes

2025-07-16 Thread Michael S. Tsirkin
On Thu, Jul 17, 2025 at 11:17:05AM +0530, Sairaj Kodilkar wrote: > > > On 7/16/2025 6:59 PM, Michael S. Tsirkin wrote: > > On Wed, Jul 16, 2025 at 06:26:37PM +0530, Sairaj Kodilkar wrote: > > > > > > > > > On 7/16/2025 6:07 PM, Philippe Mathieu-Dau

Re: [PATCH 2/3] hw/riscv/virt-acpi-build.c: Update FADT and MADT versions

2025-07-16 Thread Michael S. Tsirkin
On Wed, Jul 16, 2025 at 08:11:39PM +0530, Sunil V L wrote: > RISC-V support is added only in ACPI 6.6. According to the ACPI 6.6 > specification, the minor version of the Fixed ACPI Description Table > (FADT) should be 6, and the Multiple APIC Description Table (MADT) > should use revision 7. So, u

Re: [PATCH 0/7] hw/i386/amd_iommu: Cleanups and fixes

2025-07-16 Thread Michael S. Tsirkin
On Wed, Jul 16, 2025 at 06:26:37PM +0530, Sairaj Kodilkar wrote: > > > On 7/16/2025 6:07 PM, Philippe Mathieu-Daudé wrote: > > On 16/7/25 09:31, Sairaj Kodilkar wrote: > > > This series provides few cleanups and fixes for the amd iommu > > > > > > The patches are based on top of 56c6e249b698 (v1

Re: [PATCH REPOST v4 4/4] acpi/virt: suppress UART device & SPCR when guest has no serial hardware

2025-07-16 Thread Michael S. Tsirkin
On Wed, Jul 16, 2025 at 07:41:11PM +0800, Li Chen wrote: > Hi Michael, > > Thanks for your kind review! All issues below have been fixed in v5: > https://lore.kernel.org/qemu-devel/20250716111959.404917-5-me@linux.beauty/T/#m696cee9a95646add1b74b866c3d6761aa4c5c762 Past soft freeze now: I tagged

Re: [PATCH v10 (RESEND) 00/20] Change ghes to use HEST-based offsets and add support for error inject

2025-07-16 Thread Michael S. Tsirkin
On Wed, Jul 16, 2025 at 08:11:17AM +0200, Mauro Carvalho Chehab wrote: > Em Tue, 15 Jul 2025 13:36:26 -0400 > "Michael S. Tsirkin" escreveu: > > > On Thu, Jun 12, 2025 at 05:17:24PM +0200, Mauro Carvalho Chehab wrote: > > > Hi Michael, > > > > &

Re: [PATCH v10 (RESEND) 00/20] Change ghes to use HEST-based offsets and add support for error inject

2025-07-15 Thread Michael S. Tsirkin
On Thu, Jun 12, 2025 at 05:17:24PM +0200, Mauro Carvalho Chehab wrote: > Hi Michael, > > This is v10 of the patch series, rebased to apply after release > 10.0. The only difference against v9 is a minor confict resolution. Unfortunately, this needs a rebase on top of latest PCIHP changes in my tr

[PULL v2 28/97] rust: bindings: allow any number of params

2025-07-14 Thread Michael S. Tsirkin
r/index.html#too_many_arguments = note: `-D clippy::too-many-arguments` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::too_many_arguments)]` Reviewed-by: Philippe Mathieu-Daudé Acked-by: Paolo Bonzini Message-Id: Signed-off-by: Michael S. Tsirkin --- rust/

Re: [PULL 00/97] virtio,pci,pc: features, fixes, tests

2025-07-14 Thread Michael S. Tsirkin
On Mon, Jul 14, 2025 at 07:06:18PM -0400, Michael S. Tsirkin wrote: > The following changes since commit 9a4e273ddec3927920c5958d2226c6b38b543336: > > Merge tag 'pull-tcg-20250711' of https://gitlab.com/rth7680/qemu into > staging (2025-07-13 01:46:04 -0400) > &

[PATCH v2] rust: bindings: allow any number of params

2025-07-14 Thread Michael S. Tsirkin
r/index.html#too_many_arguments = note: `-D clippy::too-many-arguments` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::too_many_arguments)]` Signed-off-by: Michael S. Tsirkin --- rust/qemu-api/src/bindings.rs | 3 ++- 1 file changed, 2 insertions(+), 1 delet

Re: [PULL 28/97] rust: bindings: allow any number of params

2025-07-14 Thread Michael S. Tsirkin
On Tue, Jul 15, 2025 at 02:30:40AM +0300, Manos Pitsidianakis wrote: > On Tue, Jul 15, 2025 at 2:07 AM Michael S. Tsirkin wrote: > > > > We are going to be adding more parameters, and this makes > > rust unhappy: > > Functions with lots of parameters are cons

[PULL 19/97] amd_iommu: Update bitmasks representing DTE reserved fields

2025-07-14 Thread Michael S. Tsirkin
special conditions are not yet implemented. Cc: qemu-sta...@nongnu.org Signed-off-by: Alejandro Jimenez Reviewed-by: Vasant Hegde Message-Id: <20250617150427.20585-4-alejandro.j.jime...@oracle.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/i386/amd_iommu

Re: [PATCH v7 00/36] ACPI PCI Hotplug support on ARM

2025-07-14 Thread Michael S. Tsirkin
On Mon, Jul 14, 2025 at 09:51:40PM +0200, Eric Auger wrote: > Hi Jonathan, > > On 7/14/25 9:40 PM, Jonathan Cameron wrote: > > On Mon, 14 Jul 2025 10:04:44 +0200 > > Eric Auger wrote: > > > >> This series enables ACPI PCI hotplug/hotunplug on ARM. > >> It is not enabled by default and ACPI PCI ho

[PULL 86/97] tests: virt: Update expected ACPI tables for virt test

2025-07-14 Thread Michael S. Tsirkin
0 00 00 00 00 00 14 00 00 11 00 00 00 // +0040: 24 00 00 00 00 00 00 00 00 00 00 00 00 14 00 00 // $... +0050: 0A 00 00 00 38 00 00 00 00 00 00 00 00 00 00 00 // 8... Signed-off-by: Alireza Sanaee Message-Id: <20250714173146.511-5-alireza.san.

[PULL 62/97] hw/i386/acpi-build: Move aml_pci_edsm to a generic place

2025-07-14 Thread Michael S. Tsirkin
.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/hw/acpi/pci.h | 1 + hw/acpi/pci-bridge.c | 54 hw/i386/acpi-build.c | 57 ++- 3 files changed, 57 insertions(+), 55 del

[PULL 30/97] memory: Add permissions in IOMMUAccessFlags

2025-07-14 Thread Michael S. Tsirkin
wed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/system/memory.h | 23 +-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/include/system/memory.h b/include/system/memory.h index 46248d4a52..1672622d70 100644 --- a/include/system/memory.h

[PULL 49/97] hw/pci-host/gpex-acpi: Add native_pci_hotplug arg to acpi_dsdt_add_pci_osc

2025-07-14 Thread Michael S. Tsirkin
wed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/pci-host/gpex-acpi.c | 15 --- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/hw/pci-host/gpex-acpi.c b/hw/pci-host/gpex-acpi.c index 0aba47c71c..f34b7cf25e 100644 --- a/hw/pci-host/gpex-acpi.c +++ b/hw/pc

[PULL 38/97] intel_iommu: Add support for ATS

2025-07-14 Thread Michael S. Tsirkin
From: CLEMENT MATHIEU--DRIF Signed-off-by: Clement Mathieu--Drif Message-Id: <20250628180226.133285-11-clement.mathieu--d...@eviden.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/i386/intel_iommu.c | 63 +++

[PULL 58/97] hw/acpi/pcihp: Add an AmlRegionSpace arg to build_acpi_pci_hotplug

2025-07-14 Thread Michael S. Tsirkin
dhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/hw/acpi/pcihp.h | 3 ++- hw/acpi/pcihp.c | 8 hw/i386/acpi-build.c| 4 ++-- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/include/hw/acpi/pcihp.h b/include/hw/acpi/pc

[PULL 83/97] tests: virt: Allow changes to PPTT test table

2025-07-14 Thread Michael S. Tsirkin
Signed-off-by: Alireza Sanaee Message-Id: <20250714173146.511-2-alireza.san...@huawei.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- tests/qtest/bios-tables-test-allowed-diff.h | 5 + 1 file changed, 5 insertions(+) diff --git a/tests/qtest/bios-tables-test-a

[PULL 93/97] hw/cxl: mailbox-utils: 0x5602 - FMAPI Set DC Region Config

2025-07-14 Thread Michael S. Tsirkin
From: Anisa Su FM DCD Management command 0x5602 implemented per CXL r3.2 Spec Section 7.6.7.6.3 Reviewed-by: Fan Ni Signed-off-by: Anisa Su Signed-off-by: Jonathan Cameron Message-Id: <20250714174509.1984430-8-jonathan.came...@huawei.com> Reviewed-by: Michael S. Tsirkin Signed-

[PULL 78/97] hw/arm/virt: Let virt support pci hotplug/unplug GED event

2025-07-14 Thread Michael S. Tsirkin
From: Eric Auger Set up the IO registers used to communicate between QEMU and ACPI. Signed-off-by: Eric Auger Reviewed-by: Jonathan Cameron Reviewed-by: Igor Mammedov Message-Id: <20250714080639.2525563-33-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Mic

[PULL 60/97] hw/i386/acpi-build: Move build_append_pci_bus_devices/pcihp_slots to pcihp

2025-07-14 Thread Michael S. Tsirkin
medov Reviewed-by: Jonathan Cameron Message-Id: <20250714080639.2525563-15-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/hw/acpi/pci.h | 1 - include/hw/acpi/pcihp.h | 2 + hw/acpi/pcihp.c

[PULL 00/97] virtio,pci,pc: features, fixes, tests

2025-07-14 Thread Michael S. Tsirkin
s acpi pci hotplug fixes, cleanups Signed-off-by: Michael S. Tsirkin Akihiko Odaki (6): qdev-properties: Add DEFINE_PROP_ON_OFF_AUTO_BIT64() net/vhost-vdpa: Report hashing capability virtio-net: Move virtio_net_ge

[PULL 12/97] tests/qtest/bios-tables-test: Add basic testing for LoongArch

2025-07-14 Thread Michael S. Tsirkin
From: Bibo Mao Add basic ACPI table test case for LoongArch, including cpu topology, numa memory, memory hotplug and oem-id test cases. Signed-off-by: Bibo Mao Message-Id: <20250612090321.3416594-3-maob...@loongson.cn> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. T

[PULL 84/97] hw/acpi/aml-build: Set identical implementation flag for PPTT processor nodes

2025-07-14 Thread Michael S. Tsirkin
/kernel/git/torvalds/linux.git/tree/drivers/acpi/pptt.c?h=v6.11-rc1#n810 Signed-off-by: Yicong Yang Reviewed-by: Jonathan Cameron Signed-off-by: Alireza Sanaee Message-Id: <20250714173146.511-3-alireza.san...@huawei.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin -

[PULL 01/97] qdev-properties: Add DEFINE_PROP_ON_OFF_AUTO_BIT64()

2025-07-14 Thread Michael S. Tsirkin
530-vdpa-v1-1-5af4109b1...@daynix.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/hw/qdev-properties.h | 18 ++ hw/core/qdev-properties.c| 67 +++- 2 files changed, 84 insertions(+), 1 deletion(-) diff --git a/incl

[PULL 64/97] qtest/bios-tables-test: Add a variant to the aarch64 viot test

2025-07-14 Thread Michael S. Tsirkin
From: Eric Auger Signed-off-by: Eric Auger Reviewed-by: Jonathan Cameron Reviewed-by: Igor Mammedov Message-Id: <20250714080639.2525563-19-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- tests/qtest/bios-tables-test.c | 1 + 1 file chan

[PULL 91/97] hw/cxl: Move definition for dynamic_capacity_uuid and enum for DC event types to header

2025-07-14 Thread Michael S. Tsirkin
From: Anisa Su Move definition/enum to cxl_events.h for shared use in next patch Reviewed-by: Fan Ni Signed-off-by: Anisa Su Signed-off-by: Jonathan Cameron Message-Id: <20250714174509.1984430-6-jonathan.came...@huawei.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. T

[PULL 90/97] hw/cxl: mailbox-utils: 0x5601 - FMAPI Get Host Region Config

2025-07-14 Thread Michael S. Tsirkin
From: Anisa Su FM DCD Management command 0x5601 implemented per CXL r3.2 Spec Section 7.6.7.6.2 Reviewed-by: Fan Ni Signed-off-by: Anisa Su Signed-off-by: Jonathan Cameron Message-Id: <20250714174509.1984430-5-jonathan.came...@huawei.com> Reviewed-by: Michael S. Tsirkin Signed-

[PULL 89/97] hw/mem: cxl_type3: Add dsmas_flags to CXLDCRegion struct

2025-07-14 Thread Michael S. Tsirkin
: <20250714174509.1984430-4-jonathan.came...@huawei.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/hw/cxl/cxl_device.h | 15 +++ hw/mem/cxl_type3.c | 8 +++- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/include/hw/cxl/cxl_devi

[PULL 96/97] hw/cxl: mailbox-utils: 0x5604 - FMAPI Initiate DC Add

2025-07-14 Thread Michael S. Tsirkin
From: Anisa Su FM DCD Management command 0x5604 implemented per CXL r3.2 Spec Section 7.6.7.6.5 Reviewed-by: Fan Ni Signed-off-by: Anisa Su Signed-off-by: Jonathan Cameron Message-Id: <20250714174509.1984430-11-jonathan.came...@huawei.com> Reviewed-by: Michael S. Tsirkin Signed-

[PULL 80/97] tests/qtest/bios-tables-test: Add aarch64 ACPI PCI hotplug test

2025-07-14 Thread Michael S. Tsirkin
: Gustavo Romero Signed-off-by: Eric Auger Reviewed-by: Jonathan Cameron Reviewed-by: Igor Mammedov Message-Id: <20250714080639.2525563-35-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- tests/qtest/bios-tables-test.

[PULL 23/97] amd_iommu: Remove duplicated definitions

2025-07-14 Thread Michael S. Tsirkin
From: Alejandro Jimenez No functional change. Signed-off-by: Alejandro Jimenez Reviewed-by: Vasant Hegde Message-Id: <20250617150427.20585-8-alejandro.j.jime...@oracle.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/i386/amd_iommu.h | 4 1 file chan

[PULL 28/97] rust: bindings: allow any number of params

2025-07-14 Thread Michael S. Tsirkin
r/index.html#too_many_arguments = note: `-D clippy::too-many-arguments` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::too_many_arguments)]` I didn't want to disable this globally, so I just shut it off for this file. Message-Id: Signed-off-by: M

[PULL 97/97] hw/cxl: mailbox-utils: 0x5605 - FMAPI Initiate DC Release

2025-07-14 Thread Michael S. Tsirkin
From: Anisa Su FM DCD Management command 0x5605 implemented per CXL r3.2 Spec Section 7.6.7.6.6 Reviewed-by: Fan Ni Signed-off-by: Anisa Su Signed-off-by: Jonathan Cameron Message-Id: <20250714174509.1984430-12-jonathan.came...@huawei.com> Reviewed-by: Michael S. Tsirkin Signed-

[PULL 41/97] qemu/target-info: Add %target_arch field to TargetInfo

2025-07-14 Thread Michael S. Tsirkin
From: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Pierrick Bouvier Message-Id: <20250708215320.70426-4-phi...@linaro.org> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/qemu/target-info-impl

[PULL 74/97] hw/acpi/ged: Prepare the device to react to PCI hotplug events

2025-07-14 Thread Michael S. Tsirkin
-29-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/hw/acpi/generic_event_device.h | 14 ++- hw/acpi/generic_event_device.c | 35 ++ 2 files changed, 48 insertions(+), 1 deletion(-) diff --git a/include/h

[PULL 42/97] qemu/target-info: Add target_endian_mode()

2025-07-14 Thread Michael S. Tsirkin
From: Philippe Mathieu-Daudé target_endian_mode() returns the default endianness (QAPI type) of a target. Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Pierrick Bouvier Reviewed-by: Richard Henderson Message-Id: <20250708215320.70426-5-phi...@linaro.org> Reviewed-by: Michael S. T

[PULL 88/97] hw/cxl: mailbox-utils: 0x5600 - FMAPI Get DCD Info

2025-07-14 Thread Michael S. Tsirkin
From: Anisa Su FM DCD Management command 0x5600 implemented per CXL 3.2 Spec Section 7.6.7.6.1. Reviewed-by: Fan Ni Signed-off-by: Anisa Su Signed-off-by: Jonathan Cameron Message-Id: <20250714174509.1984430-3-jonathan.came...@huawei.com> Reviewed-by: Michael S. Tsirkin Signed-

[PULL 85/97] hw/acpi/aml-build: Build a root node in the PPTT table

2025-07-14 Thread Michael S. Tsirkin
to telling the identical implementation informentation. Add a root node for indicating this. Signed-off-by: Yicong Yang Reviewed-by: Jonathan Cameron Signed-off-by: Alireza Sanaee Message-Id: <20250714173146.511-4-alireza.san...@huawei.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Mi

[PULL 20/97] amd_iommu: Fix masks for various IOMMU MMIO Registers

2025-07-14 Thread Michael S. Tsirkin
, and make unrelated definitions independent. Cc: qemu-sta...@nongnu.org Fixes: d29a09ca6842 ("hw/i386: Introduce AMD IOMMU") Signed-off-by: Alejandro Jimenez Reviewed-by: Vasant Hegde Message-Id: <20250617150427.20585-5-alejandro.j.jime...@oracle.com> Reviewed-by: Michael S. Tsirki

[PULL 92/97] hw/mem: cxl_type3: Add DC Region bitmap lock

2025-07-14 Thread Michael S. Tsirkin
Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/hw/cxl/cxl_device.h | 1 + hw/mem/cxl_type3.c | 4 2 files changed, 5 insertions(+) diff --git a/include/hw/cxl/cxl_device.h b/include/hw/cxl/cxl_device.h index 7e0a66906f..42ae5b7479 100644 --- a/inc

[PULL 17/97] amd_iommu: Fix Miscellaneous Information Register 0 encoding

2025-07-14 Thread Michael S. Tsirkin
. Cc: qemu-sta...@nongnu.org Fixes: d29a09ca6842 ("hw/i386: Introduce AMD IOMMU") Co-developed-by: Ethan MILON Signed-off-by: Ethan MILON Signed-off-by: Alejandro Jimenez Message-Id: <20250617150427.20585-2-alejandro.j.jime...@oracle.com> Reviewed-by: Vasant Hegde Reviewed-by: Mi

[PULL 72/97] hw/acpi/ged: Call pcihp plug callbacks in hotplug handler implementation

2025-07-14 Thread Michael S. Tsirkin
Reviewed-by: Jonathan Cameron Message-Id: <20250714080639.2525563-27-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/acpi/generic_event_device.c | 17 + 1 file changed, 17 insertions(+) diff --git a/hw/acpi/generic_event_device.

[PULL 55/97] hw/pci-host/gpex-acpi: Use build_pci_host_bridge_osc_method

2025-07-14 Thread Michael S. Tsirkin
4, NotSerialized) // _DSM: Device-Specific Method Signed-off-by: Eric Auger Reviewed-by: Igor Mammedov Reviewed-by: Jonathan Cameron Message-Id: <20250714080639.2525563-10-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/pci-host/gpex-acpi.c | 6

[PULL 68/97] tests/qtest/bios-tables-test: Update ARM DSDT reference blobs

2025-07-14 Thread Michael S. Tsirkin
} } Signed-off-by: Eric Auger Reviewed-by: Jonathan Cameron Reviewed-by: Igor Mammedov Message-Id: <20250714080639.2525563-23-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- tests/qtest/bios-tables-test-allowed-diff.h | 6 -- test

[PULL 57/97] hw/i386/acpi-build: Introduce build_append_pcihp_resources() helper

2025-07-14 Thread Michael S. Tsirkin
Cameron Message-Id: <20250714080639.2525563-12-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/hw/acpi/pcihp.h | 2 ++ hw/acpi/pcihp.c | 18 ++ hw/i386/acpi-build.c| 15 ++- 3 files changed, 22 inse

[PULL 81/97] qtest/bios-tables-test: Generate reference blob for DSDT.hpoffacpiindex

2025-07-14 Thread Michael S. Tsirkin
ge (0x01) { 0x0C } Return (EDSM (Arg0, Arg1, Arg2, Arg3, Local0)) } } } } } Signed-off-by: Eric Auger Reviewed-by: Jonathan Cameron Reviewed-by: Igor Mammedov Messag

[PULL 95/97] hw/cxl: Create helper function to create DC Event Records from extents

2025-07-14 Thread Michael S. Tsirkin
by cxl-mailbox-utils.c and cxl-events.c, where the helper function is defined. Reviewed-by: Fan Ni Signed-off-by: Anisa Su Signed-off-by: Jonathan Cameron Message-Id: <20250714174509.1984430-10-jonathan.came...@huawei.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. T

[PULL 63/97] qtest/bios-tables-test: Prepare for fixing the aarch64 viot test

2025-07-14 Thread Michael S. Tsirkin
-18-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- tests/qtest/bios-tables-test-allowed-diff.h | 1 + tests/data/acpi/aarch64/virt/DSDT.viot | 0 2 files changed, 1 insertion(+) create mode 100644 tests/data/acpi/aarch64/virt/DSDT.viot diff -

[PULL 48/97] hw/acpi: Rename and move build_x86_acpi_pci_hotplug to pcihp

2025-07-14 Thread Michael S. Tsirkin
o fix the reference to acpi_pci_hotplug.rst documentation Signed-off-by: Eric Auger Reviewed-by: Gustavo Romero Reviewed-by: Igor Mammedov Reviewed-by: Jonathan Cameron Message-Id: <20250714080639.2525563-3-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael

[PULL 22/97] amd_iommu: Fix the calculation for Device Table size

2025-07-14 Thread Michael S. Tsirkin
sant Hegde Message-Id: <20250617150427.20585-7-alejandro.j.jime...@oracle.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/i386/amd_iommu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/i386/amd_iommu.c b/hw/i386/amd_iommu.c

[PULL 82/97] qtest/bios-tables-test: Generate reference blob for DSDT.acpipcihp

2025-07-14 Thread Michael S. Tsirkin
ne DVNT (PCIU, One) DVNT (PCID, 0x03) } } Method (PCNT, 0, NotSerialized) { BNUM = Zero DVNT (PCIU, One) DVNT (PCID, 0x03) ^S38.PCNT () } } } Signed-off-by: Eric Auger Revi

[PULL 52/97] hw/acpi/ged: Add a acpi-pci-hotplug-with-bridge-support property

2025-07-14 Thread Michael S. Tsirkin
wed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/hw/acpi/generic_event_device.h | 2 ++ hw/acpi/generic_event_device.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/include/hw/acpi/generic_event_device.h b/include/hw/acpi/generic_event_device.h index d2da

[PULL 43/97] qemu: Convert target_words_bigendian() to TargetInfo API

2025-07-14 Thread Michael S. Tsirkin
From: Philippe Mathieu-Daudé Reviewed-by: Pierrick Bouvier Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Message-Id: <20250708215320.70426-6-phi...@linaro.org> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/exec/tswap.h

[PULL 73/97] hw/acpi/pcihp: Remove root arg in acpi_pcihp_init

2025-07-14 Thread Michael S. Tsirkin
wed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/hw/acpi/pcihp.h | 2 +- hw/acpi/acpi-pci-hotplug-stub.c | 2 +- hw/acpi/ich9.c | 7 ++- hw/acpi/pcihp.c | 4 ++-- hw/acpi/piix4.c | 5 - 5 files changed, 14 inse

[PULL 66/97] tests/qtest/bios-tables-test: Prepare for changes in the arm virt DSDT table

2025-07-14 Thread Michael S. Tsirkin
.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- tests/qtest/bios-tables-test-allowed-diff.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/tests/qtest/bios-tables-test-allowed-diff.h b/tests/qtest/bios-tables-test-allowed-diff.h index dfb8

[PULL 36/97] intel_iommu: Return page walk level even when the translation fails

2025-07-14 Thread Michael S. Tsirkin
Mathieu--Drif Message-Id: <20250628180226.133285-9-clement.mathieu--d...@eviden.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/i386/intel_iommu.c | 17 - 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/hw/i386/intel_iommu.c b/h

[PULL 71/97] hw/arm/virt: Pass the bus on the ged creation

2025-07-14 Thread Michael S. Tsirkin
From: Eric Auger The bus will be needed on ged realize for acpi pci hp setup. Signed-off-by: Eric Auger Reviewed-by: Jonathan Cameron Reviewed-by: Igor Mammedov Message-Id: <20250714080639.2525563-26-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. T

[PULL 27/97] tests/qtest/bios-tables-test: Add test for disabling SPCR on RISC-V

2025-07-14 Thread Michael S. Tsirkin
From: Li Chen Add ACPI SPCR table test case for RISC-V when SPCR was off. Signed-off-by: Li Chen Reviewed-by: Sunil V L Message-Id: <20250528105404.457729-4-me@linux.beauty> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- tests/qtest/bios-tables-test.

[PULL 77/97] hw/arm/virt: Minor code reshuffling in create_acpi_ged

2025-07-14 Thread Michael S. Tsirkin
. Better refer to a region by its name. Signed-off-by: Eric Auger Reviewed-by: Jonathan Cameron Reviewed-by: Igor Mammedov Message-Id: <20250714080639.2525563-32-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/hw/acpi/generic_event_de

[PULL 45/97] qemu: Declare all load/store helper in 'qemu/bswap.h'

2025-07-14 Thread Michael S. Tsirkin
linaro.org> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/exec/tswap.h | 70 -- include/qemu/bswap.h | 73 include/system/memory.h | 1 - include/user/abitypes.h

[PULL 67/97] hw/arm/virt-acpi-build: Let non hotplug ports support static acpi-index

2025-07-14 Thread Michael S. Tsirkin
: <20250714080639.2525563-22-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/arm/virt-acpi-build.c | 12 hw/arm/Kconfig | 2 ++ 2 files changed, 14 insertions(+) diff --git a/hw/arm/virt-acpi-build.c b/hw/arm/virt-acpi-build.c index f3ba

[PULL 54/97] hw/i386/acpi-build: Turn build_q35_osc_method into a generic method

2025-07-14 Thread Michael S. Tsirkin
: Eric Auger Reviewed-by: Jonathan Cameron Reviewed-by: Igor Mammedov Message-Id: <20250714080639.2525563-9-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/hw/acpi/pci.h | 2 ++ hw/acpi/pci.c

[PULL 04/97] virtio-net: Retrieve peer hashing capability

2025-07-14 Thread Michael S. Tsirkin
From: Akihiko Odaki Retrieve peer hashing capability instead of hardcoding. Signed-off-by: Akihiko Odaki Message-Id: <20250530-vdpa-v1-4-5af4109b1...@daynix.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/hw/virtio/virtio-net.h | 5 ++- hw/net/

[PULL 46/97] hw/virtio: Build various files once

2025-07-14 Thread Michael S. Tsirkin
ge-Id: <20250708215320.70426-9-phi...@linaro.org> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/virtio/virtio-config-io.c | 1 - hw/block/meson.build | 6 -- hw/virtio/meson.build| 20 +++- 3 files changed, 15 insertions(+), 12 deletions(-)

[PULL 76/97] hw/core/sysbus: Introduce sysbus_mmio_map_name() helper

2025-07-14 Thread Michael S. Tsirkin
com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/hw/sysbus.h | 1 + hw/core/sysbus.c| 11 +++ 2 files changed, 12 insertions(+) diff --git a/include/hw/sysbus.h b/include/hw/sysbus.h index 7dc88aaa27..18fde8a7b4 100644 --- a/include/hw/sysbus.h

[PULL 79/97] tests/qtest/bios-tables-test: Prepare for addition of acpi pci hp tests

2025-07-14 Thread Michael S. Tsirkin
-by: Jonathan Cameron Reviewed-by: Igor Mammedov Message-Id: <20250714080639.2525563-34-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- tests/qtest/bios-tables-test-allowed-diff.h | 2 ++ tests/data/acpi/aarch64/virt/DSDT.acpipcihp | 0

[PULL 56/97] tests/qtest/bios-tables-test: Update DSDT blobs after GPEX _OSC change

2025-07-14 Thread Michael S. Tsirkin
Signed-off-by: Eric Auger Signed-off-by: Gustavo Romero Reviewed-by: Jonathan Cameron Reviewed-by: Igor Mammedov Message-Id: <20250714080639.2525563-11-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- tests/qtest/bios-tables-test-allowed-diff

[PULL 65/97] qtest/bios-tables-test: Generate DSDT.viot

2025-07-14 Thread Michael S. Tsirkin
wed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- tests/qtest/bios-tables-test-allowed-diff.h | 1 - tests/data/acpi/aarch64/virt/DSDT.viot | Bin 0 -> 5158 bytes 2 files changed, 1 deletion(-) diff --git a/tests/qtest/bios-tables-test-allowed-diff.h b/tests/qtest/bios-ta

[PULL 47/97] hw/i386/acpi-build: Make aml_pci_device_dsm() static

2025-07-14 Thread Michael S. Tsirkin
3-2-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/hw/acpi/pci.h | 1 - hw/i386/acpi-build.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/include/hw/acpi/pci.h b/include/hw/acpi/pci.h index 6359d574fd..ab0187a894 100644

[PULL 37/97] intel_iommu: Set address mask when a translation fails and adjust W permission

2025-07-14 Thread Michael S. Tsirkin
From: CLEMENT MATHIEU--DRIF Implements the behavior defined in section 10.2.3.5 of PCIe spec rev 5. This is needed by devices that support ATS. Signed-off-by: Clement Mathieu--Drif Message-Id: <20250628180226.133285-10-clement.mathieu--d...@eviden.com> Reviewed-by: Michael S. Tsirkin

[PULL 59/97] hw/i386/acpi-build: Move build_append_notification_callback to pcihp

2025-07-14 Thread Michael S. Tsirkin
25563-14-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/hw/acpi/pcihp.h | 1 + hw/acpi/pcihp.c | 58 + hw/i386/acpi-build.c| 58 - 3 files changed, 59

[PULL 50/97] tests/qtest/bios-tables-test: Prepare for changes in the DSDT table

2025-07-14 Thread Michael S. Tsirkin
.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- tests/qtest/bios-tables-test-allowed-diff.h | 11 +++ 1 file changed, 11 insertions(+) diff --git a/tests/qtest/bios-tables-test-allowed-diff.h b/tests/qtest/bios-tables-test-allowed-diff.h index dfb8

[PULL 33/97] intel_iommu: Declare supported PASID size

2025-07-14 Thread Michael S. Tsirkin
com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/i386/intel_iommu_internal.h | 1 + hw/i386/intel_iommu.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/hw/i386/intel_iommu_internal.h b/hw/i386/intel_iommu_internal.h index e8b2

[PULL 24/97] amd_iommu: Fix truncation of oldval in amdvi_writeq

2025-07-14 Thread Michael S. Tsirkin
: d29a09ca6842 ("hw/i386: Introduce AMD IOMMU") Signed-off-by: Ethan Milon Message-Id: <20250617150427.20585-9-alejandro.j.jime...@oracle.com> Reviewed-by: Vasant Hegde Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/i386/amd_iommu.c | 2 +- 1 file chan

[PULL 18/97] amd_iommu: Fix Device ID decoding for INVALIDATE_IOTLB_PAGES command

2025-07-14 Thread Michael S. Tsirkin
IOMMU") Signed-off-by: Alejandro Jimenez Reviewed-by: Vasant Hegde Message-Id: <20250617150427.20585-3-alejandro.j.jime...@oracle.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/i386/amd_iommu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff

[PULL 87/97] hw/cxl: fix DC extent capacity tracking

2025-07-14 Thread Michael S. Tsirkin
ot;total_extent_count" to include both accepted and pending extents counting. Signed-off-by: Fan Ni Signed-off-by: Jonathan Cameron Message-Id: <20250714174509.1984430-2-jonathan.came...@huawei.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/hw/c

[PULL 40/97] qemu/target-info: Factor target_arch() out

2025-07-14 Thread Michael S. Tsirkin
lt;20250708215320.70426-3-phi...@linaro.org> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/qemu/target-info-qapi.h | 21 + include/qemu/target-info.h | 2 +- hw/core/machine-qmp-cmds.c | 8 +++- target-info.c | 8

[PULL 08/97] softmmu/runstate: add a way to detect force shutdowns

2025-07-14 Thread Michael S. Tsirkin
bypass the guest entirely and are equivalent to pulling the power plug. Signed-off-by: Daniil Tatianin Message-Id: <20250609212547.2859224-2-d-tatia...@yandex-team.ru> Reviewed-by: Vladimir Sementsov-Ogievskiy Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- i

[PULL 16/97] hw/acpi: Fix GPtrArray memory leak in crs_range_merge

2025-07-14 Thread Michael S. Tsirkin
10.111204-1-lizhij...@fujitsu.com> Reviewed-by: Daniel P. Berrangé Reviewed-by: Ani Sinha Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/acpi/aml-build.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hw/acpi/aml-build.c b/hw/acpi/aml

[PULL 70/97] hw/acpi/ged: Add a bus link property

2025-07-14 Thread Michael S. Tsirkin
wed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/acpi/generic_event_device.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hw/acpi/generic_event_device.c b/hw/acpi/generic_event_device.c index 7831db412b..ef1c1ec51f 100644 --- a/hw/acpi/generic_event_device.c +++ b/h

[PULL 61/97] hw/i386/acpi-build: Use AcpiPciHpState::root in acpi_set_pci_info

2025-07-14 Thread Michael S. Tsirkin
Mammedov Reviewed-by: Jonathan Cameron Message-Id: <20250714080639.2525563-16-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/acpi/pcihp.c | 11 --- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/hw/acpi/pcihp.c b/h

[PULL 94/97] hw/cxl: mailbox-utils: 0x5603 - FMAPI Get DC Region Extent Lists

2025-07-14 Thread Michael S. Tsirkin
com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/cxl/cxl-mailbox-utils.c | 76 ++ 1 file changed, 76 insertions(+) diff --git a/hw/cxl/cxl-mailbox-utils.c b/hw/cxl/cxl-mailbox-utils.c index b4a0f7d664..4b0fdbbdd8 100644 --- a/

[PULL 75/97] hw/acpi/ged: Support migration of AcpiPciHpState

2025-07-14 Thread Michael S. Tsirkin
From: Eric Auger Add a subsection to migrate the AcpiPciHpState state. Signed-off-by: Eric Auger Reviewed-by: Igor Mammedov Reviewed-by: Jonathan Cameron Reviewed-by: Prasad Pandit Message-Id: <20250714080639.2525563-30-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-

[PULL 39/97] target/qmp: Use target_cpu_type()

2025-07-14 Thread Michael S. Tsirkin
From: Philippe Mathieu-Daudé Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Reviewed-by: Pierrick Bouvier Message-Id: <20250708215320.70426-2-phi...@linaro.org> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- target/arm/arm-qmp-

[PULL 51/97] hw/pci-host/gpex-acpi: Split host bridge OSC and DSM generation

2025-07-14 Thread Michael S. Tsirkin
ty to move SUPP and CTRL in the _osc method that use them. Signed-off-by: Eric Auger Reviewed-by: Jonathan Cameron Reviewed-by: Igor Mammedov Message-Id: <20250714080639.2525563-6-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/pci-host/

[PULL 32/97] intel_iommu: Fill the PASID field when creating an IOMMUTLBEntry

2025-07-14 Thread Michael S. Tsirkin
hael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/i386/intel_iommu.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hw/i386/intel_iommu.c b/hw/i386/intel_iommu.c index 69d72ad35c..0fb4350d48 100644 --- a/hw/i386/intel_iommu.c +++ b/hw/i386/intel_iommu.c @@ -2503,6 +2503,7 @@ stati

[PULL 14/97] tests/acpi: Fill acpi table data for LoongArch

2025-07-14 Thread Michael S. Tsirkin
From: Bibo Mao The acpi table data is filled for LoongArch virt machine with the following command: tests/data/acpi/rebuild-expected-aml.sh Signed-off-by: Bibo Mao Message-Id: <20250612090321.3416594-5-maob...@loongson.cn> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. T

[PULL 21/97] amd_iommu: Fix mask to retrieve Interrupt Table Root Pointer from DTE

2025-07-14 Thread Michael S. Tsirkin
Message-Id: <20250617150427.20585-6-alejandro.j.jime...@oracle.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/i386/amd_iommu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/i386/amd_iommu.h b/hw/i386/amd_iommu.h index 988a485f80..96fc5b621e 1006

[PULL 69/97] hw/arm/virt-acpi-build: Modify the DSDT ACPI table to enable ACPI PCI hotplug

2025-07-14 Thread Michael S. Tsirkin
From: Eric Auger Modify the DSDT ACPI table to enable ACPI PCI hotplug. Signed-off-by: Eric Auger Reviewed-by: Jonathan Cameron Reviewed-by: Igor Mammedov Message-Id: <20250714080639.2525563-24-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. T

[PULL 35/97] intel_iommu: Implement the PCIIOMMUOps callbacks related to invalidations of device-IOTLB

2025-07-14 Thread Michael S. Tsirkin
From: CLEMENT MATHIEU--DRIF Signed-off-by: Clement Mathieu--Drif Message-Id: <20250628180226.133285-8-clement.mathieu--d...@eviden.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/i386/intel_iommu.c | 35 +++ 1 file chang

[PULL 31/97] memory: Allow to store the PASID in IOMMUTLBEntry

2025-07-14 Thread Michael S. Tsirkin
From: CLEMENT MATHIEU--DRIF This will be useful for devices that support ATS and need to store entries in an ATC (device IOTLB). Signed-off-by: Clement Mathieu--Drif Message-Id: <20250628180226.133285-4-clement.mathieu--d...@eviden.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Mic

[PULL 53/97] hw/pci-host/gpex-acpi: Use GED acpi pcihp property

2025-07-14 Thread Michael S. Tsirkin
: <20250714080639.2525563-8-eric.au...@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/hw/pci-host/gpex.h | 1 + hw/arm/virt-acpi-build.c | 9 + hw/pci-host/gpex-acpi.c| 3 ++- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/include/hw/pc

[PULL 25/97] acpi: Add machine option to disable SPCR table

2025-07-14 Thread Michael S. Tsirkin
est's ACPI namespace, ensuring that only consoles explicitly declared in the kernel command line are registered. Signed-off-by: Li Chen Reviewed-by: Bibo Mao Acked-by: Michael S. Tsirkin Reviewed-by: Gavin Shan Reviewed-by: Sunil V L Message-Id: <20250528105404.457729-2-me@linux.beauty>

[PULL 44/97] gdbstub/helpers: Replace TARGET_BIG_ENDIAN -> target_big_endian()

2025-07-14 Thread Michael S. Tsirkin
eu-Daudé Message-Id: <20250708215320.70426-7-phi...@linaro.org> Reviewed-by: Manos Pitsidianakis Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- include/gdbstub/helpers.h | 48 +++ 1 file changed, 29 insertions(+), 19 deletions(-) di

  1   2   3   4   5   6   7   8   9   10   >