mirror of
https://github.com/mii443/qemu.git
synced 2025-08-30 19:09:35 +00:00
Rename mis->file to from_src_file
'file' becomes confusing when you have flows in each direction; rename to make it clear. This leaves just the main forward direction ms->file, which is used in a lot of places and is probably not worth renaming given the churn. Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
committed by
Juan Quintela
parent
e3dd74934f
commit
42e2aa5637
@ -95,7 +95,7 @@ MigrationIncomingState *migration_incoming_get_current(void)
|
||||
MigrationIncomingState *migration_incoming_state_new(QEMUFile* f)
|
||||
{
|
||||
mis_current = g_new0(MigrationIncomingState, 1);
|
||||
mis_current->file = f;
|
||||
mis_current->from_src_file = f;
|
||||
QLIST_INIT(&mis_current->loadvm_handlers);
|
||||
|
||||
return mis_current;
|
||||
|
Reference in New Issue
Block a user