-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Daniel Wagner <[email protected]>
- Loading branch information
Showing
722 changed files
with
4,162 additions
and
720 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
author = 'Keith Busch <[email protected]>' | ||
master_doc = 'index' | ||
|
||
release = '1.1' | ||
release = '1.2' | ||
|
||
|
||
# -- General configuration --------------------------------------------------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
.TH "nvme_admin_passthru64" 9 "nvme_admin_passthru64" "October 2022" "libnvme API manual" LINUX | ||
.SH NAME | ||
nvme_admin_passthru64 \- Submit a 64-bit nvme passthrough command | ||
.SH SYNOPSIS | ||
.B "int" nvme_admin_passthru64 | ||
.BI "(int fd " "," | ||
.BI "__u8 opcode " "," | ||
.BI "__u8 flags " "," | ||
.BI "__u16 rsvd " "," | ||
.BI "__u32 nsid " "," | ||
.BI "__u32 cdw2 " "," | ||
.BI "__u32 cdw3 " "," | ||
.BI "__u32 cdw10 " "," | ||
.BI "__u32 cdw11 " "," | ||
.BI "__u32 cdw12 " "," | ||
.BI "__u32 cdw13 " "," | ||
.BI "__u32 cdw14 " "," | ||
.BI "__u32 cdw15 " "," | ||
.BI "__u32 data_len " "," | ||
.BI "void *data " "," | ||
.BI "__u32 metadata_len " "," | ||
.BI "void *metadata " "," | ||
.BI "__u32 timeout_ms " "," | ||
.BI "__u64 *result " ");" | ||
.SH ARGUMENTS | ||
.IP "fd" 12 | ||
File descriptor of nvme device | ||
.IP "opcode" 12 | ||
The nvme io command to send | ||
.IP "flags" 12 | ||
NVMe command flags (not used) | ||
.IP "rsvd" 12 | ||
Reserved for future use | ||
.IP "nsid" 12 | ||
Namespace identifier | ||
.IP "cdw2" 12 | ||
Command dword 2 | ||
.IP "cdw3" 12 | ||
Command dword 3 | ||
.IP "cdw10" 12 | ||
Command dword 10 | ||
.IP "cdw11" 12 | ||
Command dword 11 | ||
.IP "cdw12" 12 | ||
Command dword 12 | ||
.IP "cdw13" 12 | ||
Command dword 13 | ||
.IP "cdw14" 12 | ||
Command dword 14 | ||
.IP "cdw15" 12 | ||
Command dword 15 | ||
.IP "data_len" 12 | ||
Length of the data transferred in this command in bytes | ||
.IP "data" 12 | ||
Pointer to user address of the data buffer | ||
.IP "metadata_len" 12 | ||
Length of metadata transferred in this command | ||
.IP "metadata" 12 | ||
Pointer to user address of the metadata buffer | ||
.IP "timeout_ms" 12 | ||
How long the kernel waits for the command to complete | ||
.IP "result" 12 | ||
Optional field to return the result from the CQE dword 0 | ||
.SH "DESCRIPTION" | ||
Parameterized form of \fBnvme_submit_admin_passthru64\fP. This sets up and | ||
submits a \fIstruct nvme_passthru_cmd64\fP. | ||
|
||
Known values for \fIopcode\fP are defined in \fIenum nvme_admin_opcode\fP. | ||
.SH "RETURN" | ||
The nvme command status if a response was received (see | ||
\fIenum nvme_status_field\fP) or -1 with errno set otherwise. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
.TH "libnvme" 9 "struct nvme_copy_range_f1" "October 2022" "API Manual" LINUX | ||
.SH NAME | ||
struct nvme_copy_range_f1 \- Copy - Source Range Entries Descriptor Format 1h | ||
.SH SYNOPSIS | ||
struct nvme_copy_range_f1 { | ||
.br | ||
.BI " __u8 rsvd0[8];" | ||
.br | ||
.BI " __le64 slba;" | ||
.br | ||
.BI " __le16 nlb;" | ||
.br | ||
.BI " __u8 rsvd18[8];" | ||
.br | ||
.BI " __u8 elbt[10];" | ||
.br | ||
.BI " __le16 elbatm;" | ||
.br | ||
.BI " __le16 elbat;" | ||
.br | ||
.BI " | ||
}; | ||
.br | ||
|
||
.SH Members | ||
.IP "rsvd0" 12 | ||
Reserved | ||
.IP "slba" 12 | ||
Starting LBA | ||
.IP "nlb" 12 | ||
Number of Logical Blocks | ||
.IP "rsvd18" 12 | ||
Reserved | ||
.IP "elbt" 12 | ||
Expected Initial Logical Block Reference Tag / | ||
Expected Logical Block Storage Tag | ||
.IP "elbatm" 12 | ||
Expected Logical Block Application Tag Mask | ||
.IP "elbat" 12 | ||
Expected Logical Block Application Tag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.