mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
migration/rdma: Silence qemu_rdma_register_and_get_keys()
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_one() violates this principle: it reports errors to stderr via qemu_rdma_register_and_get_keys(). I elected not to investigate how callers handle the error, i.e. precise impact is not known. Clean this up: silence qemu_rdma_register_and_get_keys(). I believe the caller's error reports suffice. If they don't, we need to convert to Error instead. 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-51-armbru@redhat.com>
This commit is contained in:
parent
7555c7713d
commit
b765d21e4a
1 changed files with 0 additions and 9 deletions
|
@ -1325,15 +1325,6 @@ static int qemu_rdma_register_and_get_keys(RDMAContext *rdma,
|
|||
}
|
||||
}
|
||||
if (!block->pmr[chunk]) {
|
||||
perror("Failed to register chunk!");
|
||||
fprintf(stderr, "Chunk details: block: %d chunk index %d"
|
||||
" start %" PRIuPTR " end %" PRIuPTR
|
||||
" host %" PRIuPTR
|
||||
" local %" PRIuPTR " registrations: %d\n",
|
||||
block->index, chunk, (uintptr_t)chunk_start,
|
||||
(uintptr_t)chunk_end, host_addr,
|
||||
(uintptr_t)block->local_host_addr,
|
||||
rdma->total_registrations);
|
||||
return -1;
|
||||
}
|
||||
rdma->total_registrations++;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue