diff options
| author | Fabiano Rosas <farosas@suse.de> | 2025-02-13 14:59:21 -0300 |
|---|---|---|
| committer | Fabiano Rosas <farosas@suse.de> | 2025-02-14 15:19:05 -0300 |
| commit | 4bbadfc55e6ec608df75911b4360e6e995daa28c (patch) | |
| tree | a5520544e5211cca469a8d7175c92c83d518ea50 /migration/multifd.c | |
| parent | 8444d0938112b7da8d88cc6a7481b9eb33654997 (diff) | |
| download | focaccia-qemu-4bbadfc55e6ec608df75911b4360e6e995daa28c.tar.gz focaccia-qemu-4bbadfc55e6ec608df75911b4360e6e995daa28c.zip | |
migration: Change migrate_fd_ to migration_
Remove all instances of _fd_ from the migration generic code. These functions have grown over time and the _fd_ part is now just confusing. migration_fd_error() -> migration_error() makes it a little vague. Since it's only used for migration_connect() failures, change it to migration_connect_set_error(). Reviewed-by: Peter Xu <peterx@redhat.com> Message-ID: <20250213175927.19642-4-farosas@suse.de> Signed-off-by: Fabiano Rosas <farosas@suse.de>
Diffstat (limited to 'migration/multifd.c')
| -rw-r--r-- | migration/multifd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/multifd.c b/migration/multifd.c index 554035e095..215ad0414a 100644 --- a/migration/multifd.c +++ b/migration/multifd.c @@ -444,7 +444,7 @@ static bool multifd_send_cleanup_channel(MultiFDSendParams *p, Error **errp) * channels have no I/O handler callback registered when reaching * here, because migration thread will wait for all multifd channel * establishments to complete during setup. Since - * migrate_fd_cleanup() will be scheduled in main thread too, all + * migration_cleanup() will be scheduled in main thread too, all * previous callbacks should guarantee to be completed when * reaching here. See multifd_send_state.channels_created and its * usage. In the future, we could replace this with an assert |