Re: [PATCH v3 11/13] migration/rdma: Use i as for index instead of idx

2023-10-13 Thread Zhijian Li (Fujitsu)
On 12/10/2023 04:35, Juan Quintela wrote: > Once there, all the uses are local to the for, so declare the variable > inside the for statement. > > Signed-off-by: Juan Quintela Reviewed-by: Li Zhijian > --- > migration/rdma.c | 49 ++-- > 1 file

Re: [PATCH v3 11/13] migration/rdma: Use i as for index instead of idx

2023-10-12 Thread Fabiano Rosas
Juan Quintela writes: > Once there, all the uses are local to the for, so declare the variable > inside the for statement. > > Signed-off-by: Juan Quintela Reviewed-by: Fabiano Rosas

[PATCH v3 11/13] migration/rdma: Use i as for index instead of idx

2023-10-11 Thread Juan Quintela
Once there, all the uses are local to the for, so declare the variable inside the for statement. Signed-off-by: Juan Quintela --- migration/rdma.c | 49 ++-- 1 file changed, 22 insertions(+), 27 deletions(-) diff --git a/migration/rdma.c