mirror of https://github.com/xemu-project/xemu.git
rdma typos
A couple of typo fixes. Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
parent
1aca9a5f7d
commit
24ec68ef84
|
@ -1223,7 +1223,7 @@ const char *print_wrid(int wrid)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Perform a non-optimized memory unregistration after every transfer
|
* Perform a non-optimized memory unregistration after every transfer
|
||||||
* for demonsration purposes, only if pin-all is not requested.
|
* for demonstration purposes, only if pin-all is not requested.
|
||||||
*
|
*
|
||||||
* Potential optimizations:
|
* Potential optimizations:
|
||||||
* 1. Start a new thread to run this function continuously
|
* 1. Start a new thread to run this function continuously
|
||||||
|
@ -3288,7 +3288,7 @@ static void rdma_accept_incoming_migration(void *opaque)
|
||||||
QEMUFile *f;
|
QEMUFile *f;
|
||||||
Error *local_err = NULL, **errp = &local_err;
|
Error *local_err = NULL, **errp = &local_err;
|
||||||
|
|
||||||
trace_qemu_dma_accept_incoming_migration();
|
trace_qemu_rdma_accept_incoming_migration();
|
||||||
ret = qemu_rdma_accept(rdma);
|
ret = qemu_rdma_accept(rdma);
|
||||||
|
|
||||||
if (ret) {
|
if (ret) {
|
||||||
|
@ -3296,7 +3296,7 @@ static void rdma_accept_incoming_migration(void *opaque)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
trace_qemu_dma_accept_incoming_migration_accepted();
|
trace_qemu_rdma_accept_incoming_migration_accepted();
|
||||||
|
|
||||||
f = qemu_fopen_rdma(rdma, "rb");
|
f = qemu_fopen_rdma(rdma, "rb");
|
||||||
if (f == NULL) {
|
if (f == NULL) {
|
||||||
|
|
|
@ -1405,8 +1405,8 @@ migrate_pending(uint64_t size, uint64_t max) "pending size %" PRIu64 " max %" PR
|
||||||
migrate_transferred(uint64_t tranferred, uint64_t time_spent, double bandwidth, uint64_t size) "transferred %" PRIu64 " time_spent %" PRIu64 " bandwidth %g max_size %" PRId64
|
migrate_transferred(uint64_t tranferred, uint64_t time_spent, double bandwidth, uint64_t size) "transferred %" PRIu64 " time_spent %" PRIu64 " bandwidth %g max_size %" PRId64
|
||||||
|
|
||||||
# migration/rdma.c
|
# migration/rdma.c
|
||||||
qemu_dma_accept_incoming_migration(void) ""
|
qemu_rdma_accept_incoming_migration(void) ""
|
||||||
qemu_dma_accept_incoming_migration_accepted(void) ""
|
qemu_rdma_accept_incoming_migration_accepted(void) ""
|
||||||
qemu_rdma_accept_pin_state(bool pin) "%d"
|
qemu_rdma_accept_pin_state(bool pin) "%d"
|
||||||
qemu_rdma_accept_pin_verbsc(void *verbs) "Verbs context after listen: %p"
|
qemu_rdma_accept_pin_verbsc(void *verbs) "Verbs context after listen: %p"
|
||||||
qemu_rdma_block_for_wrid_miss(const char *wcompstr, int wcomp, const char *gcompstr, uint64_t req) "A Wanted wrid %s (%d) but got %s (%" PRIu64 ")"
|
qemu_rdma_block_for_wrid_miss(const char *wcompstr, int wcomp, const char *gcompstr, uint64_t req) "A Wanted wrid %s (%d) but got %s (%" PRIu64 ")"
|
||||||
|
|
Loading…
Reference in New Issue