From: Mark Cave-Ayland Date: Thu, 25 Sep 2025 11:31:14 +0000 (+0100) Subject: hw/vfio/container-base.c: rename file to container.c X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dcce51b19385ea65ac6db295204716a9eb311fbf;p=thirdparty%2Fqemu.git hw/vfio/container-base.c: rename file to container.c Rename the file to reflect the previous rename of VFIOContainerBase to VFIOContainer. Signed-off-by: Mark Cave-Ayland Reviewed-by: Cédric Le Goater Link: https://lore.kernel.org/qemu-devel/20250925113159.1760317-7-mark.caveayland@nutanix.com Signed-off-by: Cédric Le Goater --- diff --git a/hw/vfio/container-base.c b/hw/vfio/container.c similarity index 100% rename from hw/vfio/container-base.c rename to hw/vfio/container.c diff --git a/hw/vfio/meson.build b/hw/vfio/meson.build index 62b7a7eaaca..82f68698fb8 100644 --- a/hw/vfio/meson.build +++ b/hw/vfio/meson.build @@ -3,7 +3,7 @@ vfio_ss = ss.source_set() vfio_ss.add(files( 'listener.c', - 'container-base.c', + 'container.c', 'container-legacy.c', 'helpers.c', ))