-
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.
Prepare for next release candiate. Signed-off-by: Daniel Wagner <dwagner@suse.de>
- Loading branch information
Showing
13 changed files
with
79 additions
and
17 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
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,14 @@ | ||
.TH "nvme_ctrl_get_ana_state" 9 "nvme_ctrl_get_ana_state" "March 2022" "libnvme API manual" LINUX | ||
.SH NAME | ||
nvme_ctrl_get_ana_state \- ANA state of a controller path | ||
.SH SYNOPSIS | ||
.B "const char *" nvme_ctrl_get_ana_state | ||
.BI "(nvme_ctrl_t c " "," | ||
.BI "__u32 nsid " ");" | ||
.SH ARGUMENTS | ||
.IP "c" 12 | ||
Constroller instance | ||
.IP "nsid" 12 | ||
Namespace ID to evaluate | ||
.SH "RETURN" | ||
ANA state of the namespace \fInsid\fP on controller \fIc\fP. |
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 |
---|---|---|
@@ -1,8 +1,11 @@ | ||
.TH "nvme_ctrls_filter" 9 "nvme_ctrls_filter" "March 2022" "libnvme API manual" LINUX | ||
.SH NAME | ||
nvme_ctrls_filter \- | ||
nvme_ctrls_filter \- Filter for controllers | ||
.SH SYNOPSIS | ||
.B "int" nvme_ctrls_filter | ||
.BI "(const struct dirent *d " ");" | ||
.SH ARGUMENTS | ||
.IP "d" 12 | ||
dirent to check | ||
.SH "RETURN" | ||
1 if \fId\fP matches, 0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
.TH "nvme_namespace_filter" 9 "nvme_namespace_filter" "March 2022" "libnvme API manual" LINUX | ||
.SH NAME | ||
nvme_namespace_filter \- | ||
nvme_namespace_filter \- Filter for namespaces | ||
.SH SYNOPSIS | ||
.B "int" nvme_namespace_filter | ||
.BI "(const struct dirent *d " ");" | ||
.SH ARGUMENTS | ||
.IP "d" 12 | ||
dirent to check | ||
.SH "RETURN" | ||
1 if \fId\fP matches, 0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
.TH "nvme_paths_filter" 9 "nvme_paths_filter" "March 2022" "libnvme API manual" LINUX | ||
.SH NAME | ||
nvme_paths_filter \- | ||
nvme_paths_filter \- Filter for paths | ||
.SH SYNOPSIS | ||
.B "int" nvme_paths_filter | ||
.BI "(const struct dirent *d " ");" | ||
.SH ARGUMENTS | ||
.IP "d" 12 | ||
dirent to check | ||
.SH "RETURN" | ||
1 if \fId\fP matches, 0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
.TH "nvme_scan_ctrl_namespace_paths" 9 "nvme_scan_ctrl_namespace_paths" "March 2022" "libnvme API manual" LINUX | ||
.SH NAME | ||
nvme_scan_ctrl_namespace_paths \- | ||
nvme_scan_ctrl_namespace_paths \- Scan for namespace paths in a controller | ||
.SH SYNOPSIS | ||
.B "int" nvme_scan_ctrl_namespace_paths | ||
.BI "(nvme_ctrl_t c " "," | ||
.BI "struct dirent ***namespaces " ");" | ||
.BI "struct dirent ***paths " ");" | ||
.SH ARGUMENTS | ||
.IP "c" 12 | ||
.IP "namespaces" 12 | ||
Controller to scan | ||
.IP "paths" 12 | ||
Pointer to array of dirents | ||
.SH "RETURN" | ||
number of entries in \fIpaths\fP |
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 |
---|---|---|
@@ -1,10 +1,14 @@ | ||
.TH "nvme_scan_ctrl_namespaces" 9 "nvme_scan_ctrl_namespaces" "March 2022" "libnvme API manual" LINUX | ||
.SH NAME | ||
nvme_scan_ctrl_namespaces \- | ||
nvme_scan_ctrl_namespaces \- Scan for namespaces in a controller | ||
.SH SYNOPSIS | ||
.B "int" nvme_scan_ctrl_namespaces | ||
.BI "(nvme_ctrl_t c " "," | ||
.BI "struct dirent ***namespaces " ");" | ||
.BI "struct dirent ***ns " ");" | ||
.SH ARGUMENTS | ||
.IP "c" 12 | ||
.IP "namespaces" 12 | ||
Controller to scan | ||
.IP "ns" 12 | ||
Pointer to array of dirents | ||
.SH "RETURN" | ||
number of entries in \fIns\fP |
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 |
---|---|---|
@@ -1,8 +1,11 @@ | ||
.TH "nvme_scan_ctrls" 9 "nvme_scan_ctrls" "March 2022" "libnvme API manual" LINUX | ||
.SH NAME | ||
nvme_scan_ctrls \- | ||
nvme_scan_ctrls \- Scan for controllers | ||
.SH SYNOPSIS | ||
.B "int" nvme_scan_ctrls | ||
.BI "(struct dirent ***ctrls " ");" | ||
.SH ARGUMENTS | ||
.IP "ctrls" 12 | ||
Pointer to array of dirents | ||
.SH "RETURN" | ||
number of entries in \fIctrls\fP |
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 |
---|---|---|
@@ -1,10 +1,14 @@ | ||
.TH "nvme_scan_subsystem_namespaces" 9 "nvme_scan_subsystem_namespaces" "March 2022" "libnvme API manual" LINUX | ||
.SH NAME | ||
nvme_scan_subsystem_namespaces \- | ||
nvme_scan_subsystem_namespaces \- Scan for namespaces in a subsystem | ||
.SH SYNOPSIS | ||
.B "int" nvme_scan_subsystem_namespaces | ||
.BI "(nvme_subsystem_t s " "," | ||
.BI "struct dirent ***namespaces " ");" | ||
.BI "struct dirent ***ns " ");" | ||
.SH ARGUMENTS | ||
.IP "s" 12 | ||
.IP "namespaces" 12 | ||
Subsystem to scan | ||
.IP "ns" 12 | ||
-- undescribed -- | ||
.SH "RETURN" | ||
number of entries in \fIns\fP |
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 |
---|---|---|
@@ -1,8 +1,11 @@ | ||
.TH "nvme_scan_subsystems" 9 "nvme_scan_subsystems" "March 2022" "libnvme API manual" LINUX | ||
.SH NAME | ||
nvme_scan_subsystems \- | ||
nvme_scan_subsystems \- Scan for subsystems | ||
.SH SYNOPSIS | ||
.B "int" nvme_scan_subsystems | ||
.BI "(struct dirent ***subsys " ");" | ||
.SH ARGUMENTS | ||
.IP "subsys" 12 | ||
Pointer to array of dirents | ||
.SH "RETURN" | ||
number of entries in \fIsubsys\fP |
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 |
---|---|---|
@@ -1,8 +1,11 @@ | ||
.TH "nvme_subsys_filter" 9 "nvme_subsys_filter" "March 2022" "libnvme API manual" LINUX | ||
.SH NAME | ||
nvme_subsys_filter \- | ||
nvme_subsys_filter \- Filter for subsystems | ||
.SH SYNOPSIS | ||
.B "int" nvme_subsys_filter | ||
.BI "(const struct dirent *d " ");" | ||
.SH ARGUMENTS | ||
.IP "d" 12 | ||
dirent to check | ||
.SH "RETURN" | ||
1 if \fId\fP matches, 0 otherwise |