- Add DMABUF support [VOYAGER-19 VOYAGER-53] - Accelerated SMMU device for GH GPU passthrough [VOYAGER-5 VOYAGER-16 VOYAGER-17 VOYAGER-48] - Resolves: VOYAGER-5 (Backport CMDQV support) - Resolves: VOYAGER-16 (Backport HW accelerated nesting support for arm SMMUv3) - Resolves: VOYAGER-17 (Backport vEVENTQ support for smmuv3) - Resolves: VOYAGER-19 (Backport vfio: Add DMABUF support for PCI BAR regions - qemu-kvm) - Resolves: VOYAGER-48 (qemu-kvm coredump when using traditional smmuv3 device without any GPU device) - Resolves: VOYAGER-53 (qemu-kvm coredump when hotunplug NIC VF interface without smmuv3)
44 lines
1.5 KiB
Diff
44 lines
1.5 KiB
Diff
From a688474867f8634d085cfbf524719244265a5e6f Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?C=C3=A9dric=20Le=20Goater?= <clg@redhat.com>
|
|
Date: Mon, 1 Sep 2025 08:46:24 +0200
|
|
Subject: [PATCH] hw/arm/virt: Include 'system/system.h'
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
RH-Author: Cédric Le Goater <clg@redhat.com>
|
|
RH-MergeRequest: 458: Add DMABUF support
|
|
RH-Jira: VOYAGER-19 VOYAGER-53
|
|
RH-Acked-by: Eric Auger <eric.auger@redhat.com>
|
|
RH-Commit: [1/101] a6ba6f76fb (clegoate/qemu-kvm-centos)
|
|
|
|
hw/arm/virt.c should include 'system/system.h' for :
|
|
|
|
serial_hd()
|
|
qemu_add_machine_init_done_notifier()
|
|
|
|
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
|
|
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
|
|
Link: https://lore.kernel.org/qemu-devel/20250731144019.1403591-1-clg@redhat.com
|
|
Signed-off-by: Cédric Le Goater <clg@redhat.com>
|
|
Message-ID: <20250901064631.530723-2-clg@redhat.com>
|
|
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
|
|
(cherry picked from commit 319ca84949fc3134774342d50790592680c3b9b0)
|
|
Signed-off-by: Eric Auger <eric.auger@redhat.com>
|
|
---
|
|
hw/arm/virt.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/hw/arm/virt.c b/hw/arm/virt.c
|
|
index 09faaeec4c..545b5076fd 100644
|
|
--- a/hw/arm/virt.c
|
|
+++ b/hw/arm/virt.c
|
|
@@ -49,6 +49,7 @@
|
|
#include "system/kvm.h"
|
|
#include "system/hvf.h"
|
|
#include "system/qtest.h"
|
|
+#include "system/system.h"
|
|
#include "hw/loader.h"
|
|
#include "qapi/error.h"
|
|
#include "qemu/bitops.h"
|