mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
multifd: remove used parameter from send_recv_pages() method
It is already there as p->pages->num. Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
02fb81043e
commit
40a4bfe9d3
4 changed files with 11 additions and 14 deletions
|
@ -250,14 +250,13 @@ static void zstd_recv_cleanup(MultiFDRecvParams *p)
|
|||
* Returns 0 for success or -1 for error
|
||||
*
|
||||
* @p: Params for the channel that we are using
|
||||
* @used: number of pages used
|
||||
* @errp: pointer to an error
|
||||
*/
|
||||
static int zstd_recv_pages(MultiFDRecvParams *p, uint32_t used, Error **errp)
|
||||
static int zstd_recv_pages(MultiFDRecvParams *p, Error **errp)
|
||||
{
|
||||
uint32_t in_size = p->next_packet_size;
|
||||
uint32_t out_size = 0;
|
||||
uint32_t expected_size = used * qemu_target_page_size();
|
||||
uint32_t expected_size = p->pages->num * qemu_target_page_size();
|
||||
uint32_t flags = p->flags & MULTIFD_FLAG_COMPRESSION_MASK;
|
||||
struct zstd_data *z = p->data;
|
||||
int ret;
|
||||
|
@ -278,7 +277,7 @@ static int zstd_recv_pages(MultiFDRecvParams *p, uint32_t used, Error **errp)
|
|||
z->in.size = in_size;
|
||||
z->in.pos = 0;
|
||||
|
||||
for (i = 0; i < used; i++) {
|
||||
for (i = 0; i < p->pages->num; i++) {
|
||||
struct iovec *iov = &p->pages->iov[i];
|
||||
|
||||
z->out.dst = iov->iov_base;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue