From 4b0c72645c468827dbdf04594fcb274741fecbb1 Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Wed, 20 Feb 2019 12:45:57 +0100 Subject: 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 Reviewed-by: Dr. David Alan Gilbert Signed-off-by: Juan Quintela --- migration/ram.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migration/ram.c b/migration/ram.c index 77c1878292..700c345ec5 100644 --- a/migration/ram.c +++ b/migration/ram.c @@ -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; -- cgit v1.2.3