From: Mark Cave-Ayland Date: Thu, 25 Sep 2025 11:31:13 +0000 (+0100) Subject: hw/vfio/container.c: rename file to container-legacy.c X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a3bcae62b6a161dea4521f254f19c5a8551c28af;p=thirdparty%2Fqemu.git hw/vfio/container.c: rename file to container-legacy.c This file is mostly concerned with the VFIOLegacyContainer implementation so rename it to reflect the previous rename of VFIOContainer to VFIOLegacyContainer. Signed-off-by: Mark Cave-Ayland Reviewed-by: Cédric Le Goater Link: https://lore.kernel.org/qemu-devel/20250925113159.1760317-6-mark.caveayland@nutanix.com Signed-off-by: Cédric Le Goater --- diff --git a/hw/vfio/container.c b/hw/vfio/container-legacy.c similarity index 100% rename from hw/vfio/container.c rename to hw/vfio/container-legacy.c diff --git a/hw/vfio/meson.build b/hw/vfio/meson.build index d3ed3cb7ac1..62b7a7eaaca 100644 --- a/hw/vfio/meson.build +++ b/hw/vfio/meson.build @@ -4,7 +4,7 @@ vfio_ss = ss.source_set() vfio_ss.add(files( 'listener.c', 'container-base.c', - 'container.c', + 'container-legacy.c', 'helpers.c', )) vfio_ss.add(when: 'CONFIG_PSERIES', if_true: files('spapr.c'))