Adding upstream version 2.14.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
94a061187a
commit
dbdc28cb89
572 changed files with 4636 additions and 1730 deletions
22
.github/workflows/run-nightly-tests.yml
vendored
22
.github/workflows/run-nightly-tests.yml
vendored
|
@ -7,14 +7,28 @@ on:
|
|||
- cron: '0 01 * * *'
|
||||
|
||||
jobs:
|
||||
request-kernel-version:
|
||||
if: github.repository == 'linux-nvme/nvme-cli'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
#We don't have to build the kernel here, as we have a cron job running on
|
||||
#the k8s cluster that builds this target nightly.
|
||||
- name: Request nightly Linus' master tree kernel build for the next job
|
||||
run: |
|
||||
echo "KERNEL_VERSION=linus-master" >> $GITHUB_ENV
|
||||
- name: Notifying the next job to pick up the correct kernel tag
|
||||
run: |
|
||||
echo "${KERNEL_VERSION}"
|
||||
nightly-tests:
|
||||
runs-on: nvme-nvm
|
||||
if: github.repository == 'linux-nvme/nvme-cli'
|
||||
runs-on: arc-vm-runner-set
|
||||
needs: request-kernel-version
|
||||
container:
|
||||
image: ghcr.io/linux-nvme/debian.python:latest
|
||||
#Expose all devices to the container through the `privileged` flag.
|
||||
#
|
||||
#BDEV0 is an environment variable of the self-hosted runner instance
|
||||
#that contains a valid nvme ctrl name which is capable of the nvm
|
||||
#that contains a valid nvme namespace which is capable of the nvm
|
||||
#command set.
|
||||
options: '--privileged -v "/dev":"/dev":z -e BDEV0'
|
||||
steps:
|
||||
|
@ -30,11 +44,11 @@ jobs:
|
|||
scripts/build.sh -b release -c gcc
|
||||
- name: Overwrite test config
|
||||
run: |
|
||||
CONTROLLER=$(echo /dev/${BDEV0} | sed 's/n[0-9]*$//')
|
||||
CONTROLLER=$(echo ${BDEV0} | sed 's/n[0-9]*$//')
|
||||
cat > tests/config.json << EOF
|
||||
{
|
||||
"controller" : "$CONTROLLER",
|
||||
"ns1": "/dev/${BDEV0}",
|
||||
"ns1": "${BDEV0}",
|
||||
"log_dir": "tests/nvmetests/",
|
||||
"nvme_bin": "$(pwd)/.build-ci/nvme"
|
||||
}
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-admin-passthru
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-ADMIN\-PASSTHR" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-ADMIN\-PASSTHR" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
@ -62,7 +62,7 @@ On success, the returned structure (if applicable) may be returned in one of sev
|
|||
.PP
|
||||
\-O <opcode>, \-\-opcode=<opcode>
|
||||
.RS 4
|
||||
The NVMe opcode to send to the device in the command
|
||||
The NVMe opcode to send to the device in the command Required argument as this param is mandatory\&.
|
||||
.RE
|
||||
.PP
|
||||
\-f <flags>, \-\-flags=<flags>
|
||||
|
|
|
@ -799,6 +799,7 @@ printed to stdout for another program to parse.</p></div>
|
|||
<dd>
|
||||
<p>
|
||||
The NVMe opcode to send to the device in the command
|
||||
Required argument as this param is mandatory.
|
||||
</p>
|
||||
</dd>
|
||||
<dt class="hdlist1">
|
||||
|
@ -1038,7 +1039,7 @@ Or if you want to save that structure to a file:
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -47,6 +47,7 @@ OPTIONS
|
|||
-O <opcode>::
|
||||
--opcode=<opcode>::
|
||||
The NVMe opcode to send to the device in the command
|
||||
Required argument as this param is mandatory.
|
||||
|
||||
-f <flags>::
|
||||
--flags=<flags>::
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-ana-log
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-ANA\-LOG" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-ANA\-LOG" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -835,7 +835,7 @@ Print the ANA log page in a human readable format:
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-attach-ns
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-ATTACH\-NS" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-ATTACH\-NS" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -852,7 +852,7 @@ not a namespace block device (ex: /dev/nvme0n1).</p></div>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-boot-part-log
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-BOOT\-PART\-LO" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-BOOT\-PART\-LO" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -846,7 +846,7 @@ Retrieve Boot Partition data to boot_part_log.bin
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-capacity-mgmt
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-CAPACITY\-MGMT" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-CAPACITY\-MGMT" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -875,7 +875,7 @@ device (ex: /dev/nvme0), or a namespace block device (ex: /dev/nvme0n1).</p></di
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-changed-ns-list-log
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-CHANGED\-NS\-L" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-CHANGED\-NS\-L" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -846,7 +846,7 @@ Print the raw Changed Namespace List log to a file:
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-cmdset-ind-id-ns
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-CMDSET\-IND\-I" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-CMDSET\-IND\-I" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -889,7 +889,7 @@ Have the program return the raw structure in binary:
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-compare
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-COMPARE" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-COMPARE" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -1125,7 +1125,7 @@ metadata is passes.</p></td>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-connect-all
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-CONNECT\-ALL" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-CONNECT\-ALL" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -1273,7 +1273,7 @@ nvme-connect(1)</p></div>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-connect
|
||||
.\" Author: [see the "AUTHORS" section]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-CONNECT" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-CONNECT" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -1235,7 +1235,7 @@ and <a href="mailto:hch@lst.de">Christoph Hellwig</a></p></div>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-copy
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-COPY" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-COPY" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -1042,7 +1042,7 @@ logical block ranges to a single consecutive destination logical block range.</p
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-create-ns
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-CREATE\-NS" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-CREATE\-NS" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -1084,7 +1084,7 @@ Create a namespace:
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-dapustor-smart-log-add
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-DAPUSTOR\-SMAR" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-DAPUSTOR\-SMAR" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -849,7 +849,7 @@ Print the raw DapuStor Additional SMART log to a file:
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-id-ns
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-ID\-NS" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-ID\-NS" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -835,7 +835,7 @@ The <code>'--namespace-id'</code> option is mandatory.</p></div>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-dera-stat
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-DERA\-STAT" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-DERA\-STAT" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -797,7 +797,7 @@ Print the Dera Device status and Additional SMART log page in a human readable f
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-detach-ns
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-DETACH\-NS" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-DETACH\-NS" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -834,7 +834,7 @@ controller identifiers.</p></div>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-device-self-test
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-DEVICE\-SELF\-" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-DEVICE\-SELF\-" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -885,7 +885,7 @@ Abort the device self-test operation in the namespace-id 1:
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-dim
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-DIM" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-DIM" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -885,7 +885,7 @@ Deregister from Central Discovery Controller (CDC) associated with nvme4
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-dir-receive
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-DIR\-RECEIVE" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-DIR\-RECEIVE" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -1001,7 +1001,7 @@ Get streams directive status :
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-dir-send
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-DIR\-SEND" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-DIR\-SEND" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
@ -49,7 +49,7 @@ Submits an NVMe Directive Send admin command and returns the applicable results\
|
|||
.sp
|
||||
The <device> parameter is mandatory and may be either the NVMe character device (ex: /dev/nvme0), or a namespace block device (ex: /dev/nvme0n1)\&.
|
||||
.sp
|
||||
On success, the returned directive\(cqs parameter structure (if applicable) is returned in one of several ways depending on the option flags; the structure may parsed by the program and printed in a readable format if it is a known structure, displayed in hex, or the raw buffer may be printed to stdout for another program to parse\&.
|
||||
On success, the returned directive\(cqs parameter structure (if applicable) is returned in one of several ways depending on the option flags; the structure may parsed by the program and displayed in hex, or the raw buffer may be printed to stdout for another program to parse\&.
|
||||
.SH "OPTIONS"
|
||||
.PP
|
||||
\-n <nsid>, \-\-namespace\-id=<nsid>
|
||||
|
@ -134,7 +134,7 @@ Print the raw receive buffer to stdout if the command returns a structure\&.
|
|||
.PP
|
||||
\-H, \-\-human\-readable
|
||||
.RS 4
|
||||
Print the decoded receive buffer to stdout if the command returns a structure\&.
|
||||
deprecated; does nothing so use the \-\-verbose flag instead\&.
|
||||
.RE
|
||||
.PP
|
||||
\-o <fmt>, \-\-output\-format=<fmt>
|
||||
|
|
|
@ -774,9 +774,8 @@ if specific operation needs it.</p></div>
|
|||
device (ex: /dev/nvme0), or a namespace block device (ex: /dev/nvme0n1).</p></div>
|
||||
<div class="paragraph"><p>On success, the returned directive’s parameter structure (if applicable) is
|
||||
returned in one of several ways depending on the option flags; the
|
||||
structure may parsed by the program and printed in a readable format
|
||||
if it is a known structure, displayed in hex, or the raw buffer may be
|
||||
printed to stdout for another program to parse.</p></div>
|
||||
structure may parsed by the program and displayed in hex, or the raw buffer
|
||||
may be printed to stdout for another program to parse.</p></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sect1">
|
||||
|
@ -918,8 +917,7 @@ cellspacing="0" cellpadding="4">
|
|||
</dt>
|
||||
<dd>
|
||||
<p>
|
||||
Print the decoded receive buffer to stdout if the command returns
|
||||
a structure.
|
||||
deprecated; does nothing so use the --verbose flag instead.
|
||||
</p>
|
||||
</dd>
|
||||
<dt class="hdlist1">
|
||||
|
@ -1014,7 +1012,7 @@ Release stream ID 3 :
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -31,9 +31,8 @@ device (ex: /dev/nvme0), or a namespace block device (ex: /dev/nvme0n1).
|
|||
|
||||
On success, the returned directive's parameter structure (if applicable) is
|
||||
returned in one of several ways depending on the option flags; the
|
||||
structure may parsed by the program and printed in a readable format
|
||||
if it is a known structure, displayed in hex, or the raw buffer may be
|
||||
printed to stdout for another program to parse.
|
||||
structure may parsed by the program and displayed in hex, or the raw buffer
|
||||
may be printed to stdout for another program to parse.
|
||||
|
||||
OPTIONS
|
||||
-------
|
||||
|
@ -85,8 +84,7 @@ OPTIONS
|
|||
|
||||
-H::
|
||||
--human-readable::
|
||||
Print the decoded receive buffer to stdout if the command returns
|
||||
a structure.
|
||||
deprecated; does nothing so use the --verbose flag instead.
|
||||
|
||||
-o <fmt>::
|
||||
--output-format=<fmt>::
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-disconnect-all
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-DISCONNECT\-AL" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-DISCONNECT\-AL" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -825,7 +825,7 @@ Disconnect all existing nvme controllers:
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-disconnect
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-DISCONNECT" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-DISCONNECT" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -862,7 +862,7 @@ Disconnect the controller nvme4
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-discover
|
||||
.\" Author: [see the "AUTHORS" section]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-DISCOVER" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-DISCOVER" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -1322,7 +1322,7 @@ nvme-connect-all(1)</p></div>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-dsm
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-DSM" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-DSM" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -930,7 +930,7 @@ any settings from the flags may have provided.</p></div>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-effects-log
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-EFFECTS\-LOG" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-EFFECTS\-LOG" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -869,7 +869,7 @@ Have the program return the raw structure in binary:
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-endurance-event-agg-log
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-ENDURANCE\-EVE" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-ENDURANCE\-EVE" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -862,7 +862,7 @@ Print the raw Endurance log to a file:
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-endurance-log
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-ENDURANCE\-LOG" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-ENDURANCE\-LOG" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -845,7 +845,7 @@ Print the raw Endurance log to a file:
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-error-log
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-ERROR\-LOG" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-ERROR\-LOG" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -860,7 +860,7 @@ Print the raw output to a file:
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-fdp-configs
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-FDP\-CONFIGS" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-FDP\-CONFIGS" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -826,7 +826,7 @@ the possible configurations for Flexible Data Placement.</p></div>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-fdp-events
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-FDP\-EVENTS" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-FDP\-EVENTS" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -825,7 +825,7 @@ Units and media usage in an Endurance Group.</p></div>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-fdp-feature
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-FDP\-FEATURE" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-FDP\-FEATURE" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -842,7 +842,7 @@ nvme-fdp-config(1)</p></div>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-fdp-set-events
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-FDP\-SET\-EVEN" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-FDP\-SET\-EVEN" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -816,7 +816,7 @@ Handle.</p></div>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-fdp-stats
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-FDP\-STATS" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-FDP\-STATS" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -814,7 +814,7 @@ the life of the FDP configuration in an Endurance Group.</p></div>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-fdp-status
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-FDP\-STATUS" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-FDP\-STATUS" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -814,7 +814,7 @@ are accessible by the specified namespace.</p></div>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-fdp-update
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-FDP\-UPDATE" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-FDP\-UPDATE" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -802,7 +802,7 @@ a different Reclaim Unit accessible by the specified namespace.</p></div>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-fdp-usage
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-FDP\-USAGE" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-FDP\-USAGE" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -815,7 +815,7 @@ Endurance Group.</p></div>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-fid-support-effects-log
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-FID\-SUPPORT\-" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-FID\-SUPPORT\-" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -825,7 +825,7 @@ raw buffer may be printed to stdout.</p></div>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-flush
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-FLUSH" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-FLUSH" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -824,7 +824,7 @@ any namespace.</p></div>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-format
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-FORMAT" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-FORMAT" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -1056,7 +1056,7 @@ information:
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-fw-commit
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-FW\-COMMIT" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-FW\-COMMIT" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -941,7 +941,7 @@ commit the last downloaded fw to slot 1.
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-fw-download
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-FW\-DOWNLOAD" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-FW\-DOWNLOAD" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -888,7 +888,7 @@ Transfer a firmware size 128KiB at a time:
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-fw-log
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-FW\-LOG" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-FW\-LOG" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -846,7 +846,7 @@ Print the log firmware to a file:
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-gen-hostnqn
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-GEN\-HOSTNQN" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-GEN\-HOSTNQN" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -809,7 +809,7 @@ and prints it to stdout.</p></div>
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-get-feature
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-GET\-FEATURE" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-GET\-FEATURE" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -1027,7 +1027,7 @@ format:
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-get-lba-status
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-GET\-LBA\-STAT" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-GET\-LBA\-STAT" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -907,7 +907,7 @@ Get LBA Status of the namespace 1 from SLBA 10 for the max Dwords of 0x1000
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-get-log
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-GET\-LOG" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-GET\-LOG" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -997,7 +997,7 @@ Have the program return the raw log page in binary:
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-get-ns-id
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-GET\-NS\-ID" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-GET\-NS\-ID" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -818,7 +818,7 @@ Shows the namespace id for the given block device:
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-get-property
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-GET\-PROPERTY" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-GET\-PROPERTY" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
|
@ -879,7 +879,7 @@ Then look for NVMe Fabrics command (0x7f) at trace
|
|||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated
|
||||
2025-04-11 13:25:46 CEST
|
||||
2025-05-20 12:19:22 CEST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: nvme-help
|
||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 04/11/2025
|
||||
.\" Date: 05/20/2025
|
||||
.\" Manual: NVMe Manual
|
||||
.\" Source: NVMe
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "NVME\-HELP" "1" "04/11/2025" "NVMe" "NVMe Manual"
|
||||
.TH "NVME\-HELP" "1" "05/20/2025" "NVMe" "NVMe Manual"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue