diff options
author | Pierrick Bouvier <pierrick.bouvier@linaro.org> | 2025-07-25 13:17:28 -0700 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-07-29 13:56:39 +0200 |
commit | b496a392fec656d8e7af81c496efa3d45fd59023 (patch) | |
tree | 5dcffacc5481eab2cdc1315fbbadf9354913a2d4 | |
parent | 962316a6a339367e187b4728ef131ec6e635f364 (diff) | |
download | qemu-b496a392fec656d8e7af81c496efa3d45fd59023.zip qemu-b496a392fec656d8e7af81c496efa3d45fd59023.tar.gz qemu-b496a392fec656d8e7af81c496efa3d45fd59023.tar.bz2 |
migration: rename target.c to vfio.c
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Acked-by: Fabiano Rosas <farosas@suse.de>
Reviewed-by: Peter Xu <peterx@redhat.com>
Message-ID: <20250725201729.17100-3-pierrick.bouvier@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
-rw-r--r-- | migration/meson.build | 2 | ||||
-rw-r--r-- | migration/vfio.c (renamed from migration/target.c) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/migration/meson.build b/migration/meson.build index 9aa48b2..276da3b 100644 --- a/migration/meson.build +++ b/migration/meson.build @@ -51,4 +51,4 @@ system_ss.add(when: qatzip, if_true: files('multifd-qatzip.c')) specific_ss.add(when: 'CONFIG_SYSTEM_ONLY', if_true: files('ram.c', - 'target.c')) + 'vfio.c')) diff --git a/migration/target.c b/migration/vfio.c index 12fd399..0b64e49 100644 --- a/migration/target.c +++ b/migration/vfio.c @@ -1,5 +1,5 @@ /* - * QEMU live migration - functions that need to be compiled target-specific + * QEMU live migration - VFIO * * This work is licensed under the terms of the GNU GPL, version 2 * or (at your option) any later version. |