Re: [Qemu-devel] [PATCH 2/3] acpi: fix DMAR device scope for IOAPIC

2016-10-31 Thread Igor Mammedov
On Mon, 31 Oct 2016 15:34:39 +0800 Peter Xu wrote: > We should not use cpu_to_le16() here, instead each of device/function > value is stored in a 8 byte field. > > Signed-off-by: Peter Xu it better matches spec and the same as linux kernel handles 'path' so Reviewed-by: Igor Mammedov > --- >

[Qemu-devel] [PATCH 2/3] acpi: fix DMAR device scope for IOAPIC

2016-10-31 Thread Peter Xu
We should not use cpu_to_le16() here, instead each of device/function value is stored in a 8 byte field. Signed-off-by: Peter Xu --- hw/i386/acpi-build.c| 3 ++- include/hw/acpi/acpi-defs.h | 5 - 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/hw/i386/acpi-build.c b/h