diff options
author | Eric Blake | 2019-01-17 20:36:53 +0100 |
---|---|---|
committer | Eric Blake | 2019-01-21 22:49:52 +0100 |
commit | 138796d0f545ad4b6c74ad2cbe5f6e08c454a0b9 (patch) | |
tree | 36c408627b539ae5ddf8d62b3c0d66b2298319aa /nbd/trace-events | |
parent | nbd/client: Pull out oldstyle size determination (diff) | |
download | qemu-138796d0f545ad4b6c74ad2cbe5f6e08c454a0b9.tar.gz qemu-138796d0f545ad4b6c74ad2cbe5f6e08c454a0b9.tar.xz qemu-138796d0f545ad4b6c74ad2cbe5f6e08c454a0b9.zip |
nbd/client: Refactor nbd_opt_go() to support NBD_OPT_INFO
Rename the function to nbd_opt_info_or_go() with an added parameter
and slight changes to comments and trace messages, in order to
reuse the function for NBD_OPT_INFO.
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <20190117193658.16413-17-eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Diffstat (limited to 'nbd/trace-events')
-rw-r--r-- | nbd/trace-events | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nbd/trace-events b/nbd/trace-events index 663d11687a..7f10ebd4e0 100644 --- a/nbd/trace-events +++ b/nbd/trace-events @@ -4,10 +4,10 @@ nbd_receive_option_reply(uint32_t option, const char *optname, uint32_t type, co nbd_server_error_msg(uint32_t err, const char *type, const char *msg) "server reported error 0x%" PRIx32 " (%s) with additional message: %s" nbd_reply_err_unsup(uint32_t option, const char *name) "server doesn't understand request %" PRIu32 " (%s), attempting fallback" nbd_receive_list(const char *name, const char *desc) "export list includes '%s', description '%s'" -nbd_opt_go_start(const char *name) "Attempting NBD_OPT_GO for export '%s'" -nbd_opt_go_success(void) "Export is good to go" -nbd_opt_go_info_unknown(int info, const char *name) "Ignoring unknown info %d (%s)" -nbd_opt_go_info_block_size(uint32_t minimum, uint32_t preferred, uint32_t maximum) "Block sizes are 0x%" PRIx32 ", 0x%" PRIx32 ", 0x%" PRIx32 +nbd_opt_info_go_start(const char *opt, const char *name) "Attempting %s for export '%s'" +nbd_opt_info_go_success(const char *opt) "Export is ready after %s request" +nbd_opt_info_unknown(int info, const char *name) "Ignoring unknown info %d (%s)" +nbd_opt_info_block_size(uint32_t minimum, uint32_t preferred, uint32_t maximum) "Block sizes are 0x%" PRIx32 ", 0x%" PRIx32 ", 0x%" PRIx32 nbd_receive_query_exports_start(const char *wantname) "Querying export list for '%s'" nbd_receive_query_exports_success(const char *wantname) "Found desired export name '%s'" nbd_receive_starttls_new_client(void) "Setting up TLS" |