mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
multifd: Use proper maximum compression values
It happens that there are functions to calculate the worst possible compression size for a packet. Use them. Suggested-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
47fe16ff66
commit
fc6705229c
2 changed files with 4 additions and 4 deletions
|
@ -54,8 +54,8 @@ static int zlib_send_setup(MultiFDSendParams *p, Error **errp)
|
||||||
error_setg(errp, "multifd %u: deflate init failed", p->id);
|
error_setg(errp, "multifd %u: deflate init failed", p->id);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
/* To be safe, we reserve twice the size of the packet */
|
/* This is the maxium size of the compressed buffer */
|
||||||
z->zbuff_len = MULTIFD_PACKET_SIZE * 2;
|
z->zbuff_len = compressBound(MULTIFD_PACKET_SIZE);
|
||||||
z->zbuff = g_try_malloc(z->zbuff_len);
|
z->zbuff = g_try_malloc(z->zbuff_len);
|
||||||
if (!z->zbuff) {
|
if (!z->zbuff) {
|
||||||
deflateEnd(&z->zs);
|
deflateEnd(&z->zs);
|
||||||
|
|
|
@ -67,8 +67,8 @@ static int zstd_send_setup(MultiFDSendParams *p, Error **errp)
|
||||||
p->id, ZSTD_getErrorName(res));
|
p->id, ZSTD_getErrorName(res));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
/* To be safe, we reserve twice the size of the packet */
|
/* This is the maxium size of the compressed buffer */
|
||||||
z->zbuff_len = MULTIFD_PACKET_SIZE * 2;
|
z->zbuff_len = ZSTD_compressBound(MULTIFD_PACKET_SIZE);
|
||||||
z->zbuff = g_try_malloc(z->zbuff_len);
|
z->zbuff = g_try_malloc(z->zbuff_len);
|
||||||
if (!z->zbuff) {
|
if (!z->zbuff) {
|
||||||
ZSTD_freeCStream(z->zcs);
|
ZSTD_freeCStream(z->zcs);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue