diff options
author | Juan Quintela <quintela@redhat.com> | 2021-11-22 14:10:57 +0100 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2022-01-28 15:38:23 +0100 |
commit | faf60935df64f4225b89c29306e0dc3ed00e1117 (patch) | |
tree | d7a07a65e2014bde5076dee28e2a07a6dc44157d /migration/multifd.h | |
parent | cf2d4aa8a276f8540eef593141b7933487fa32b2 (diff) | |
download | qemu-faf60935df64f4225b89c29306e0dc3ed00e1117.zip qemu-faf60935df64f4225b89c29306e0dc3ed00e1117.tar.gz qemu-faf60935df64f4225b89c29306e0dc3ed00e1117.tar.bz2 |
multifd: recv side only needs the RAMBlock host address
So we can remove the MultiFDPages.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'migration/multifd.h')
-rw-r--r-- | migration/multifd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/migration/multifd.h b/migration/multifd.h index 850889c..be460f8 100644 --- a/migration/multifd.h +++ b/migration/multifd.h @@ -136,8 +136,8 @@ typedef struct { bool running; /* should this thread finish */ bool quit; - /* array of pages to receive */ - MultiFDPages_t *pages; + /* ramblock host address */ + uint8_t *host; /* packet allocated len */ uint32_t packet_len; /* pointer to the packet */ |