[PATCH for-10.1 22/32] vfio: Move vfio_device_list into device.c

Cédric Le Goater posted 32 patches 2 weeks, 2 days ago
There is a newer version of this series
[PATCH for-10.1 22/32] vfio: Move vfio_device_list into device.c
Posted by Cédric Le Goater 2 weeks, 2 days ago
'vfio_device_list' is VFIODevice related. Move its definitions into
"device.c".

Signed-off-by: Cédric Le Goater <clg@redhat.com>
---
 hw/vfio/common.c | 3 ---
 hw/vfio/device.c | 3 +++
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/hw/vfio/common.c b/hw/vfio/common.c
index 52f440c0d05fa9f781221032442b6118ef898a10..df9585d1a471f893da072068f6056bbc6731d448 100644
--- a/hw/vfio/common.c
+++ b/hw/vfio/common.c
@@ -46,9 +46,6 @@
 #include "migration.h"
 #include "helpers.h"
 
-VFIODeviceList vfio_device_list =
-    QLIST_HEAD_INITIALIZER(vfio_device_list);
-
 /*
  * Device state interfaces
  */
diff --git a/hw/vfio/device.c b/hw/vfio/device.c
index daa5bae59ca9c65ef23aa193d4e63976fcefdde0..2e0ddec942690514e692b2380a909f15ece430f5 100644
--- a/hw/vfio/device.c
+++ b/hw/vfio/device.c
@@ -32,6 +32,9 @@
 #include "monitor/monitor.h"
 #include "helpers.h"
 
+VFIODeviceList vfio_device_list =
+    QLIST_HEAD_INITIALIZER(vfio_device_list);
+
 /*
  * Common VFIO interrupt disable
  */
-- 
2.48.1


Re: [PATCH for-10.1 22/32] vfio: Move vfio_device_list into device.c
Posted by John Levon 2 weeks ago
On Tue, Mar 18, 2025 at 10:54:05AM +0100, Cédric Le Goater wrote:

> 'vfio_device_list' is VFIODevice related. Move its definitions into
> "device.c".
> 
> Signed-off-by: Cédric Le Goater <clg@redhat.com>

Reviewed-by: John Levon <john.levon@nutanix.com>

regards
john