[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: |
Fabiano Rosas |
|
Subject: |
Re: [PATCH v6 18/19] migration/multifd: Stop changing the packet on recv side |
|
Date: |
Tue, 27 Aug 2024 16:27:42 -0300 |
Peter Xu <peterx@redhat.com> writes:
> On Tue, Aug 27, 2024 at 03:45:11PM -0300, Fabiano Rosas wrote:
>> Peter Xu <peterx@redhat.com> writes:
>>
>> > 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.
>>
>> We can't because it breaks compat. Previous QEMUs didn't zero the
>> packet.
>
> Ouch!
>
> Then.. shall we still try to avoid the allocation?
Can I strcpy it to the stack?
char idstr[256];
strncpy(&idstr, packet->ramblock, 256);
idstr[255] = 0;
- [PATCH v6 13/19] migration/multifd: Allow multifd sync without flush, (continued)
- [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
[PATCH v6 19/19] migration/multifd: Add documentation for multifd methods, Fabiano Rosas, 2024/08/27
- Re: [PATCH v6 19/19] migration/multifd: Add documentation for multifd methods, Peter Xu, 2024/08/27
- Re: [PATCH v6 19/19] migration/multifd: Add documentation for multifd methods, Fabiano Rosas, 2024/08/27
- Re: [PATCH v6 19/19] migration/multifd: Add documentation for multifd methods, Peter Xu, 2024/08/27
- Re: [PATCH v6 19/19] migration/multifd: Add documentation for multifd methods, Fabiano Rosas, 2024/08/27
- Re: [PATCH v6 19/19] migration/multifd: Add documentation for multifd methods, Peter Xu, 2024/08/27
- Re: [PATCH v6 19/19] migration/multifd: Add documentation for multifd methods, Fabiano Rosas, 2024/08/27
- Re: [PATCH v6 19/19] migration/multifd: Add documentation for multifd methods, Peter Xu, 2024/08/27
- Re: [PATCH v6 19/19] migration/multifd: Add documentation for multifd methods, Fabiano Rosas, 2024/08/28