Re: [PATCH v4 15/16] migration/multifd: Register nocomp ops dynamically

2024-08-26 Thread Peter Xu
On Fri, Aug 23, 2024 at 02:39:10PM -0300, Fabiano Rosas wrote: > Prior to moving the ram code into multifd-nocomp.c, change the code to > register the nocomp ops dynamically so we don't need to have the ops > structure defined in multifd.c. > > While here, move the ops struct initialization to the

Re: [PATCH v4 15/16] migration/multifd: Register nocomp ops dynamically

2024-08-26 Thread Prasad Pandit
On Fri, 23 Aug 2024 at 23:12, Fabiano Rosas wrote: > Prior to moving the ram code into multifd-nocomp.c, change the code to > register the nocomp ops dynamically so we don't need to have the ops > structure defined in multifd.c. > > While here, move the ops struct initialization to the end of the

Re: [PATCH v4 15/16] migration/multifd: Register nocomp ops dynamically

2024-08-25 Thread Philippe Mathieu-Daudé
On 23/8/24 19:39, Fabiano Rosas wrote: Prior to moving the ram code into multifd-nocomp.c, change the code to register the nocomp ops dynamically so we don't need to have the ops structure defined in multifd.c. While here, move the ops struct initialization to the end of the file to make the nex

[PATCH v4 15/16] migration/multifd: Register nocomp ops dynamically

2024-08-23 Thread Fabiano Rosas
Prior to moving the ram code into multifd-nocomp.c, change the code to register the nocomp ops dynamically so we don't need to have the ops structure defined in multifd.c. While here, move the ops struct initialization to the end of the file to make the next diff cleaner. Signed-off-by: Fabiano R