Skip to content

Commit

Permalink
migration: Export send_queued_data()
Browse files Browse the repository at this point in the history
This function is only used for compression.  So we rename it as
compress_send_queued_data().  We put it on ram-compress.h because we
are moving it later to ram-compress.c.

Reviewed-by: Fabiano Rosas <farosas@suse.de>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Message-ID: <20231019110724.15324-9-quintela@redhat.com>
  • Loading branch information
Juan Quintela committed Oct 24, 2023
1 parent 147b2d2 commit 089fa2a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions migration/ram-compress.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,6 @@ void populate_compress(MigrationInfo *info);
uint64_t ram_compressed_pages(void);
void update_compress_thread_counts(const CompressParam *param, int bytes_xmit);
void compress_update_rates(uint64_t page_count);
int compress_send_queued_data(CompressParam *param);

#endif
6 changes: 3 additions & 3 deletions migration/ram.c
Original file line number Diff line number Diff line change
Expand Up @@ -1264,7 +1264,7 @@ static int ram_save_multifd_page(QEMUFile *file, RAMBlock *block,
return 1;
}

static int send_queued_data(CompressParam *param)
int compress_send_queued_data(CompressParam *param)
{
PageSearchStatus *pss = &ram_state->pss[RAM_CHANNEL_PRECOPY];
MigrationState *ms = migrate_get_current();
Expand Down Expand Up @@ -1306,7 +1306,7 @@ static void ram_flush_compressed_data(void)
return;
}

flush_compressed_data(send_queued_data);
flush_compressed_data(compress_send_queued_data);
}

#define PAGE_ALL_CLEAN 0
Expand Down Expand Up @@ -2041,7 +2041,7 @@ static bool save_compress_page(RAMState *rs, PageSearchStatus *pss,
}

return compress_page_with_multi_thread(pss->block, offset,
send_queued_data);
compress_send_queued_data);
}

/**
Expand Down

0 comments on commit 089fa2a

Please sign in to comment.