[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 14/52] migration/rdma: Use bool for two RDMAContext flags
From: |
Markus Armbruster |
Subject: |
[PATCH 14/52] migration/rdma: Use bool for two RDMAContext flags |
Date: |
Mon, 18 Sep 2023 16:41:28 +0200 |
@error_reported and @received_error are flags. The latter is even
assigned bool true. Change them from int to bool.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
migration/rdma.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/migration/rdma.c b/migration/rdma.c
index 97715dbd78..c02a1c83b2 100644
--- a/migration/rdma.c
+++ b/migration/rdma.c
@@ -91,7 +91,7 @@ static uint32_t known_capabilities = RDMA_CAPABILITY_PIN_ALL;
if (!rdma->error_reported) { \
error_report("RDMA is in an error state waiting migration" \
" to abort!"); \
- rdma->error_reported = 1; \
+ rdma->error_reported = true; \
} \
return rdma->error_state; \
} \
@@ -365,8 +365,8 @@ typedef struct RDMAContext {
* and remember the error state.
*/
int error_state;
- int error_reported;
- int received_error;
+ bool error_reported;
+ bool received_error;
/*
* Description of ram blocks used throughout the code.
--
2.41.0
- Re: [PATCH 32/52] migration/rdma: Fix error handling around rdma_getaddrinfo(), (continued)
- [PATCH 34/52] migration/rdma: Convert qemu_rdma_exchange_recv() to Error, Markus Armbruster, 2023/09/18
- [PATCH 30/52] migration/rdma: Delete inappropriate error_report() in macro ERROR(), Markus Armbruster, 2023/09/18
- [PATCH 14/52] migration/rdma: Use bool for two RDMAContext flags,
Markus Armbruster <=
- [PATCH 09/52] migration/rdma: Put @errp parameter last, Markus Armbruster, 2023/09/18
- [PATCH 03/52] migration/rdma: Clean up rdma_delete_block()'s return type, Markus Armbruster, 2023/09/18
- [PATCH 40/52] migration/rdma: Convert qemu_rdma_write() to Error, Markus Armbruster, 2023/09/18