mirror of https://github.com/xemu-project/xemu.git
migration/rdma: Convert qemu_rdma_write_one() to Error
Functions that use an Error **errp parameter to return errors should not also report them to the user, because reporting is the caller's job. When the caller does, the error is reported twice. When it doesn't (because it recovered from the error), there is no error to report, i.e. the report is bogus. qemu_rdma_write_flush() violates this principle: it calls error_report() via qemu_rdma_write_one(). I elected not to investigate how callers handle the error, i.e. precise impact is not known. Clean this up by converting qemu_rdma_write_one() to Error. Bonus: resolves a FIXME about problematic use of errno. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Li Zhijian <lizhijian@fujitsu.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com> Message-ID: <20230928132019.2544702-41-armbru@redhat.com>
This commit is contained in:
parent
5609547781
commit
557c34ca60
|
@ -2041,9 +2041,8 @@ static int qemu_rdma_exchange_recv(RDMAContext *rdma, RDMAControlHeader *head,
|
|||
*/
|
||||
static int qemu_rdma_write_one(RDMAContext *rdma,
|
||||
int current_index, uint64_t current_addr,
|
||||
uint64_t length)
|
||||
uint64_t length, Error **errp)
|
||||
{
|
||||
Error *err = NULL;
|
||||
struct ibv_sge sge;
|
||||
struct ibv_send_wr send_wr = { 0 };
|
||||
struct ibv_send_wr *bad_wr;
|
||||
|
@ -2097,7 +2096,7 @@ retry:
|
|||
ret = qemu_rdma_block_for_wrid(rdma, RDMA_WRID_RDMA_WRITE, NULL);
|
||||
|
||||
if (ret < 0) {
|
||||
error_report("Failed to Wait for previous write to complete "
|
||||
error_setg(errp, "Failed to Wait for previous write to complete "
|
||||
"block %d chunk %" PRIu64
|
||||
" current %" PRIu64 " len %" PRIu64 " %d",
|
||||
current_index, chunk, sge.addr, length, rdma->nb_sent);
|
||||
|
@ -2129,10 +2128,9 @@ retry:
|
|||
|
||||
compress_to_network(rdma, &comp);
|
||||
ret = qemu_rdma_exchange_send(rdma, &head,
|
||||
(uint8_t *) &comp, NULL, NULL, NULL, &err);
|
||||
(uint8_t *) &comp, NULL, NULL, NULL, errp);
|
||||
|
||||
if (ret < 0) {
|
||||
error_report_err(err);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -2167,9 +2165,8 @@ retry:
|
|||
|
||||
register_to_network(rdma, ®);
|
||||
ret = qemu_rdma_exchange_send(rdma, &head, (uint8_t *) ®,
|
||||
&resp, ®_result_idx, NULL, &err);
|
||||
&resp, ®_result_idx, NULL, errp);
|
||||
if (ret < 0) {
|
||||
error_report_err(err);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -2177,7 +2174,7 @@ retry:
|
|||
if (qemu_rdma_register_and_get_keys(rdma, block, sge.addr,
|
||||
&sge.lkey, NULL, chunk,
|
||||
chunk_start, chunk_end)) {
|
||||
error_report("cannot get lkey");
|
||||
error_setg(errp, "cannot get lkey");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -2196,7 +2193,7 @@ retry:
|
|||
if (qemu_rdma_register_and_get_keys(rdma, block, sge.addr,
|
||||
&sge.lkey, NULL, chunk,
|
||||
chunk_start, chunk_end)) {
|
||||
error_report("cannot get lkey!");
|
||||
error_setg(errp, "cannot get lkey!");
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
@ -2208,7 +2205,7 @@ retry:
|
|||
if (qemu_rdma_register_and_get_keys(rdma, block, sge.addr,
|
||||
&sge.lkey, NULL, chunk,
|
||||
chunk_start, chunk_end)) {
|
||||
error_report("cannot get lkey!");
|
||||
error_setg(errp, "cannot get lkey!");
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
@ -2242,7 +2239,7 @@ retry:
|
|||
trace_qemu_rdma_write_one_queue_full();
|
||||
ret = qemu_rdma_block_for_wrid(rdma, RDMA_WRID_RDMA_WRITE, NULL);
|
||||
if (ret < 0) {
|
||||
error_report("rdma migration: failed to make "
|
||||
error_setg(errp, "rdma migration: failed to make "
|
||||
"room in full send queue!");
|
||||
return -1;
|
||||
}
|
||||
|
@ -2250,12 +2247,8 @@ retry:
|
|||
goto retry;
|
||||
|
||||
} else if (ret > 0) {
|
||||
/*
|
||||
* FIXME perror() is problematic, because whether
|
||||
* ibv_post_send() sets errno is unclear. Will go away later
|
||||
* in this series.
|
||||
*/
|
||||
perror("rdma migration: post rdma write failed");
|
||||
error_setg_errno(errp, ret,
|
||||
"rdma migration: post rdma write failed");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -2291,11 +2284,10 @@ static int qemu_rdma_write_flush(RDMAContext *rdma, Error **errp)
|
|||
return 0;
|
||||
}
|
||||
|
||||
ret = qemu_rdma_write_one(rdma,
|
||||
rdma->current_index, rdma->current_addr, rdma->current_length);
|
||||
ret = qemu_rdma_write_one(rdma, rdma->current_index, rdma->current_addr,
|
||||
rdma->current_length, errp);
|
||||
|
||||
if (ret < 0) {
|
||||
error_setg(errp, "FIXME temporary error message");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue