[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v3 11/13] migration/rdma: Use i as for index instead of idx
|
From: |
Zhijian Li (Fujitsu) |
|
Subject: |
Re: [PATCH v3 11/13] migration/rdma: Use i as for index instead of idx |
|
Date: |
Fri, 13 Oct 2023 08:13:00 +0000 |
|
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.11.0 |
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 <quintela@redhat.com>
Reviewed-by: Li Zhijian <lizhijian@fujitsu.com>
> ---
> migration/rdma.c | 49 ++++++++++++++++++++++--------------------------
> 1 file changed, 22 insertions(+), 27 deletions(-)
>
> diff --git a/migration/rdma.c b/migration/rdma.c
> index 932d4eda9b..e29e5551d1 100644
> --- a/migration/rdma.c
> +++ b/migration/rdma.c
> @@ -2354,7 +2354,6 @@ static int qemu_rdma_write(RDMAContext *rdma,
> static void qemu_rdma_cleanup(RDMAContext *rdma)
> {
> Error *err = NULL;
> - int idx;
>
> if (rdma->cm_id && rdma->connected) {
> if ((rdma->errored ||
> @@ -2381,12 +2380,12 @@ static void qemu_rdma_cleanup(RDMAContext *rdma)
> g_free(rdma->dest_blocks);
> rdma->dest_blocks = NULL;
>
> - for (idx = 0; idx < RDMA_WRID_MAX; idx++) {
> - if (rdma->wr_data[idx].control_mr) {
> + for (int i = 0; i < RDMA_WRID_MAX; i++) {
> + if (rdma->wr_data[i].control_mr) {
> rdma->total_registrations--;
> - ibv_dereg_mr(rdma->wr_data[idx].control_mr);
> + ibv_dereg_mr(rdma->wr_data[i].control_mr);
> }
> - rdma->wr_data[idx].control_mr = NULL;
> + rdma->wr_data[i].control_mr = NULL;
> }
>
> if (rdma->local_ram_blocks.block) {
> @@ -2452,7 +2451,7 @@ static void qemu_rdma_cleanup(RDMAContext *rdma)
>
> static int qemu_rdma_source_init(RDMAContext *rdma, bool pin_all, Error
> **errp)
> {
> - int ret, idx;
> + int ret;
>
> /*
> * Will be validated against destination's actual capabilities
> @@ -2480,18 +2479,17 @@ static int qemu_rdma_source_init(RDMAContext *rdma,
> bool pin_all, Error **errp)
>
> /* Build the hash that maps from offset to RAMBlock */
> rdma->blockmap = g_hash_table_new(g_direct_hash, g_direct_equal);
> - for (idx = 0; idx < rdma->local_ram_blocks.nb_blocks; idx++) {
> + for (int i = 0; i < rdma->local_ram_blocks.nb_blocks; i++) {
> g_hash_table_insert(rdma->blockmap,
> - (void *)(uintptr_t)rdma->local_ram_blocks.block[idx].offset,
> - &rdma->local_ram_blocks.block[idx]);
> + (void *)(uintptr_t)rdma->local_ram_blocks.block[i].offset,
> + &rdma->local_ram_blocks.block[i]);
> }
>
> - for (idx = 0; idx < RDMA_WRID_MAX; idx++) {
> - ret = qemu_rdma_reg_control(rdma, idx);
> + for (int i = 0; i < RDMA_WRID_MAX; i++) {
> + ret = qemu_rdma_reg_control(rdma, i);
> if (ret < 0) {
> - error_setg(errp,
> - "RDMA ERROR: rdma migration: error registering %d
> control!",
> - idx);
> + error_setg(errp, "RDMA ERROR: rdma migration: error "
> + "registering %d control!", i);
> goto err_rdma_source_init;
> }
> }
> @@ -2625,16 +2623,16 @@ err_rdma_source_connect:
> static int qemu_rdma_dest_init(RDMAContext *rdma, Error **errp)
> {
> Error *err = NULL;
> - int ret, idx;
> + int ret;
> struct rdma_cm_id *listen_id;
> char ip[40] = "unknown";
> struct rdma_addrinfo *res, *e;
> char port_str[16];
> int reuse = 1;
>
> - for (idx = 0; idx < RDMA_WRID_MAX; idx++) {
> - rdma->wr_data[idx].control_len = 0;
> - rdma->wr_data[idx].control_curr = NULL;
> + for (int i = 0; i < RDMA_WRID_MAX; i++) {
> + rdma->wr_data[i].control_len = 0;
> + rdma->wr_data[i].control_curr = NULL;
> }
>
> if (!rdma->host || !rdma->host[0]) {
> @@ -2723,11 +2721,9 @@ err_dest_init_create_listen_id:
> static void qemu_rdma_return_path_dest_init(RDMAContext *rdma_return_path,
> RDMAContext *rdma)
> {
> - int idx;
> -
> - for (idx = 0; idx < RDMA_WRID_MAX; idx++) {
> - rdma_return_path->wr_data[idx].control_len = 0;
> - rdma_return_path->wr_data[idx].control_curr = NULL;
> + for (int i = 0; i < RDMA_WRID_MAX; i++) {
> + rdma_return_path->wr_data[i].control_len = 0;
> + rdma_return_path->wr_data[i].control_curr = NULL;
> }
>
> /*the CM channel and CM id is shared*/
> @@ -3377,7 +3373,6 @@ static int qemu_rdma_accept(RDMAContext *rdma)
> struct rdma_cm_event *cm_event;
> struct ibv_context *verbs;
> int ret;
> - int idx;
>
> ret = rdma_get_cm_event(rdma->channel, &cm_event);
> if (ret < 0) {
> @@ -3463,10 +3458,10 @@ static int qemu_rdma_accept(RDMAContext *rdma)
>
> qemu_rdma_init_ram_blocks(rdma);
>
> - for (idx = 0; idx < RDMA_WRID_MAX; idx++) {
> - ret = qemu_rdma_reg_control(rdma, idx);
> + for (int i = 0; i < RDMA_WRID_MAX; i++) {
> + ret = qemu_rdma_reg_control(rdma, i);
> if (ret < 0) {
> - error_report("rdma: error registering %d control", idx);
> + error_report("rdma: error registering %d control", i);
> goto err_rdma_dest_wait;
> }
> }
- Re: [PATCH v3 07/13] qemu-file: Remove QEMUFileHooks, (continued)
- [PATCH v3 09/13] migration/rdma: Remove qemu_ prefix from exported functions, Juan Quintela, 2023/10/11
- [PATCH v3 02/13] migration/rdma: Unfold ram_control_before_iterate(), Juan Quintela, 2023/10/11
- [PATCH v3 08/13] migration/rdma: Move rdma constants from qemu-file.h to rdma.h, Juan Quintela, 2023/10/11
- [PATCH v3 11/13] migration/rdma: Use i as for index instead of idx, Juan Quintela, 2023/10/11
- [PATCH v3 13/13] migration/rdma: Remove all "ret" variables that are used only once, Juan Quintela, 2023/10/11
- [PATCH v3 10/13] migration/rdma: Check sooner if we are in postcopy for save_page(), Juan Quintela, 2023/10/11
- [PATCH v3 12/13] migration/rdma: Declare for index variables local, Juan Quintela, 2023/10/11