|
|
719b13 |
From a451644d96f572f5845d3ee523e54486da55d9ae Mon Sep 17 00:00:00 2001
|
|
|
719b13 |
From: Juan Quintela <quintela@redhat.com>
|
|
|
719b13 |
Date: Wed, 18 May 2022 02:52:24 -0300
|
|
|
719b13 |
Subject: [PATCH 13/34] multifd: Make zstd use iov's
|
|
|
719b13 |
MIME-Version: 1.0
|
|
|
719b13 |
Content-Type: text/plain; charset=UTF-8
|
|
|
719b13 |
Content-Transfer-Encoding: 8bit
|
|
|
719b13 |
|
|
|
719b13 |
RH-Author: Leonardo BrĂ¡s <leobras@redhat.com>
|
|
|
719b13 |
RH-MergeRequest: 185: MSG_ZEROCOPY + Multifd @ rhel8.6
|
|
|
719b13 |
RH-Commit: [13/34] 37929ac695c7bdfe6e2f798d4f5e43a5e7525acb
|
|
|
719b13 |
RH-Bugzilla: 2117252
|
|
|
719b13 |
RH-Acked-by: quintela1 <quintela@redhat.com>
|
|
|
719b13 |
RH-Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
|
719b13 |
RH-Acked-by: Peter Xu <peterx@redhat.com>
|
|
|
719b13 |
|
|
|
719b13 |
Signed-off-by: Juan Quintela <quintela@redhat.com>
|
|
|
719b13 |
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
|
719b13 |
(cherry picked from commit 0a818b89eb8eaf79ae651405907d8110a0935cfd)
|
|
|
719b13 |
Signed-off-by: Leonardo Bras <leobras@redhat.com>
|
|
|
719b13 |
---
|
|
|
719b13 |
migration/multifd-zstd.c | 8 ++++----
|
|
|
719b13 |
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
719b13 |
|
|
|
719b13 |
diff --git a/migration/multifd-zstd.c b/migration/multifd-zstd.c
|
|
|
719b13 |
index 2185a83eac..4e60cdbc54 100644
|
|
|
719b13 |
--- a/migration/multifd-zstd.c
|
|
|
719b13 |
+++ b/migration/multifd-zstd.c
|
|
|
719b13 |
@@ -156,6 +156,9 @@ static int zstd_send_prepare(MultiFDSendParams *p, Error **errp)
|
|
|
719b13 |
return -1;
|
|
|
719b13 |
}
|
|
|
719b13 |
}
|
|
|
719b13 |
+ p->iov[p->iovs_num].iov_base = z->zbuff;
|
|
|
719b13 |
+ p->iov[p->iovs_num].iov_len = z->out.pos;
|
|
|
719b13 |
+ p->iovs_num++;
|
|
|
719b13 |
p->next_packet_size = z->out.pos;
|
|
|
719b13 |
p->flags |= MULTIFD_FLAG_ZSTD;
|
|
|
719b13 |
|
|
|
719b13 |
@@ -175,10 +178,7 @@ static int zstd_send_prepare(MultiFDSendParams *p, Error **errp)
|
|
|
719b13 |
*/
|
|
|
719b13 |
static int zstd_send_write(MultiFDSendParams *p, uint32_t used, Error **errp)
|
|
|
719b13 |
{
|
|
|
719b13 |
- struct zstd_data *z = p->data;
|
|
|
719b13 |
-
|
|
|
719b13 |
- return qio_channel_write_all(p->c, (void *)z->zbuff, p->next_packet_size,
|
|
|
719b13 |
- errp);
|
|
|
719b13 |
+ return qio_channel_writev_all(p->c, p->iov, p->iovs_num, errp);
|
|
|
719b13 |
}
|
|
|
719b13 |
|
|
|
719b13 |
/**
|
|
|
719b13 |
--
|
|
|
719b13 |
2.35.3
|
|
|
719b13 |
|