1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
.TH "libnvme" 9 "struct nvme_get_discovery_args" "April 2025" "API Manual" LINUX
.SH NAME
struct nvme_get_discovery_args \- Arguments for nvmf_get_discovery_wargs()
.SH SYNOPSIS
struct nvme_get_discovery_args {
.br
.BI " nvme_ctrl_t c;"
.br
.BI " int args_size;"
.br
.BI " int max_retries;"
.br
.BI " __u32 *result;"
.br
.BI " __u32 timeout;"
.br
.BI " __u8 lsp;"
.br
.BI "
};
.br
.SH Members
.IP "c" 12
Discovery controller
.IP "args_size" 12
Length of the structure
.IP "max_retries" 12
Number of retries in case of failure
.IP "result" 12
The command completion result from CQE dword0
.IP "timeout" 12
Timeout in ms (default: NVME_DEFAULT_IOCTL_TIMEOUT)
.IP "lsp" 12
Log specific field (See enum nvmf_log_discovery_lsp)
|