Adding upstream version 2.12.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
65508f0a28
commit
c0fbec1eb4
571 changed files with 10718 additions and 2738 deletions
24
.checkpatch.conf
Normal file
24
.checkpatch.conf
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# Checkpatch options.
|
||||||
|
# REF: https://docs.kernel.org/dev-tools/checkpatch.html
|
||||||
|
|
||||||
|
# This isn't actually a Linux kernel tree
|
||||||
|
--no-tree
|
||||||
|
|
||||||
|
--max-line-length=100
|
||||||
|
|
||||||
|
--ignore EMAIL_SUBJECT
|
||||||
|
|
||||||
|
# FILE_PATH_CHANGES reports this kind of message:
|
||||||
|
# "added, moved or deleted file(s), does MAINTAINERS need updating?"
|
||||||
|
--ignore FILE_PATH_CHANGES
|
||||||
|
|
||||||
|
|
||||||
|
# Commit messages might contain a Gerrit Change-Id.
|
||||||
|
--ignore GERRIT_CHANGE_ID
|
||||||
|
|
||||||
|
# Do not check the format of commit messages, as Gerrit's merge commits do not
|
||||||
|
# preserve it.
|
||||||
|
--ignore GIT_COMMIT_ID
|
||||||
|
|
||||||
|
# Avoid "Does not appear to be a unified-diff format patch" message
|
||||||
|
--ignore NOT_UNIFIED_DIFF
|
5
.github/workflows/coverage.yml
vendored
5
.github/workflows/coverage.yml
vendored
|
@ -17,6 +17,7 @@ jobs:
|
||||||
- name: build
|
- name: build
|
||||||
run: |
|
run: |
|
||||||
scripts/build.sh coverage
|
scripts/build.sh coverage
|
||||||
- uses: codecov/codecov-action@v4
|
- uses: codecov/codecov-action@v5
|
||||||
with:
|
with:
|
||||||
fail_ci_if_error: false
|
token: ${{ secrets.CODECOV_TOKEN }}
|
||||||
|
fail_ci_if_error: true
|
||||||
|
|
49
.github/workflows/run-nightly-tests.yml
vendored
49
.github/workflows/run-nightly-tests.yml
vendored
|
@ -9,39 +9,25 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
nightly-tests:
|
nightly-tests:
|
||||||
runs-on: nvme-nvm
|
runs-on: nvme-nvm
|
||||||
|
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
|
||||||
|
#command set.
|
||||||
|
options: '--privileged -v "/dev":"/dev":z -e BDEV0'
|
||||||
steps:
|
steps:
|
||||||
- name: Output kernel version
|
- name: Output kernel version
|
||||||
run: |
|
run: |
|
||||||
uname -a
|
uname -a
|
||||||
- name: Clean up test device
|
|
||||||
run: |
|
|
||||||
#BDEV0 is an environment variable of the self-hosted runner instance
|
|
||||||
#that contains a valid nvme ctrl name which is capable of the nvm
|
|
||||||
#command set.
|
|
||||||
CONTROLLER=$(echo /dev/${BDEV0} | sed 's/n[0-9]*$//')
|
|
||||||
sudo nvme delete-ns $CONTROLLER -n 0xffffffff
|
|
||||||
sudo nvme format $CONTROLLER -n 0xffffffff -l 0 -f
|
|
||||||
SIZE=$(sudo nvme id-ctrl $CONTROLLER --output-format=json | jq -r '{tnvmcap} | .[]' | awk '{print $1/512}')
|
|
||||||
sudo nvme create-ns -s $SIZE -c $SIZE -f 0 -d 0 --csi=0 $CONTROLLER
|
|
||||||
sudo nvme attach-ns $CONTROLLER -n 1 -c 0
|
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
PIPX_BIN_DIR=/usr/local/bin pipx install nose2 --force
|
||||||
sudo apt-get install --no-install-recommends -y \
|
|
||||||
meson gcc pkg-config git libjson-c-dev libssl-dev libkeyutils-dev \
|
|
||||||
libdbus-1-dev libpython3-dev pipx python3-dev swig xz-utils
|
|
||||||
pipx ensurepath
|
|
||||||
sudo PIPX_BIN_DIR=/usr/local/bin pipx install nose2
|
|
||||||
sudo PIPX_BIN_DIR=/usr/local/bin pipx install flake8
|
|
||||||
sudo PIPX_BIN_DIR=/usr/local/bin pipx install mypy
|
|
||||||
sudo PIPX_BIN_DIR=/usr/local/bin pipx install autopep8
|
|
||||||
sudo PIPX_BIN_DIR=/usr/local/bin pipx install isort
|
|
||||||
- name: Build and install nvme-cli
|
- name: Build and install nvme-cli
|
||||||
run: |
|
run: |
|
||||||
scripts/build.sh -b release -c gcc
|
scripts/build.sh -b release -c gcc
|
||||||
sudo meson install -C .build-ci
|
|
||||||
sudo ldconfig /usr/local/lib64
|
|
||||||
- name: Overwrite test config
|
- name: Overwrite test config
|
||||||
run: |
|
run: |
|
||||||
CONTROLLER=$(echo /dev/${BDEV0} | sed 's/n[0-9]*$//')
|
CONTROLLER=$(echo /dev/${BDEV0} | sed 's/n[0-9]*$//')
|
||||||
|
@ -49,12 +35,14 @@ jobs:
|
||||||
{
|
{
|
||||||
"controller" : "$CONTROLLER",
|
"controller" : "$CONTROLLER",
|
||||||
"ns1": "/dev/${BDEV0}",
|
"ns1": "/dev/${BDEV0}",
|
||||||
"log_dir": "tests/nvmetests/"
|
"log_dir": "tests/nvmetests/",
|
||||||
|
"nvme_bin": "$(pwd)/.build-ci/nvme"
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
cat tests/config.json
|
||||||
- name: Run on device tests
|
- name: Run on device tests
|
||||||
run: |
|
run: |
|
||||||
sudo nose2 --verbose --start-dir tests \
|
nose2 --verbose --start-dir tests \
|
||||||
nvme_attach_detach_ns_test \
|
nvme_attach_detach_ns_test \
|
||||||
nvme_compare_test \
|
nvme_compare_test \
|
||||||
nvme_copy_test \
|
nvme_copy_test \
|
||||||
|
@ -79,15 +67,6 @@ jobs:
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
name: logs files
|
name: nvme-cli-test-logs
|
||||||
path: |
|
path: |
|
||||||
./tests/nvmetests/**/*.log
|
./tests/nvmetests/**/*.log
|
||||||
- name: Clean up test device
|
|
||||||
if: always()
|
|
||||||
run: |
|
|
||||||
CONTROLLER=$(echo /dev/${BDEV0} | sed 's/n[0-9]*$//')
|
|
||||||
sudo nvme delete-ns $CONTROLLER -n 0xffffffff
|
|
||||||
sudo nvme format $CONTROLLER -n 0xffffffff -l 0 -f
|
|
||||||
SIZE=$(sudo nvme id-ctrl $CONTROLLER --output-format=json | jq -r '{tnvmcap} | .[]' | awk '{print $1/512}')
|
|
||||||
sudo nvme create-ns -s $SIZE -c $SIZE -f 0 -d 0 --csi=0 $CONTROLLER
|
|
||||||
sudo nvme attach-ns $CONTROLLER -n 1 -c 0
|
|
||||||
|
|
|
@ -207,3 +207,36 @@ linknvme:nvme-inspur-nvme-vendor-log[1]::
|
||||||
|
|
||||||
linknvme:nvme-dapustor-smart-log-add[1]::
|
linknvme:nvme-dapustor-smart-log-add[1]::
|
||||||
NVMe DapuStor Additional SMART log page
|
NVMe DapuStor Additional SMART log page
|
||||||
|
|
||||||
|
linknvme:nvme-solidigm-id-ctrl[1]::
|
||||||
|
Solidigm - NVMe Identify Controller
|
||||||
|
|
||||||
|
linknvme:nvme-solidigm-smart-log-add[1]::
|
||||||
|
Retrieve Solidigm SMART Log
|
||||||
|
|
||||||
|
linknvme:nvme-solidigm-vs-internal-log[1]::
|
||||||
|
Retrieve Debug log binaries
|
||||||
|
|
||||||
|
linknvme:nvme-solidigm-garbage-collect-log[1]::
|
||||||
|
Retrieve Garbage Collection Log
|
||||||
|
|
||||||
|
linknvme:nvme-solidigm-market-log[1]::
|
||||||
|
Retrieve Market Log
|
||||||
|
|
||||||
|
linknvme:nvme-solidigm-latency-tracking-log[1]::
|
||||||
|
Enable/Retrieve Latency tracking Log
|
||||||
|
|
||||||
|
linknvme:nvme-solidigm-parse-telemetry-log[1]::
|
||||||
|
Parse Telemetry Log binary
|
||||||
|
|
||||||
|
linknvme:nvme-solidigm-log-page-directory[1]::
|
||||||
|
Retrieve log page directory
|
||||||
|
|
||||||
|
linknvme:nvme-solidigm-temp-stats[1]::
|
||||||
|
Retrieve Temperature Statistics log
|
||||||
|
|
||||||
|
linknvme:nvme-solidigm-vs-drive-info[1]::
|
||||||
|
Retrieve drive information
|
||||||
|
|
||||||
|
linknvme:nvme-solidigm-workload-tracker[1]::
|
||||||
|
Real Time capture Workload Tracker samples
|
||||||
|
|
|
@ -32,6 +32,7 @@ adoc_sources = [
|
||||||
'nvme-error-log',
|
'nvme-error-log',
|
||||||
'nvme-fdp-configs',
|
'nvme-fdp-configs',
|
||||||
'nvme-fdp-events',
|
'nvme-fdp-events',
|
||||||
|
'nvme-fdp-feature',
|
||||||
'nvme-fdp-set-events',
|
'nvme-fdp-set-events',
|
||||||
'nvme-fdp-stats',
|
'nvme-fdp-stats',
|
||||||
'nvme-fdp-status',
|
'nvme-fdp-status',
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-admin-passthru
|
.\" Title: nvme-admin-passthru
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-ADMIN\-PASSTHR" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-ADMIN\-PASSTHR" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-admin-passthru(1)</title>
|
<title>nvme-admin-passthru(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -1038,7 +1038,7 @@ Or if you want to save that structure to a file:
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-ana-log
|
.\" Title: nvme-ana-log
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-ANA\-LOG" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-ANA\-LOG" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-ana-log(1)</title>
|
<title>nvme-ana-log(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -835,7 +835,7 @@ Print the ANA log page in a human readable format:
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-attach-ns
|
.\" Title: nvme-attach-ns
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-ATTACH\-NS" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-ATTACH\-NS" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
@ -39,11 +39,13 @@ nvme-attach-ns \- Send NVMe attach namespace, return result\&.
|
||||||
.SH "DESCRIPTION"
|
.SH "DESCRIPTION"
|
||||||
.sp
|
.sp
|
||||||
For the NVMe device given, sends the nvme namespace attach command for the provided namespace identifier, attaching to the provided list of controller identifiers\&.
|
For the NVMe device given, sends the nvme namespace attach command for the provided namespace identifier, attaching to the provided list of controller identifiers\&.
|
||||||
|
.sp
|
||||||
|
The <device> parameter is mandatory NVMe character device (ex: /dev/nvme0) but not a namespace block device (ex: /dev/nvme0n1)\&.
|
||||||
.SH "OPTIONS"
|
.SH "OPTIONS"
|
||||||
.PP
|
.PP
|
||||||
\-n <nsid>, \-\-namespace\-id=<nsid>
|
\-n <nsid>, \-\-namespace\-id=<nsid>
|
||||||
.RS 4
|
.RS 4
|
||||||
The namespace identifier to attach\&.
|
The namespace identifier to attach but not attached already\&.
|
||||||
.RE
|
.RE
|
||||||
.PP
|
.PP
|
||||||
\-c <ctrl\-list,>, \-controllers=<ctrl\-list,>
|
\-c <ctrl\-list,>, \-controllers=<ctrl\-list,>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-attach-ns(1)</title>
|
<title>nvme-attach-ns(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -762,6 +762,8 @@ nvme-attach-ns(1) Manual Page
|
||||||
<div class="paragraph"><p>For the NVMe device given, sends the nvme namespace attach command for
|
<div class="paragraph"><p>For the NVMe device given, sends the nvme namespace attach command for
|
||||||
the provided namespace identifier, attaching to the provided list of
|
the provided namespace identifier, attaching to the provided list of
|
||||||
controller identifiers.</p></div>
|
controller identifiers.</p></div>
|
||||||
|
<div class="paragraph"><p>The <device> parameter is mandatory NVMe character device (ex: /dev/nvme0) but
|
||||||
|
not a namespace block device (ex: /dev/nvme0n1).</p></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="sect1">
|
<div class="sect1">
|
||||||
|
@ -776,7 +778,7 @@ controller identifiers.</p></div>
|
||||||
</dt>
|
</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<p>
|
<p>
|
||||||
The namespace identifier to attach.
|
The namespace identifier to attach but not attached already.
|
||||||
</p>
|
</p>
|
||||||
</dd>
|
</dd>
|
||||||
<dt class="hdlist1">
|
<dt class="hdlist1">
|
||||||
|
@ -841,7 +843,7 @@ controller identifiers.</p></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -18,11 +18,14 @@ For the NVMe device given, sends the nvme namespace attach command for
|
||||||
the provided namespace identifier, attaching to the provided list of
|
the provided namespace identifier, attaching to the provided list of
|
||||||
controller identifiers.
|
controller identifiers.
|
||||||
|
|
||||||
|
The <device> parameter is mandatory NVMe character device (ex: /dev/nvme0) but
|
||||||
|
not a namespace block device (ex: /dev/nvme0n1).
|
||||||
|
|
||||||
OPTIONS
|
OPTIONS
|
||||||
-------
|
-------
|
||||||
-n <nsid>::
|
-n <nsid>::
|
||||||
--namespace-id=<nsid>::
|
--namespace-id=<nsid>::
|
||||||
The namespace identifier to attach.
|
The namespace identifier to attach but not attached already.
|
||||||
|
|
||||||
-c <ctrl-list,>::
|
-c <ctrl-list,>::
|
||||||
-controllers=<ctrl-list,>::
|
-controllers=<ctrl-list,>::
|
||||||
|
|
51
Documentation/nvme-ave-discovery-log.txt
Normal file
51
Documentation/nvme-ave-discovery-log.txt
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
nvme-ave-discovery-log(1)
|
||||||
|
=========================
|
||||||
|
|
||||||
|
NAME
|
||||||
|
----
|
||||||
|
nvme-ave-discovery-log - Retrieve AVE Discovery Log, show it
|
||||||
|
|
||||||
|
SYNOPSIS
|
||||||
|
--------
|
||||||
|
[verse]
|
||||||
|
'nvme ave-discovery-log' <device> [--rae | -r] [--verbose | -v]
|
||||||
|
[--output-format=<fmt> | -o <fmt>] [--timeout=<timeout>]
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
-----------
|
||||||
|
Retrieve AVE Discovery Log, show it
|
||||||
|
|
||||||
|
The <device> parameter is mandatory NVMe character device (ex: /dev/nvme0).
|
||||||
|
|
||||||
|
On success it returns 0, error code otherwise.
|
||||||
|
|
||||||
|
OPTIONS
|
||||||
|
-------
|
||||||
|
-r::
|
||||||
|
--rae::
|
||||||
|
Retain an Asynchronous Event.
|
||||||
|
|
||||||
|
-v::
|
||||||
|
--verbose::
|
||||||
|
Increase the information detail in the output.
|
||||||
|
|
||||||
|
-o <fmt>::
|
||||||
|
--output-format=<fmt>::
|
||||||
|
Set the reporting format to 'normal', 'json' or 'binary'. Only one
|
||||||
|
output format can be used at a time.
|
||||||
|
|
||||||
|
-t <timeout>::
|
||||||
|
--timeout=<timeout>::
|
||||||
|
Override default timeout value. In milliseconds.
|
||||||
|
|
||||||
|
EXAMPLES
|
||||||
|
--------
|
||||||
|
* Has the program issue a ave-discovery-log
|
||||||
|
+
|
||||||
|
------------
|
||||||
|
# nvme ave-discovery-log /dev/nvme0
|
||||||
|
------------
|
||||||
|
|
||||||
|
NVME
|
||||||
|
----
|
||||||
|
Part of the nvme-user suite.
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-boot-part-log
|
.\" Title: nvme-boot-part-log
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-BOOT\-PART\-LO" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-BOOT\-PART\-LO" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-boot-part-log(1)</title>
|
<title>nvme-boot-part-log(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -846,7 +846,7 @@ Retrieve Boot Partition data to boot_part_log.bin
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-capacity-mgmt
|
.\" Title: nvme-capacity-mgmt
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-CAPACITY\-MGMT" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-CAPACITY\-MGMT" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-capacity-mgmt(1)</title>
|
<title>nvme-capacity-mgmt(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -875,7 +875,7 @@ device (ex: /dev/nvme0), or a namespace block device (ex: /dev/nvme0n1).</p></di
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
67
Documentation/nvme-changed-alloc-ns-list-log.txt
Normal file
67
Documentation/nvme-changed-alloc-ns-list-log.txt
Normal file
|
@ -0,0 +1,67 @@
|
||||||
|
nvme-changed-alloc-ns-list-log(1)
|
||||||
|
=================================
|
||||||
|
|
||||||
|
NAME
|
||||||
|
----
|
||||||
|
nvme-changed-alloc-ns-list-log - Send NVMe Changed Allocated Namespace List
|
||||||
|
log page request, returns result and log.
|
||||||
|
|
||||||
|
SYNOPSIS
|
||||||
|
--------
|
||||||
|
[verse]
|
||||||
|
'nvme changed-alloc-ns-list-log' <device> [--raw-binary | -b]
|
||||||
|
[--output-format=<fmt> | -o <fmt>] [--verbose | -v]
|
||||||
|
[--timeout=<timeout>]
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
-----------
|
||||||
|
Retrieves the NVMe Changed Allocated Namespace List log page from an NVMe
|
||||||
|
device and provides the returned structure.
|
||||||
|
|
||||||
|
The <device> parameter is mandatory and must be a NVMe character device
|
||||||
|
(ex: /dev/nvme0).
|
||||||
|
|
||||||
|
On success, the returned Changed Allocated Namespace List log structure may
|
||||||
|
be returned in one of several ways depending on the option flags; the
|
||||||
|
structure may parsed by the program and printed in a readable format or
|
||||||
|
the raw buffer may be printed to stdout for another program to parse.
|
||||||
|
|
||||||
|
OPTIONS
|
||||||
|
-------
|
||||||
|
-b::
|
||||||
|
--raw-binary::
|
||||||
|
Print the raw Changed Namespace List log buffer to stdout.
|
||||||
|
|
||||||
|
-o <fmt>::
|
||||||
|
--output-format=<fmt>::
|
||||||
|
Set the reporting format to 'normal', 'json' or 'binary'. Only one
|
||||||
|
output format can be used at a time.
|
||||||
|
|
||||||
|
-v::
|
||||||
|
--verbose::
|
||||||
|
Increase the information detail in the output.
|
||||||
|
|
||||||
|
-t <timeout>::
|
||||||
|
--timeout=<timeout>::
|
||||||
|
Override default timeout value. In milliseconds.
|
||||||
|
|
||||||
|
EXAMPLES
|
||||||
|
--------
|
||||||
|
* Print the Changed Allocated Namespace List Log page in a human readable format:
|
||||||
|
+
|
||||||
|
------------
|
||||||
|
# nvme changed-alloc-ns-list-log /dev/nvme0
|
||||||
|
------------
|
||||||
|
+
|
||||||
|
|
||||||
|
* Print the raw Changed Allocated Namespace List log to a file:
|
||||||
|
+
|
||||||
|
------------
|
||||||
|
# nvme changed-alloc-ns-list-log /dev/nvme0 --raw-binary > log.raw
|
||||||
|
------------
|
||||||
|
+
|
||||||
|
It is probably a bad idea to not redirect stdout when using this mode.
|
||||||
|
|
||||||
|
NVME
|
||||||
|
----
|
||||||
|
Part of the nvme-user suite
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-changed-ns-list-log
|
.\" Title: nvme-changed-ns-list-log
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-CHANGED\-NS\-L" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-CHANGED\-NS\-L" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-changed-ns-list-log(1)</title>
|
<title>nvme-changed-ns-list-log(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -846,7 +846,7 @@ Print the raw Changed Namespace List log to a file:
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-cmdset-ind-id-ns
|
.\" Title: nvme-cmdset-ind-id-ns
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-CMDSET\-IND\-I" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-CMDSET\-IND\-I" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-cmdset-ind-id-ns(1)</title>
|
<title>nvme-cmdset-ind-id-ns(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -889,7 +889,7 @@ Have the program return the raw structure in binary:
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-compare
|
.\" Title: nvme-compare
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-COMPARE" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-COMPARE" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-compare(1)</title>
|
<title>nvme-compare(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -1125,7 +1125,7 @@ metadata is passes.</p></td>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-connect-all
|
.\" Title: nvme-connect-all
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-CONNECT\-ALL" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-CONNECT\-ALL" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-connect-all(1)</title>
|
<title>nvme-connect-all(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -1273,7 +1273,7 @@ nvme-connect(1)</p></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-connect
|
.\" Title: nvme-connect
|
||||||
.\" Author: [see the "AUTHORS" section]
|
.\" Author: [see the "AUTHORS" section]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-CONNECT" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-CONNECT" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-connect(1)</title>
|
<title>nvme-connect(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -1235,7 +1235,7 @@ and <a href="mailto:hch@lst.de">Christoph Hellwig</a></p></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-copy
|
.\" Title: nvme-copy
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-COPY" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-COPY" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-copy(1)</title>
|
<title>nvme-copy(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -1042,7 +1042,7 @@ logical block ranges to a single consecutive destination logical block range.</p
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-create-ns
|
.\" Title: nvme-create-ns
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-CREATE\-NS" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-CREATE\-NS" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
@ -123,12 +123,12 @@ Target block size the new namespace should be formatted as\&. Potential FLBAS va
|
||||||
.PP
|
.PP
|
||||||
\-S, \-\-nsze\-si
|
\-S, \-\-nsze\-si
|
||||||
.RS 4
|
.RS 4
|
||||||
The namespace size (NSZE) in standard SI units (aligned on 1Mib boundaries, unless the controller recommends a smaller value)\&. The value SI suffixed is divided by the namespace LBA size to set as NSZE\&. If the value not suffixed it is set as same with the nsze option\&.
|
The namespace size (NSZE) in standard SI units (aligned on 1Mib boundaries, unless the controller recommends a different value, see namespace granularity)\&. The value SI suffixed is divided by the namespace LBA size to set as NSZE\&. If the value not suffixed it is set as same with the nsze option\&.
|
||||||
.RE
|
.RE
|
||||||
.PP
|
.PP
|
||||||
\-C, \-\-ncap\-si
|
\-C, \-\-ncap\-si
|
||||||
.RS 4
|
.RS 4
|
||||||
The namespace capacity (NCAP) in standard SI units (aligned on 1Mib boundaries, unless the controller recommends a smaller value)\&. The value SI suffixed is divided by the namespace LBA size to set as NCAP\&. If the value not suffixed it is set as same with the ncap option\&.
|
The namespace capacity (NCAP) in standard SI units (aligned on 1Mib boundaries, unless the controller recommends a different value, see namespace granularity)\&. The value SI suffixed is divided by the namespace LBA size to set as NCAP\&. If the value not suffixed it is set as same with the ncap option\&.
|
||||||
.RE
|
.RE
|
||||||
.PP
|
.PP
|
||||||
\-z, \-\-azr
|
\-z, \-\-azr
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-create-ns(1)</title>
|
<title>nvme-create-ns(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -936,7 +936,8 @@ device (ex: /dev/nvme0), or a namespace block device (ex: /dev/nvme0n1).</p></di
|
||||||
<dd>
|
<dd>
|
||||||
<p>
|
<p>
|
||||||
The namespace size (NSZE) in standard SI units (aligned on 1Mib boundaries,
|
The namespace size (NSZE) in standard SI units (aligned on 1Mib boundaries,
|
||||||
unless the controller recommends a smaller value).
|
unless the controller recommends a different value, see namespace
|
||||||
|
granularity).
|
||||||
The value SI suffixed is divided by the namespace LBA size to set as NSZE.
|
The value SI suffixed is divided by the namespace LBA size to set as NSZE.
|
||||||
If the value not suffixed it is set as same with the nsze option.
|
If the value not suffixed it is set as same with the nsze option.
|
||||||
</p>
|
</p>
|
||||||
|
@ -950,7 +951,8 @@ device (ex: /dev/nvme0), or a namespace block device (ex: /dev/nvme0n1).</p></di
|
||||||
<dd>
|
<dd>
|
||||||
<p>
|
<p>
|
||||||
The namespace capacity (NCAP) in standard SI units (aligned on 1Mib boundaries,
|
The namespace capacity (NCAP) in standard SI units (aligned on 1Mib boundaries,
|
||||||
unless the controller recommends a smaller value).
|
unless the controller recommends a different value, see namespace
|
||||||
|
granularity).
|
||||||
The value SI suffixed is divided by the namespace LBA size to set as NCAP.
|
The value SI suffixed is divided by the namespace LBA size to set as NCAP.
|
||||||
If the value not suffixed it is set as same with the ncap option.
|
If the value not suffixed it is set as same with the ncap option.
|
||||||
</p>
|
</p>
|
||||||
|
@ -1082,7 +1084,7 @@ Create a namespace:
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -99,14 +99,16 @@ OPTIONS
|
||||||
-S::
|
-S::
|
||||||
--nsze-si::
|
--nsze-si::
|
||||||
The namespace size (NSZE) in standard SI units (aligned on 1Mib boundaries,
|
The namespace size (NSZE) in standard SI units (aligned on 1Mib boundaries,
|
||||||
unless the controller recommends a smaller value).
|
unless the controller recommends a different value, see namespace
|
||||||
|
granularity).
|
||||||
The value SI suffixed is divided by the namespace LBA size to set as NSZE.
|
The value SI suffixed is divided by the namespace LBA size to set as NSZE.
|
||||||
If the value not suffixed it is set as same with the nsze option.
|
If the value not suffixed it is set as same with the nsze option.
|
||||||
|
|
||||||
-C::
|
-C::
|
||||||
--ncap-si::
|
--ncap-si::
|
||||||
The namespace capacity (NCAP) in standard SI units (aligned on 1Mib boundaries,
|
The namespace capacity (NCAP) in standard SI units (aligned on 1Mib boundaries,
|
||||||
unless the controller recommends a smaller value).
|
unless the controller recommends a different value, see namespace
|
||||||
|
granularity).
|
||||||
The value SI suffixed is divided by the namespace LBA size to set as NCAP.
|
The value SI suffixed is divided by the namespace LBA size to set as NCAP.
|
||||||
If the value not suffixed it is set as same with the ncap option.
|
If the value not suffixed it is set as same with the ncap option.
|
||||||
|
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-dapustor-smart-log-add
|
.\" Title: nvme-dapustor-smart-log-add
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-DAPUSTOR\-SMAR" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-DAPUSTOR\-SMAR" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-dapustor-smart-log-add(1)</title>
|
<title>nvme-dapustor-smart-log-add(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -849,7 +849,7 @@ Print the raw DapuStor Additional SMART log to a file:
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-id-ns
|
.\" Title: nvme-id-ns
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-ID\-NS" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-ID\-NS" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-id-ns(1)</title>
|
<title>nvme-id-ns(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -835,7 +835,7 @@ The <code>'--namespace-id'</code> option is mandatory.</p></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-dera-stat
|
.\" Title: nvme-dera-stat
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-DERA\-STAT" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-DERA\-STAT" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-dera-stat(1)</title>
|
<title>nvme-dera-stat(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -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">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-detach-ns
|
.\" Title: nvme-detach-ns
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-DETACH\-NS" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-DETACH\-NS" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-detach-ns(1)</title>
|
<title>nvme-detach-ns(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -834,7 +834,7 @@ controller identifiers.</p></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-device-self-test
|
.\" Title: nvme-device-self-test
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-DEVICE\-SELF\-" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-DEVICE\-SELF\-" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-device-self-test(1)</title>
|
<title>nvme-device-self-test(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -885,7 +885,7 @@ Abort the device self-test operation in the namespace-id 1:
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-dim
|
.\" Title: nvme-dim
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-DIM" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-DIM" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-dim(1)</title>
|
<title>nvme-dim(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -885,7 +885,7 @@ Deregister from Central Discovery Controller (CDC) associated with nvme4
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-dir-receive
|
.\" Title: nvme-dir-receive
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-DIR\-RECEIVE" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-DIR\-RECEIVE" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-dir-receive(1)</title>
|
<title>nvme-dir-receive(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -1001,7 +1001,7 @@ Get streams directive status :
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-dir-send
|
.\" Title: nvme-dir-send
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-DIR\-SEND" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-DIR\-SEND" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-dir-send(1)</title>
|
<title>nvme-dir-send(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -1014,7 +1014,7 @@ Release stream ID 3 :
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-disconnect-all
|
.\" Title: nvme-disconnect-all
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-DISCONNECT\-AL" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-DISCONNECT\-AL" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-disconnect-all(1)</title>
|
<title>nvme-disconnect-all(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -825,7 +825,7 @@ Disconnect all existing nvme controllers:
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-disconnect
|
.\" Title: nvme-disconnect
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-DISCONNECT" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-DISCONNECT" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-disconnect(1)</title>
|
<title>nvme-disconnect(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -862,7 +862,7 @@ Disconnect the controller nvme4
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-discover
|
.\" Title: nvme-discover
|
||||||
.\" Author: [see the "AUTHORS" section]
|
.\" Author: [see the "AUTHORS" section]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-DISCOVER" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-DISCOVER" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-discover(1)</title>
|
<title>nvme-discover(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -1322,7 +1322,7 @@ nvme-connect-all(1)</p></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
55
Documentation/nvme-dispersed-ns-participating-nss-log.txt
Normal file
55
Documentation/nvme-dispersed-ns-participating-nss-log.txt
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
nvme-dispersed-ns-participating-nss-log(1)
|
||||||
|
==========================================
|
||||||
|
|
||||||
|
NAME
|
||||||
|
----
|
||||||
|
nvme-dispersed-ns-participating-nss-log - Retrieve Dispersed Namespace
|
||||||
|
Participating NVM Subsystems Log, show it
|
||||||
|
|
||||||
|
SYNOPSIS
|
||||||
|
--------
|
||||||
|
[verse]
|
||||||
|
'nvme dispersed-ns-participating-nss-log' <device>
|
||||||
|
[--namespace-id=<nsid> | -n <nsid>] [--verbose | -v]
|
||||||
|
[--output-format=<fmt> | -o <fmt>] [--timeout=<timeout>]
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
-----------
|
||||||
|
Retrieve Dispersed Namespace Participating NVM Subsystems Log, show it
|
||||||
|
|
||||||
|
The <device> parameter is mandatory NVMe character device (ex: /dev/nvme0).
|
||||||
|
|
||||||
|
On success it returns 0, error code otherwise.
|
||||||
|
|
||||||
|
OPTIONS
|
||||||
|
-------
|
||||||
|
-n <nsid>::
|
||||||
|
--namespace-id=<nsid>::
|
||||||
|
The namespace identifier to delete.
|
||||||
|
Retrieve the dispersed namespace participating NVM subsystems log for
|
||||||
|
the given nsid.
|
||||||
|
|
||||||
|
-v::
|
||||||
|
--verbose::
|
||||||
|
Increase the information detail in the output.
|
||||||
|
|
||||||
|
-o <fmt>::
|
||||||
|
--output-format=<fmt>::
|
||||||
|
Set the reporting format to 'normal', 'json' or 'binary'. Only one
|
||||||
|
output format can be used at a time.
|
||||||
|
|
||||||
|
-t <timeout>::
|
||||||
|
--timeout=<timeout>::
|
||||||
|
Override default timeout value. In milliseconds.
|
||||||
|
|
||||||
|
EXAMPLES
|
||||||
|
--------
|
||||||
|
* Has the program issue a dispersed-ns-participating-nss-log
|
||||||
|
+
|
||||||
|
------------
|
||||||
|
# nvme dispersed-ns-participating-nss-log /dev/nvme0 --namespace-id=2
|
||||||
|
------------
|
||||||
|
|
||||||
|
NVME
|
||||||
|
----
|
||||||
|
Part of the nvme-user suite.
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-dsm
|
.\" Title: nvme-dsm
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-DSM" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-DSM" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-dsm(1)</title>
|
<title>nvme-dsm(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -930,7 +930,7 @@ any settings from the flags may have provided.</p></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-effects-log
|
.\" Title: nvme-effects-log
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-EFFECTS\-LOG" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-EFFECTS\-LOG" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-effects-log(1)</title>
|
<title>nvme-effects-log(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -869,7 +869,7 @@ Have the program return the raw structure in binary:
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-endurance-event-agg-log
|
.\" Title: nvme-endurance-event-agg-log
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-ENDURANCE\-EVE" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-ENDURANCE\-EVE" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-endurance-event-agg-log(1)</title>
|
<title>nvme-endurance-event-agg-log(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -862,7 +862,7 @@ Print the raw Endurance log to a file:
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-endurance-log
|
.\" Title: nvme-endurance-log
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-ENDURANCE\-LOG" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-ENDURANCE\-LOG" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-endurance-log(1)</title>
|
<title>nvme-endurance-log(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -845,7 +845,7 @@ Print the raw Endurance log to a file:
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-error-log
|
.\" Title: nvme-error-log
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-ERROR\-LOG" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-ERROR\-LOG" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-error-log(1)</title>
|
<title>nvme-error-log(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -860,7 +860,7 @@ Print the raw output to a file:
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-fdp-configs
|
.\" Title: nvme-fdp-configs
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-FDP\-CONFIGS" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-FDP\-CONFIGS" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-fdp-configs(1)</title>
|
<title>nvme-fdp-configs(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -826,7 +826,7 @@ the possible configurations for Flexible Data Placement.</p></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-fdp-events
|
.\" Title: nvme-fdp-events
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-FDP\-EVENTS" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-FDP\-EVENTS" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-fdp-events(1)</title>
|
<title>nvme-fdp-events(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -825,7 +825,7 @@ Units and media usage in an Endurance Group.</p></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
86
Documentation/nvme-fdp-feature.1
Normal file
86
Documentation/nvme-fdp-feature.1
Normal file
|
@ -0,0 +1,86 @@
|
||||||
|
'\" t
|
||||||
|
.\" 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: 03/17/2025
|
||||||
|
.\" Manual: NVMe Manual
|
||||||
|
.\" Source: NVMe
|
||||||
|
.\" Language: English
|
||||||
|
.\"
|
||||||
|
.TH "NVME\-FDP\-FEATURE" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
|
.\" -----------------------------------------------------------------
|
||||||
|
.\" * Define some portability stuff
|
||||||
|
.\" -----------------------------------------------------------------
|
||||||
|
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
.\" http://bugs.debian.org/507673
|
||||||
|
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
|
||||||
|
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
.ie \n(.g .ds Aq \(aq
|
||||||
|
.el .ds Aq '
|
||||||
|
.\" -----------------------------------------------------------------
|
||||||
|
.\" * set default formatting
|
||||||
|
.\" -----------------------------------------------------------------
|
||||||
|
.\" disable hyphenation
|
||||||
|
.nh
|
||||||
|
.\" disable justification (adjust text to left margin only)
|
||||||
|
.ad l
|
||||||
|
.\" -----------------------------------------------------------------
|
||||||
|
.\" * MAIN CONTENT STARTS HERE *
|
||||||
|
.\" -----------------------------------------------------------------
|
||||||
|
.SH "NAME"
|
||||||
|
nvme-fdp-feature \- Show or change Flexible Data Placement (FDP) Feature
|
||||||
|
.SH "SYNOPSIS"
|
||||||
|
.sp
|
||||||
|
.nf
|
||||||
|
\fInvme fdp\fR <device> [\-\-endgrp\-id=<NUM> | \-e <NUM>]
|
||||||
|
[\-\-enable\-conf\-idx=<NUM> | \-c <NUM>]
|
||||||
|
[\-\-disable | \-d]
|
||||||
|
[\-\-verbose | \-v]
|
||||||
|
.fi
|
||||||
|
.SH "DESCRIPTION"
|
||||||
|
.sp
|
||||||
|
For the NVMe device given, configure and manage the Flexible Data Placement (FDP) feature\&.
|
||||||
|
.sp
|
||||||
|
This command can be used to either show the current FDP feature configuration or change it\&.
|
||||||
|
.sp
|
||||||
|
.if n \{\
|
||||||
|
.RS 4
|
||||||
|
.\}
|
||||||
|
.nf
|
||||||
|
If no `\-\-enable\-conf\-idx` or `\-\-disable` options are provided, the current configuration is
|
||||||
|
displayed\&.
|
||||||
|
.fi
|
||||||
|
.if n \{\
|
||||||
|
.RE
|
||||||
|
.\}
|
||||||
|
.sp
|
||||||
|
If the \-\-enable\-conf\-idx or \-\-disable options are provided, configuration is changed accordingly\&. Device may refuse the change if there is a namespace\&.
|
||||||
|
.sp
|
||||||
|
The <device> parameter is mandatory and must be a NVMe character device (ex: /dev/nvme0)
|
||||||
|
.SH "OPTIONS"
|
||||||
|
.PP
|
||||||
|
\-e <NUM>, \-\-endgrp\-id=<NUM>
|
||||||
|
.RS 4
|
||||||
|
Specify the endurance group ID\&. This option is mandatory if device supports endurance groups\&.
|
||||||
|
.RE
|
||||||
|
.PP
|
||||||
|
\-c <NUM>, \-\-enable\-conf\-idx=<NUM>
|
||||||
|
.RS 4
|
||||||
|
Enable FDP feature with the specified configuration\&. The configuration index matches position listed by nvme\-fdp\-config(1)\&.
|
||||||
|
.RE
|
||||||
|
.PP
|
||||||
|
\-d, \-\-disable
|
||||||
|
.RS 4
|
||||||
|
Disable the current FDP feature configuration\&.
|
||||||
|
.RE
|
||||||
|
.PP
|
||||||
|
\-v, \-\-verbose
|
||||||
|
.RS 4
|
||||||
|
Increase verbosity of the output\&.
|
||||||
|
.RE
|
||||||
|
.SH "SEE ALSO"
|
||||||
|
.sp
|
||||||
|
nvme\-list\-endgrp(1) nvme\-fdp\-config(1)
|
||||||
|
.SH "NVME"
|
||||||
|
.sp
|
||||||
|
Part of nvme\-cli
|
849
Documentation/nvme-fdp-feature.html
Normal file
849
Documentation/nvme-fdp-feature.html
Normal file
|
@ -0,0 +1,849 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
|
<title>nvme-fdp-feature(1)</title>
|
||||||
|
<style type="text/css">
|
||||||
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
|
||||||
|
/* Default font. */
|
||||||
|
body {
|
||||||
|
font-family: Georgia,serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Title font. */
|
||||||
|
h1, h2, h3, h4, h5, h6,
|
||||||
|
div.title, caption.title,
|
||||||
|
thead, p.table.header,
|
||||||
|
#toctitle,
|
||||||
|
#author, #revnumber, #revdate, #revremark,
|
||||||
|
#footer {
|
||||||
|
font-family: Arial,Helvetica,sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 1em 5% 1em 5%;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: blue;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
a:visited {
|
||||||
|
color: fuchsia;
|
||||||
|
}
|
||||||
|
|
||||||
|
em {
|
||||||
|
font-style: italic;
|
||||||
|
color: navy;
|
||||||
|
}
|
||||||
|
|
||||||
|
strong {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #083194;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
color: #527bbd;
|
||||||
|
margin-top: 1.2em;
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
line-height: 1.3;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3 {
|
||||||
|
border-bottom: 2px solid silver;
|
||||||
|
}
|
||||||
|
h2 {
|
||||||
|
padding-top: 0.5em;
|
||||||
|
}
|
||||||
|
h3 {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
h3 + * {
|
||||||
|
clear: left;
|
||||||
|
}
|
||||||
|
h5 {
|
||||||
|
font-size: 1.0em;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.sectionbody {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
border: 1px solid silver;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin-top: 0.5em;
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul, ol, li > p {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
ul > li { color: #aaa; }
|
||||||
|
ul > li > * { color: black; }
|
||||||
|
|
||||||
|
.monospaced, code, pre {
|
||||||
|
font-family: "Courier New", Courier, monospace;
|
||||||
|
font-size: inherit;
|
||||||
|
color: navy;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
pre {
|
||||||
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
#author {
|
||||||
|
color: #527bbd;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 1.1em;
|
||||||
|
}
|
||||||
|
#email {
|
||||||
|
}
|
||||||
|
#revnumber, #revdate, #revremark {
|
||||||
|
}
|
||||||
|
|
||||||
|
#footer {
|
||||||
|
font-size: small;
|
||||||
|
border-top: 2px solid silver;
|
||||||
|
padding-top: 0.5em;
|
||||||
|
margin-top: 4.0em;
|
||||||
|
}
|
||||||
|
#footer-text {
|
||||||
|
float: left;
|
||||||
|
padding-bottom: 0.5em;
|
||||||
|
}
|
||||||
|
#footer-badges {
|
||||||
|
float: right;
|
||||||
|
padding-bottom: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#preamble {
|
||||||
|
margin-top: 1.5em;
|
||||||
|
margin-bottom: 1.5em;
|
||||||
|
}
|
||||||
|
div.imageblock, div.exampleblock, div.verseblock,
|
||||||
|
div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
|
||||||
|
div.admonitionblock {
|
||||||
|
margin-top: 1.0em;
|
||||||
|
margin-bottom: 1.5em;
|
||||||
|
}
|
||||||
|
div.admonitionblock {
|
||||||
|
margin-top: 2.0em;
|
||||||
|
margin-bottom: 2.0em;
|
||||||
|
margin-right: 10%;
|
||||||
|
color: #606060;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.content { /* Block element content. */
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Block element titles. */
|
||||||
|
div.title, caption.title {
|
||||||
|
color: #527bbd;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: left;
|
||||||
|
margin-top: 1.0em;
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
}
|
||||||
|
div.title + * {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
td div.title:first-child {
|
||||||
|
margin-top: 0.0em;
|
||||||
|
}
|
||||||
|
div.content div.title:first-child {
|
||||||
|
margin-top: 0.0em;
|
||||||
|
}
|
||||||
|
div.content + div.title {
|
||||||
|
margin-top: 0.0em;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.sidebarblock > div.content {
|
||||||
|
background: #ffffee;
|
||||||
|
border: 1px solid #dddddd;
|
||||||
|
border-left: 4px solid #f0f0f0;
|
||||||
|
padding: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.listingblock > div.content {
|
||||||
|
border: 1px solid #dddddd;
|
||||||
|
border-left: 5px solid #f0f0f0;
|
||||||
|
background: #f8f8f8;
|
||||||
|
padding: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.quoteblock, div.verseblock {
|
||||||
|
padding-left: 1.0em;
|
||||||
|
margin-left: 1.0em;
|
||||||
|
margin-right: 10%;
|
||||||
|
border-left: 5px solid #f0f0f0;
|
||||||
|
color: #888;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.quoteblock > div.attribution {
|
||||||
|
padding-top: 0.5em;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.verseblock > pre.content {
|
||||||
|
font-family: inherit;
|
||||||
|
font-size: inherit;
|
||||||
|
}
|
||||||
|
div.verseblock > div.attribution {
|
||||||
|
padding-top: 0.75em;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
/* DEPRECATED: Pre version 8.2.7 verse style literal block. */
|
||||||
|
div.verseblock + div.attribution {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.admonitionblock .icon {
|
||||||
|
vertical-align: top;
|
||||||
|
font-size: 1.1em;
|
||||||
|
font-weight: bold;
|
||||||
|
text-decoration: underline;
|
||||||
|
color: #527bbd;
|
||||||
|
padding-right: 0.5em;
|
||||||
|
}
|
||||||
|
div.admonitionblock td.content {
|
||||||
|
padding-left: 0.5em;
|
||||||
|
border-left: 3px solid #dddddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.exampleblock > div.content {
|
||||||
|
border-left: 3px solid #dddddd;
|
||||||
|
padding-left: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.imageblock div.content { padding-left: 0; }
|
||||||
|
span.image img { border-style: none; vertical-align: text-bottom; }
|
||||||
|
a.image:visited { color: white; }
|
||||||
|
|
||||||
|
dl {
|
||||||
|
margin-top: 0.8em;
|
||||||
|
margin-bottom: 0.8em;
|
||||||
|
}
|
||||||
|
dt {
|
||||||
|
margin-top: 0.5em;
|
||||||
|
margin-bottom: 0;
|
||||||
|
font-style: normal;
|
||||||
|
color: navy;
|
||||||
|
}
|
||||||
|
dd > *:first-child {
|
||||||
|
margin-top: 0.1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul, ol {
|
||||||
|
list-style-position: outside;
|
||||||
|
}
|
||||||
|
ol.arabic {
|
||||||
|
list-style-type: decimal;
|
||||||
|
}
|
||||||
|
ol.loweralpha {
|
||||||
|
list-style-type: lower-alpha;
|
||||||
|
}
|
||||||
|
ol.upperalpha {
|
||||||
|
list-style-type: upper-alpha;
|
||||||
|
}
|
||||||
|
ol.lowerroman {
|
||||||
|
list-style-type: lower-roman;
|
||||||
|
}
|
||||||
|
ol.upperroman {
|
||||||
|
list-style-type: upper-roman;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.compact ul, div.compact ol,
|
||||||
|
div.compact p, div.compact p,
|
||||||
|
div.compact div, div.compact div {
|
||||||
|
margin-top: 0.1em;
|
||||||
|
margin-bottom: 0.1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
tfoot {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
td > div.verse {
|
||||||
|
white-space: pre;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.hdlist {
|
||||||
|
margin-top: 0.8em;
|
||||||
|
margin-bottom: 0.8em;
|
||||||
|
}
|
||||||
|
div.hdlist tr {
|
||||||
|
padding-bottom: 15px;
|
||||||
|
}
|
||||||
|
dt.hdlist1.strong, td.hdlist1.strong {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
td.hdlist1 {
|
||||||
|
vertical-align: top;
|
||||||
|
font-style: normal;
|
||||||
|
padding-right: 0.8em;
|
||||||
|
color: navy;
|
||||||
|
}
|
||||||
|
td.hdlist2 {
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
div.hdlist.compact tr {
|
||||||
|
margin: 0;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment {
|
||||||
|
background: yellow;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footnote, .footnoteref {
|
||||||
|
font-size: 0.8em;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.footnote, span.footnoteref {
|
||||||
|
vertical-align: super;
|
||||||
|
}
|
||||||
|
|
||||||
|
#footnotes {
|
||||||
|
margin: 20px 0 20px 0;
|
||||||
|
padding: 7px 0 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#footnotes div.footnote {
|
||||||
|
margin: 0 0 5px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#footnotes hr {
|
||||||
|
border: none;
|
||||||
|
border-top: 1px solid silver;
|
||||||
|
height: 1px;
|
||||||
|
text-align: left;
|
||||||
|
margin-left: 0;
|
||||||
|
width: 20%;
|
||||||
|
min-width: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.colist td {
|
||||||
|
padding-right: 0.5em;
|
||||||
|
padding-bottom: 0.3em;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
div.colist td img {
|
||||||
|
margin-top: 0.3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
#footer-badges { display: none; }
|
||||||
|
}
|
||||||
|
|
||||||
|
#toc {
|
||||||
|
margin-bottom: 2.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#toctitle {
|
||||||
|
color: #527bbd;
|
||||||
|
font-size: 1.1em;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-top: 1.0em;
|
||||||
|
margin-bottom: 0.1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.toclevel0, div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
div.toclevel2 {
|
||||||
|
margin-left: 2em;
|
||||||
|
font-size: 0.9em;
|
||||||
|
}
|
||||||
|
div.toclevel3 {
|
||||||
|
margin-left: 4em;
|
||||||
|
font-size: 0.9em;
|
||||||
|
}
|
||||||
|
div.toclevel4 {
|
||||||
|
margin-left: 6em;
|
||||||
|
font-size: 0.9em;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.aqua { color: aqua; }
|
||||||
|
span.black { color: black; }
|
||||||
|
span.blue { color: blue; }
|
||||||
|
span.fuchsia { color: fuchsia; }
|
||||||
|
span.gray { color: gray; }
|
||||||
|
span.green { color: green; }
|
||||||
|
span.lime { color: lime; }
|
||||||
|
span.maroon { color: maroon; }
|
||||||
|
span.navy { color: navy; }
|
||||||
|
span.olive { color: olive; }
|
||||||
|
span.purple { color: purple; }
|
||||||
|
span.red { color: red; }
|
||||||
|
span.silver { color: silver; }
|
||||||
|
span.teal { color: teal; }
|
||||||
|
span.white { color: white; }
|
||||||
|
span.yellow { color: yellow; }
|
||||||
|
|
||||||
|
span.aqua-background { background: aqua; }
|
||||||
|
span.black-background { background: black; }
|
||||||
|
span.blue-background { background: blue; }
|
||||||
|
span.fuchsia-background { background: fuchsia; }
|
||||||
|
span.gray-background { background: gray; }
|
||||||
|
span.green-background { background: green; }
|
||||||
|
span.lime-background { background: lime; }
|
||||||
|
span.maroon-background { background: maroon; }
|
||||||
|
span.navy-background { background: navy; }
|
||||||
|
span.olive-background { background: olive; }
|
||||||
|
span.purple-background { background: purple; }
|
||||||
|
span.red-background { background: red; }
|
||||||
|
span.silver-background { background: silver; }
|
||||||
|
span.teal-background { background: teal; }
|
||||||
|
span.white-background { background: white; }
|
||||||
|
span.yellow-background { background: yellow; }
|
||||||
|
|
||||||
|
span.big { font-size: 2em; }
|
||||||
|
span.small { font-size: 0.6em; }
|
||||||
|
|
||||||
|
span.underline { text-decoration: underline; }
|
||||||
|
span.overline { text-decoration: overline; }
|
||||||
|
span.line-through { text-decoration: line-through; }
|
||||||
|
|
||||||
|
div.unbreakable { page-break-inside: avoid; }
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* xhtml11 specific
|
||||||
|
*
|
||||||
|
* */
|
||||||
|
|
||||||
|
div.tableblock {
|
||||||
|
margin-top: 1.0em;
|
||||||
|
margin-bottom: 1.5em;
|
||||||
|
}
|
||||||
|
div.tableblock > table {
|
||||||
|
border: 3px solid #527bbd;
|
||||||
|
}
|
||||||
|
thead, p.table.header {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #527bbd;
|
||||||
|
}
|
||||||
|
p.table {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
/* Because the table frame attribute is overridden by CSS in most browsers. */
|
||||||
|
div.tableblock > table[frame="void"] {
|
||||||
|
border-style: none;
|
||||||
|
}
|
||||||
|
div.tableblock > table[frame="hsides"] {
|
||||||
|
border-left-style: none;
|
||||||
|
border-right-style: none;
|
||||||
|
}
|
||||||
|
div.tableblock > table[frame="vsides"] {
|
||||||
|
border-top-style: none;
|
||||||
|
border-bottom-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* html5 specific
|
||||||
|
*
|
||||||
|
* */
|
||||||
|
|
||||||
|
table.tableblock {
|
||||||
|
margin-top: 1.0em;
|
||||||
|
margin-bottom: 1.5em;
|
||||||
|
}
|
||||||
|
thead, p.tableblock.header {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #527bbd;
|
||||||
|
}
|
||||||
|
p.tableblock {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
table.tableblock {
|
||||||
|
border-width: 3px;
|
||||||
|
border-spacing: 0px;
|
||||||
|
border-style: solid;
|
||||||
|
border-color: #527bbd;
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
th.tableblock, td.tableblock {
|
||||||
|
border-width: 1px;
|
||||||
|
padding: 4px;
|
||||||
|
border-style: solid;
|
||||||
|
border-color: #527bbd;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.tableblock.frame-topbot {
|
||||||
|
border-left-style: hidden;
|
||||||
|
border-right-style: hidden;
|
||||||
|
}
|
||||||
|
table.tableblock.frame-sides {
|
||||||
|
border-top-style: hidden;
|
||||||
|
border-bottom-style: hidden;
|
||||||
|
}
|
||||||
|
table.tableblock.frame-none {
|
||||||
|
border-style: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
th.tableblock.halign-left, td.tableblock.halign-left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
th.tableblock.halign-center, td.tableblock.halign-center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
th.tableblock.halign-right, td.tableblock.halign-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
th.tableblock.valign-top, td.tableblock.valign-top {
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
th.tableblock.valign-middle, td.tableblock.valign-middle {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
th.tableblock.valign-bottom, td.tableblock.valign-bottom {
|
||||||
|
vertical-align: bottom;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* manpage specific
|
||||||
|
*
|
||||||
|
* */
|
||||||
|
|
||||||
|
body.manpage h1 {
|
||||||
|
padding-top: 0.5em;
|
||||||
|
padding-bottom: 0.5em;
|
||||||
|
border-top: 2px solid silver;
|
||||||
|
border-bottom: 2px solid silver;
|
||||||
|
}
|
||||||
|
body.manpage h2 {
|
||||||
|
border-style: none;
|
||||||
|
}
|
||||||
|
body.manpage div.sectionbody {
|
||||||
|
margin-left: 3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
body.manpage div#toc { display: none; }
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
</style>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/*<+'])');
|
||||||
|
// Function that scans the DOM tree for header elements (the DOM2
|
||||||
|
// nodeIterator API would be a better technique but not supported by all
|
||||||
|
// browsers).
|
||||||
|
var iterate = function (el) {
|
||||||
|
for (var i = el.firstChild; i != null; i = i.nextSibling) {
|
||||||
|
if (i.nodeType == 1 /* Node.ELEMENT_NODE */) {
|
||||||
|
var mo = re.exec(i.tagName);
|
||||||
|
if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") {
|
||||||
|
result[result.length] = new TocEntry(i, getText(i), mo[1]-1);
|
||||||
|
}
|
||||||
|
iterate(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
iterate(el);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
var toc = document.getElementById("toc");
|
||||||
|
if (!toc) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Delete existing TOC entries in case we're reloading the TOC.
|
||||||
|
var tocEntriesToRemove = [];
|
||||||
|
var i;
|
||||||
|
for (i = 0; i < toc.childNodes.length; i++) {
|
||||||
|
var entry = toc.childNodes[i];
|
||||||
|
if (entry.nodeName.toLowerCase() == 'div'
|
||||||
|
&& entry.getAttribute("class")
|
||||||
|
&& entry.getAttribute("class").match(/^toclevel/))
|
||||||
|
tocEntriesToRemove.push(entry);
|
||||||
|
}
|
||||||
|
for (i = 0; i < tocEntriesToRemove.length; i++) {
|
||||||
|
toc.removeChild(tocEntriesToRemove[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Rebuild TOC entries.
|
||||||
|
var entries = tocEntries(document.getElementById("content"), toclevels);
|
||||||
|
for (var i = 0; i < entries.length; ++i) {
|
||||||
|
var entry = entries[i];
|
||||||
|
if (entry.element.id == "")
|
||||||
|
entry.element.id = "_toc_" + i;
|
||||||
|
var a = document.createElement("a");
|
||||||
|
a.href = "#" + entry.element.id;
|
||||||
|
a.appendChild(document.createTextNode(entry.text));
|
||||||
|
var div = document.createElement("div");
|
||||||
|
div.appendChild(a);
|
||||||
|
div.className = "toclevel" + entry.toclevel;
|
||||||
|
toc.appendChild(div);
|
||||||
|
}
|
||||||
|
if (entries.length == 0)
|
||||||
|
toc.parentNode.removeChild(toc);
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////////////////////
|
||||||
|
// Footnotes generator
|
||||||
|
/////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
/* Based on footnote generation code from:
|
||||||
|
* http://www.brandspankingnew.net/archive/2005/07/format_footnote.html
|
||||||
|
*/
|
||||||
|
|
||||||
|
footnotes: function () {
|
||||||
|
// Delete existing footnote entries in case we're reloading the footnodes.
|
||||||
|
var i;
|
||||||
|
var noteholder = document.getElementById("footnotes");
|
||||||
|
if (!noteholder) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var entriesToRemove = [];
|
||||||
|
for (i = 0; i < noteholder.childNodes.length; i++) {
|
||||||
|
var entry = noteholder.childNodes[i];
|
||||||
|
if (entry.nodeName.toLowerCase() == 'div' && entry.getAttribute("class") == "footnote")
|
||||||
|
entriesToRemove.push(entry);
|
||||||
|
}
|
||||||
|
for (i = 0; i < entriesToRemove.length; i++) {
|
||||||
|
noteholder.removeChild(entriesToRemove[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Rebuild footnote entries.
|
||||||
|
var cont = document.getElementById("content");
|
||||||
|
var spans = cont.getElementsByTagName("span");
|
||||||
|
var refs = {};
|
||||||
|
var n = 0;
|
||||||
|
for (i=0; i<spans.length; i++) {
|
||||||
|
if (spans[i].className == "footnote") {
|
||||||
|
n++;
|
||||||
|
var note = spans[i].getAttribute("data-note");
|
||||||
|
if (!note) {
|
||||||
|
// Use [\s\S] in place of . so multi-line matches work.
|
||||||
|
// Because JavaScript has no s (dotall) regex flag.
|
||||||
|
note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1];
|
||||||
|
spans[i].innerHTML =
|
||||||
|
"[<a id='_footnoteref_" + n + "' href='#_footnote_" + n +
|
||||||
|
"' title='View footnote' class='footnote'>" + n + "</a>]";
|
||||||
|
spans[i].setAttribute("data-note", note);
|
||||||
|
}
|
||||||
|
noteholder.innerHTML +=
|
||||||
|
"<div class='footnote' id='_footnote_" + n + "'>" +
|
||||||
|
"<a href='#_footnoteref_" + n + "' title='Return to text'>" +
|
||||||
|
n + "</a>. " + note + "</div>";
|
||||||
|
var id =spans[i].getAttribute("id");
|
||||||
|
if (id != null) refs["#"+id] = n;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (n == 0)
|
||||||
|
noteholder.parentNode.removeChild(noteholder);
|
||||||
|
else {
|
||||||
|
// Process footnoterefs.
|
||||||
|
for (i=0; i<spans.length; i++) {
|
||||||
|
if (spans[i].className == "footnoteref") {
|
||||||
|
var href = spans[i].getElementsByTagName("a")[0].getAttribute("href");
|
||||||
|
href = href.match(/#.*/)[0]; // Because IE return full URL.
|
||||||
|
n = refs[href];
|
||||||
|
spans[i].innerHTML =
|
||||||
|
"[<a href='#_footnote_" + n +
|
||||||
|
"' title='View footnote' class='footnote'>" + n + "</a>]";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
install: function(toclevels) {
|
||||||
|
var timerId;
|
||||||
|
|
||||||
|
function reinstall() {
|
||||||
|
asciidoc.footnotes();
|
||||||
|
if (toclevels) {
|
||||||
|
asciidoc.toc(toclevels);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function reinstallAndRemoveTimer() {
|
||||||
|
clearInterval(timerId);
|
||||||
|
reinstall();
|
||||||
|
}
|
||||||
|
|
||||||
|
timerId = setInterval(reinstall, 500);
|
||||||
|
if (document.addEventListener)
|
||||||
|
document.addEventListener("DOMContentLoaded", reinstallAndRemoveTimer, false);
|
||||||
|
else
|
||||||
|
window.onload = reinstallAndRemoveTimer;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
asciidoc.install();
|
||||||
|
/*]]>*/
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="manpage">
|
||||||
|
<div id="header">
|
||||||
|
<h1>
|
||||||
|
nvme-fdp-feature(1) Manual Page
|
||||||
|
</h1>
|
||||||
|
<h2>NAME</h2>
|
||||||
|
<div class="sectionbody">
|
||||||
|
<p>nvme-fdp-feature -
|
||||||
|
Show or change Flexible Data Placement (FDP) Feature
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="content">
|
||||||
|
<div class="sect1">
|
||||||
|
<h2 id="_synopsis">SYNOPSIS</h2>
|
||||||
|
<div class="sectionbody">
|
||||||
|
<div class="verseblock">
|
||||||
|
<pre class="content"><em>nvme fdp</em> <device> [--endgrp-id=<NUM> | -e <NUM>]
|
||||||
|
[--enable-conf-idx=<NUM> | -c <NUM>]
|
||||||
|
[--disable | -d]
|
||||||
|
[--verbose | -v]</pre>
|
||||||
|
<div class="attribution">
|
||||||
|
</div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sect1">
|
||||||
|
<h2 id="_description">DESCRIPTION</h2>
|
||||||
|
<div class="sectionbody">
|
||||||
|
<div class="paragraph"><p>For the NVMe device given, configure and manage the Flexible Data Placement (FDP) feature.</p></div>
|
||||||
|
<div class="paragraph"><p>This command can be used to either show the current FDP feature configuration or change it.</p></div>
|
||||||
|
<div class="literalblock">
|
||||||
|
<div class="content">
|
||||||
|
<pre><code> If no `--enable-conf-idx` or `--disable` options are provided, the current configuration is
|
||||||
|
displayed.</code></pre>
|
||||||
|
</div></div>
|
||||||
|
<div class="paragraph"><p>If the <code>--enable-conf-idx</code> or <code>--disable</code> options are provided, configuration is changed
|
||||||
|
accordingly. Device may refuse the change if there is a namespace.</p></div>
|
||||||
|
<div class="paragraph"><p>The <device> parameter is mandatory and must be a NVMe character device (ex: /dev/nvme0)</p></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sect1">
|
||||||
|
<h2 id="_options">OPTIONS</h2>
|
||||||
|
<div class="sectionbody">
|
||||||
|
<div class="dlist"><dl>
|
||||||
|
<dt class="hdlist1">
|
||||||
|
-e <NUM>
|
||||||
|
</dt>
|
||||||
|
<dt class="hdlist1">
|
||||||
|
--endgrp-id=<NUM>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Specify the endurance group ID. This option is mandatory if device supports endurance groups.
|
||||||
|
</p>
|
||||||
|
</dd>
|
||||||
|
<dt class="hdlist1">
|
||||||
|
-c <NUM>
|
||||||
|
</dt>
|
||||||
|
<dt class="hdlist1">
|
||||||
|
--enable-conf-idx=<NUM>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Enable FDP feature with the specified configuration. The configuration index matches position
|
||||||
|
listed by nvme-fdp-config(1).
|
||||||
|
</p>
|
||||||
|
</dd>
|
||||||
|
<dt class="hdlist1">
|
||||||
|
-d
|
||||||
|
</dt>
|
||||||
|
<dt class="hdlist1">
|
||||||
|
--disable
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Disable the current FDP feature configuration.
|
||||||
|
</p>
|
||||||
|
</dd>
|
||||||
|
<dt class="hdlist1">
|
||||||
|
-v
|
||||||
|
</dt>
|
||||||
|
<dt class="hdlist1">
|
||||||
|
--verbose
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Increase verbosity of the output.
|
||||||
|
</p>
|
||||||
|
</dd>
|
||||||
|
</dl></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sect1">
|
||||||
|
<h2 id="_see_also">SEE ALSO</h2>
|
||||||
|
<div class="sectionbody">
|
||||||
|
<div class="paragraph"><p>nvme-list-endgrp(1)
|
||||||
|
nvme-fdp-config(1)</p></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sect1">
|
||||||
|
<h2 id="_nvme">NVME</h2>
|
||||||
|
<div class="sectionbody">
|
||||||
|
<div class="paragraph"><p>Part of nvme-cli</p></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="footnotes"><hr /></div>
|
||||||
|
<div id="footer">
|
||||||
|
<div id="footer-text">
|
||||||
|
Last updated
|
||||||
|
2025-03-17 10:39:49 CET
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
56
Documentation/nvme-fdp-feature.txt
Normal file
56
Documentation/nvme-fdp-feature.txt
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
nvme-fdp-feature(1)
|
||||||
|
===================
|
||||||
|
|
||||||
|
NAME
|
||||||
|
----
|
||||||
|
nvme-fdp-feature - Show or change Flexible Data Placement (FDP) Feature
|
||||||
|
|
||||||
|
SYNOPSIS
|
||||||
|
--------
|
||||||
|
[verse]
|
||||||
|
'nvme fdp' <device> [--endgrp-id=<NUM> | -e <NUM>]
|
||||||
|
[--enable-conf-idx=<NUM> | -c <NUM>]
|
||||||
|
[--disable | -d]
|
||||||
|
[--verbose | -v]
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
-----------
|
||||||
|
For the NVMe device given, configure and manage the Flexible Data Placement (FDP) feature.
|
||||||
|
|
||||||
|
This command can be used to either show the current FDP feature configuration or change it.
|
||||||
|
|
||||||
|
If no `--enable-conf-idx` or `--disable` options are provided, the current configuration is
|
||||||
|
displayed.
|
||||||
|
|
||||||
|
If the `--enable-conf-idx` or `--disable` options are provided, configuration is changed
|
||||||
|
accordingly. Device may refuse the change if there is a namespace.
|
||||||
|
|
||||||
|
The <device> parameter is mandatory and must be a NVMe character device (ex: /dev/nvme0)
|
||||||
|
|
||||||
|
OPTIONS
|
||||||
|
-------
|
||||||
|
-e <NUM>::
|
||||||
|
--endgrp-id=<NUM>::
|
||||||
|
Specify the endurance group ID. This option is mandatory if device supports endurance groups.
|
||||||
|
|
||||||
|
-c <NUM>::
|
||||||
|
--enable-conf-idx=<NUM>::
|
||||||
|
Enable FDP feature with the specified configuration. The configuration index matches position
|
||||||
|
listed by nvme-fdp-config(1).
|
||||||
|
|
||||||
|
-d::
|
||||||
|
--disable::
|
||||||
|
Disable the current FDP feature configuration.
|
||||||
|
|
||||||
|
-v::
|
||||||
|
--verbose::
|
||||||
|
Increase verbosity of the output.
|
||||||
|
|
||||||
|
SEE ALSO
|
||||||
|
--------
|
||||||
|
nvme-list-endgrp(1)
|
||||||
|
nvme-fdp-config(1)
|
||||||
|
|
||||||
|
NVME
|
||||||
|
----
|
||||||
|
Part of nvme-cli
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-fdp-set-events
|
.\" Title: nvme-fdp-set-events
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-FDP\-SET\-EVEN" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-FDP\-SET\-EVEN" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-fdp-set-events(1)</title>
|
<title>nvme-fdp-set-events(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -816,7 +816,7 @@ Handle.</p></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-fdp-stats
|
.\" Title: nvme-fdp-stats
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-FDP\-STATS" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-FDP\-STATS" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-fdp-stats(1)</title>
|
<title>nvme-fdp-stats(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -814,7 +814,7 @@ the life of the FDP configuration in an Endurance Group.</p></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-fdp-status
|
.\" Title: nvme-fdp-status
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-FDP\-STATUS" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-FDP\-STATUS" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-fdp-status(1)</title>
|
<title>nvme-fdp-status(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -814,7 +814,7 @@ are accessible by the specified namespace.</p></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-fdp-update
|
.\" Title: nvme-fdp-update
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-FDP\-UPDATE" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-FDP\-UPDATE" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-fdp-update(1)</title>
|
<title>nvme-fdp-update(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -802,7 +802,7 @@ a different Reclaim Unit accessible by the specified namespace.</p></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-fdp-usage
|
.\" Title: nvme-fdp-usage
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-FDP\-USAGE" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-FDP\-USAGE" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-fdp-usage(1)</title>
|
<title>nvme-fdp-usage(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -815,7 +815,7 @@ Endurance Group.</p></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-fid-support-effects-log
|
.\" Title: nvme-fid-support-effects-log
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-FID\-SUPPORT\-" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-FID\-SUPPORT\-" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-fid-support-effects-log(1)</title>
|
<title>nvme-fid-support-effects-log(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -825,7 +825,7 @@ raw buffer may be printed to stdout.</p></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-flush
|
.\" Title: nvme-flush
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-FLUSH" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-FLUSH" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-flush(1)</title>
|
<title>nvme-flush(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -824,7 +824,7 @@ any namespace.</p></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-format
|
.\" Title: nvme-format
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-FORMAT" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-FORMAT" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-format(1)</title>
|
<title>nvme-format(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -1056,7 +1056,7 @@ information:
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-fw-commit
|
.\" Title: nvme-fw-commit
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-FW\-COMMIT" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-FW\-COMMIT" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-fw-commit(1)</title>
|
<title>nvme-fw-commit(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -941,7 +941,7 @@ commit the last downloaded fw to slot 1.
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-fw-download
|
.\" Title: nvme-fw-download
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-FW\-DOWNLOAD" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-FW\-DOWNLOAD" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-fw-download(1)</title>
|
<title>nvme-fw-download(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -888,7 +888,7 @@ Transfer a firmware size 128KiB at a time:
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-fw-log
|
.\" Title: nvme-fw-log
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-FW\-LOG" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-FW\-LOG" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-fw-log(1)</title>
|
<title>nvme-fw-log(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -846,7 +846,7 @@ Print the log firmware to a file:
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-gen-hostnqn
|
.\" Title: nvme-gen-hostnqn
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-GEN\-HOSTNQN" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-GEN\-HOSTNQN" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-gen-hostnqn(1)</title>
|
<title>nvme-gen-hostnqn(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -809,7 +809,7 @@ and prints it to stdout.</p></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-get-feature
|
.\" Title: nvme-get-feature
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-GET\-FEATURE" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-GET\-FEATURE" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
||||||
<meta name="generator" content="AsciiDoc 10.2.1" />
|
<meta name="generator" content="AsciiDoc 10.2.0" />
|
||||||
<title>nvme-get-feature(1)</title>
|
<title>nvme-get-feature(1)</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
||||||
|
@ -1027,7 +1027,7 @@ format:
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated
|
Last updated
|
||||||
2024-10-31 10:38:40 CET
|
2025-03-17 10:39:49 CET
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: nvme-get-lba-status
|
.\" Title: nvme-get-lba-status
|
||||||
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||||
.\" Date: 10/31/2024
|
.\" Date: 03/17/2025
|
||||||
.\" Manual: NVMe Manual
|
.\" Manual: NVMe Manual
|
||||||
.\" Source: NVMe
|
.\" Source: NVMe
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NVME\-GET\-LBA\-STAT" "1" "10/31/2024" "NVMe" "NVMe Manual"
|
.TH "NVME\-GET\-LBA\-STAT" "1" "03/17/2025" "NVMe" "NVMe Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue