multifd: Change default packet size

We moved from 64KB to 512KB, as it makes less locking contention
without any downside in testing.

Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
Juan Quintela 2019-02-20 12:45:57 +01:00
parent 7ed379b286
commit 4b0c72645c
1 changed files with 1 additions and 1 deletions

View File

@ -584,7 +584,7 @@ exit:
#define MULTIFD_FLAG_SYNC (1 << 0)
/* This value needs to be a multiple of qemu_target_page_size() */
#define MULTIFD_PACKET_SIZE (64 * 1024)
#define MULTIFD_PACKET_SIZE (512 * 1024)
typedef struct {
uint32_t magic;