From: Juan Quintela Date: Mon, 28 Nov 2022 03:44:53 +0000 (+0100) Subject: multifd: We already account for this packet on the multifd thread X-Git-Tag: v8.1.0-rc0~147^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e232199aad7f744e696e6b8c57aecbacfb988554;p=thirdparty%2Fqemu.git multifd: We already account for this packet on the multifd thread Signed-off-by: Juan Quintela Reviewed-by: Lukas Straub --- diff --git a/migration/multifd.c b/migration/multifd.c index 6a59c03dd25..6053012ad95 100644 --- a/migration/multifd.c +++ b/migration/multifd.c @@ -626,10 +626,7 @@ int multifd_send_sync_main(QEMUFile *f) p->packet_num = multifd_send_state->packet_num++; p->flags |= MULTIFD_FLAG_SYNC; p->pending_job++; - qemu_file_acct_rate_limit(f, p->packet_len); qemu_mutex_unlock(&p->mutex); - stat64_add(&ram_counters.transferred, p->packet_len); - stat64_add(&ram_counters.multifd_bytes, p->packet_len); qemu_sem_post(&p->sem); } for (i = 0; i < migrate_multifd_channels(); i++) {