[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v6 18/19] migration/multifd: Stop changing the packet on recv
|
From: |
Peter Xu |
|
Subject: |
Re: [PATCH v6 18/19] migration/multifd: Stop changing the packet on recv side |
|
Date: |
Tue, 27 Aug 2024 14:07:44 -0400 |
On Tue, Aug 27, 2024 at 02:46:05PM -0300, Fabiano Rosas wrote:
> @@ -254,12 +250,10 @@ int multifd_ram_unfill_packet(MultiFDRecvParams *p,
> Error **errp)
> return 0;
> }
>
> - /* make sure that ramblock is 0 terminated */
> - packet->ramblock[255] = 0;
> - p->block = qemu_ram_block_by_name(packet->ramblock);
> + ramblock_name = g_strndup(packet->ramblock, 255);
I understand we want to move to a const*, however this introduces a 256B
allocation per multifd packet, which we definitely want to avoid.. I wonder
whether that's worthwhile just to make it const. :-(
I don't worry too much on the const* and vars pointed being abused /
updated when without it - the packet struct is pretty much limited only to
be referenced in this unfill function, and then we will do the load based
on MultiFDRecvParams* later anyway. So personally I'd rather lose the
const* v.s. one allocation.
Or we could also sanity check byte 255 to be '\0' (which, AFAIU, should
always be the case..), then we can get both benefits.
> + p->block = qemu_ram_block_by_name(ramblock_name);
> if (!p->block) {
> - error_setg(errp, "multifd: unknown ram block %s",
> - packet->ramblock);
> + error_setg(errp, "multifd: unknown ram block %s", ramblock_name);
> return -1;
> }
--
Peter Xu
- [PATCH v6 09/19] migration/multifd: Remove total pages tracing, (continued)
- [PATCH v6 09/19] migration/multifd: Remove total pages tracing, Fabiano Rosas, 2024/08/27
- [PATCH v6 10/19] migration/multifd: Isolate ram pages packet data, Fabiano Rosas, 2024/08/27
- [PATCH v6 11/19] migration/multifd: Don't send ram data during SYNC, Fabiano Rosas, 2024/08/27
- [PATCH v6 13/19] migration/multifd: Allow multifd sync without flush, Fabiano Rosas, 2024/08/27
- [PATCH v6 12/19] migration/multifd: Replace multifd_send_state->pages with client data, Fabiano Rosas, 2024/08/27
- [PATCH v6 15/19] migration/multifd: Register nocomp ops dynamically, Fabiano Rosas, 2024/08/27
- [PATCH v6 14/19] migration/multifd: Standardize on multifd ops names, Fabiano Rosas, 2024/08/27
- [PATCH v6 17/19] migration/multifd: Make MultiFDMethods const, Fabiano Rosas, 2024/08/27
- [PATCH v6 16/19] migration/multifd: Move nocomp code into multifd-nocomp.c, Fabiano Rosas, 2024/08/27
- [PATCH v6 18/19] migration/multifd: Stop changing the packet on recv side, Fabiano Rosas, 2024/08/27
- Re: [PATCH v6 18/19] migration/multifd: Stop changing the packet on recv side,
Peter Xu <=
[PATCH v6 19/19] migration/multifd: Add documentation for multifd methods, Fabiano Rosas, 2024/08/27