diff options
| author | Fabiano Rosas <farosas@suse.de> | 2024-01-04 11:21:38 -0300 |
|---|---|---|
| committer | Peter Xu <peterx@redhat.com> | 2024-01-16 11:16:09 +0800 |
| commit | dca1bc7f24d2fa227f0b787f85f3cc67006e67bf (patch) | |
| tree | cf202aaa9e11c0ea8949e5ad8997175a3e99bd52 /migration/multifd.c | |
| parent | 0770ad438d95f4b9636a99b522b6e5e6af724578 (diff) | |
| download | focaccia-qemu-dca1bc7f24d2fa227f0b787f85f3cc67006e67bf.tar.gz focaccia-qemu-dca1bc7f24d2fa227f0b787f85f3cc67006e67bf.zip | |
migration/multifd: Remove MultiFDPages_t::packet_num
This was introduced by commit 34c55a94b1 ("migration: Create multipage
support") and never used.
Signed-off-by: Fabiano Rosas <farosas@suse.de>
Reviewed-by: Peter Xu <peterx@redhat.com>
Link: https://lore.kernel.org/r/20240104142144.9680-2-farosas@suse.de
Signed-off-by: Peter Xu <peterx@redhat.com>
Diffstat (limited to 'migration/multifd.c')
| -rw-r--r-- | migration/multifd.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/migration/multifd.c b/migration/multifd.c index 9f353aecfa..3e650f5da0 100644 --- a/migration/multifd.c +++ b/migration/multifd.c @@ -250,7 +250,6 @@ static void multifd_pages_clear(MultiFDPages_t *pages) { pages->num = 0; pages->allocated = 0; - pages->packet_num = 0; pages->block = NULL; g_free(pages->offset); pages->offset = NULL; |