1
0
Fork 0

Merging upstream version 2.1~rc0 (Closes: #1015722).

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-16 12:16:19 +01:00
parent 9489161ac8
commit 316e846c86
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
504 changed files with 6751 additions and 2957 deletions

7
.github/dependabot.yml vendored Normal file
View file

@ -0,0 +1,7 @@
---
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"

View file

@ -9,14 +9,16 @@ on:
workflow_dispatch: workflow_dispatch:
jobs: jobs:
meson-build: build-disto:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: install libraries - name: install libraries
run: sudo apt-get install libjson-c-dev libhugetlbfs-dev run: sudo apt-get install libjson-c-dev libhugetlbfs-dev
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- uses: actions/setup-python@v1 - uses: actions/setup-python@v4
with:
python-version: '3.x'
# - name: install python dependencies # - name: install python dependencies
# run: | # run: |
# python -m pip install --upgrade pip # python -m pip install --upgrade pip
@ -25,3 +27,35 @@ jobs:
with: with:
setup-options: --werror setup-options: --werror
action: build action: build
build-fallback:
runs-on: ubuntu-latest
steps:
- name: install libraries
run: sudo apt-get install -y libpam-dev libcap-ng-dev
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- uses: BSFishy/meson-build@v1.0.3
with:
setup-options: --werror -Duuid:werror=false --wrap-mode=forcefallback
options: --verbose
action: build
meson-version: 0.61.2
build-static:
runs-on: ubuntu-latest
steps:
- name: install libraries
run: sudo apt-get install -y libpam-dev libcap-ng-dev
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- uses: BSFishy/meson-build@v1.0.3
with:
setup-options: --werror -Duuid:werror=false --wrap-mode=forcefallback --default-library=static
options: --verbose
action: build
meson-version: 0.61.2

19
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,19 @@
name: Releases
on:
push:
branches: [ master ]
tags:
- '**'
jobs:
build:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- uses: ncipollo/release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

View file

@ -7,7 +7,11 @@ Contributions and new ideas are most welcome!
**NOTE: If you do decide to implement code changes and contribute them, **NOTE: If you do decide to implement code changes and contribute them,
please make sure you agree your contribution can be made available please make sure you agree your contribution can be made available
under the [GPLv2-style License used for the NVMe CLI](https://github.com/linux-nvme/nvme-cli/blob/master/LICENSE).** under the [GPLv2-style License used for the NVMe CLI](https://github.com/linux-nvme/nvme-cli/blob/master/LICENSE).
(SPDX-License-Identifier: GPL-2.0-or-later)**
Because there are a few files licensed under GPL-2.0-only, the whole
project is tagged as GPL-2.0-only and not as GPL-2.0-or-later.
### Code Contributions ### Code Contributions

View file

@ -65,7 +65,7 @@ linknvme:nvme-transcend-badblock[1]::
Retrieve Transcend NVMe device's bad blocks Retrieve Transcend NVMe device's bad blocks
linknvme:nvme-transcend-healthvalue[1]:: linknvme:nvme-transcend-healthvalue[1]::
Use NVMe SMART table to analyse the health value of Transcend device Use NVMe SMART table to analyze the health value of Transcend device
linknvme:nvme-virtium-show-identify[1]:: linknvme:nvme-virtium-show-identify[1]::
Show a complete detail of identify device information in json format Show a complete detail of identify device information in json format

View file

@ -44,7 +44,7 @@ linknvme:nvme-smart-log[1]::
Retrieve Smart Log Retrieve Smart Log
linknvme:nvme-ana-log[1]:: linknvme:nvme-ana-log[1]::
Retreive ANA(Asymmetric Namespace Access) Log Retrieve ANA(Asymmetric Namespace Access) Log
linknvme:nvme-endurance-log[1]:: linknvme:nvme-endurance-log[1]::
Retrieve endurance Log Retrieve endurance Log
@ -236,7 +236,7 @@ linknvme:nvme-nvm-id-ns-lba-format[1]::
NVMe Identify Namespace NVM Command Set for the specified LBA Format index NVMe Identify Namespace NVM Command Set for the specified LBA Format index
linknvme:nvme-persistent-event-log[1]:: linknvme:nvme-persistent-event-log[1]::
Retrieve Presistent Event Log Retrieve Persistent Event Log
linknvme:nvme-predictable-lat-log[1]:: linknvme:nvme-predictable-lat-log[1]::
Retrieve Predictable Latency per Nvmset Log Retrieve Predictable Latency per Nvmset Log

View file

@ -1,3 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-or-later
adoc_sources = [ adoc_sources = [
'nvme', 'nvme',
'nvme-admin-passthru', 'nvme-admin-passthru',
@ -114,6 +116,7 @@ adoc_sources = [
'nvme-wdc-clear-assert-dump', 'nvme-wdc-clear-assert-dump',
'nvme-wdc-clear-fw-activate-history', 'nvme-wdc-clear-fw-activate-history',
'nvme-wdc-clear-pcie-correctable-errors', 'nvme-wdc-clear-pcie-correctable-errors',
'nvme-wdc-cloud-boot-SSD-version',
'nvme-wdc-cloud-SSD-plugin-version', 'nvme-wdc-cloud-SSD-plugin-version',
'nvme-wdc-drive-essentials', 'nvme-wdc-drive-essentials',
'nvme-wdc-drive-log', 'nvme-wdc-drive-log',
@ -131,9 +134,12 @@ adoc_sources = [
'nvme-wdc-namespace-resize', 'nvme-wdc-namespace-resize',
'nvme-wdc-purge', 'nvme-wdc-purge',
'nvme-wdc-purge-monitor', 'nvme-wdc-purge-monitor',
'nvme-wdc-vs-cloud-log',
'nvme-wdc-vs-device-waf',
'nvme-wdc-vs-drive-info', 'nvme-wdc-vs-drive-info',
'nvme-wdc-vs-error-reason-identifier', 'nvme-wdc-vs-error-reason-identifier',
'nvme-wdc-vs-fw-activate-history', 'nvme-wdc-vs-fw-activate-history',
'nvme-wdc-vs-hw-rev-log',
'nvme-wdc-vs-internal-log', 'nvme-wdc-vs-internal-log',
'nvme-wdc-vs-nand-stats', 'nvme-wdc-vs-nand-stats',
'nvme-wdc-vs-smart-add-log', 'nvme-wdc-vs-smart-add-log',
@ -168,7 +174,7 @@ if want_docs != 'false'
mandir = join_paths(get_option('mandir'), 'man1') mandir = join_paths(get_option('mandir'), 'man1')
htmldir = join_paths(get_option('htmldir'), 'nvme') htmldir = join_paths(get_option('htmldir'), 'nvme')
asciidoctor = find_program('asciidoc', required : false) asciidoctor = find_program('asciidoc', required: get_option('docs-build'))
if want_docs_build and asciidoctor.found() if want_docs_build and asciidoctor.found()
# Build documentation before installing # Build documentation before installing

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-ADMIN\-PASSTHR" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-ADMIN\-PASSTHR" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -998,7 +998,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-ANA\-LOG" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-ANA\-LOG" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
@ -43,6 +43,11 @@ The <device> parameter is mandatory NVMe character device (ex: /dev/nvme0)\&.
On success, the returned ANA 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\&. On success, the returned ANA 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\&.
.SH "OPTIONS" .SH "OPTIONS"
.PP .PP
\-g, \-\-groups
.RS 4
Return the list of ANA groups without the namespace listing\&.
.RE
.PP
\-o <format>, \-\-output\-format=<format> \-o <format>, \-\-output\-format=<format>
.RS 4 .RS 4
Set the reporting format to Set the reporting format to

View file

@ -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" /> <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 */
@ -771,6 +771,17 @@ printed to stdout for another program to parse.</p></div>
<div class="sectionbody"> <div class="sectionbody">
<div class="dlist"><dl> <div class="dlist"><dl>
<dt class="hdlist1"> <dt class="hdlist1">
-g
</dt>
<dt class="hdlist1">
--groups
</dt>
<dd>
<p>
Return the list of ANA groups without the namespace listing.
</p>
</dd>
<dt class="hdlist1">
-o &lt;format&gt; -o &lt;format&gt;
</dt> </dt>
<dt class="hdlist1"> <dt class="hdlist1">
@ -812,7 +823,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -24,6 +24,10 @@ printed to stdout for another program to parse.
OPTIONS OPTIONS
------- -------
-g::
--groups::
Return the list of ANA groups without the namespace listing.
-o <format>:: -o <format>::
--output-format=<format>:: --output-format=<format>::
Set the reporting format to 'normal', 'json', or Set the reporting format to 'normal', 'json', or

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-ATTACH\-NS" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-ATTACH\-NS" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
@ -47,7 +47,7 @@ The namespace identifier to attach\&.
.PP .PP
\-c <ctrl\-list,>, \-controllers=<ctrl\-list,> \-c <ctrl\-list,>, \-controllers=<ctrl\-list,>
.RS 4 .RS 4
The comma separated list of controller identifiers to attach the namesapce too\&. The comma separated list of controller identifiers to attach the namespace too\&.
.RE .RE
.SH "EXAMPLES" .SH "EXAMPLES"
.sp .sp
@ -55,7 +55,7 @@ The comma separated list of controller identifiers to attach the namesapce too\&
.RS 4 .RS 4
.\} .\}
.nf .nf
Attach namspace to the controller: Attach namespace to the controller:
.fi .fi
.if n \{\ .if n \{\
.RE .RE

View file

@ -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" /> <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 */
@ -787,7 +787,7 @@ controller identifiers.</p></div>
<dd> <dd>
<p> <p>
The comma separated list of controller identifiers to attach The comma separated list of controller identifiers to attach
the namesapce too. the namespace too.
</p> </p>
</dd> </dd>
</dl></div> </dl></div>
@ -798,7 +798,7 @@ controller identifiers.</p></div>
<div class="sectionbody"> <div class="sectionbody">
<div class="literalblock"> <div class="literalblock">
<div class="content"> <div class="content">
<pre><code>Attach namspace to the controller:</code></pre> <pre><code>Attach namespace to the controller:</code></pre>
</div></div> </div></div>
<div class="literalblock"> <div class="literalblock">
<div class="content"> <div class="content">
@ -817,7 +817,7 @@ controller identifiers.</p></div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated Last updated
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -26,11 +26,11 @@ OPTIONS
-c <ctrl-list,>:: -c <ctrl-list,>::
-controllers=<ctrl-list,>:: -controllers=<ctrl-list,>::
The comma separated list of controller identifiers to attach The comma separated list of controller identifiers to attach
the namesapce too. the namespace too.
EXAMPLES EXAMPLES
-------- --------
Attach namspace to the controller: Attach namespace to the controller:
# nvme attach-ns /dev/nvme1 -n 0x2 -c 0x21 # nvme attach-ns /dev/nvme1 -n 0x2 -c 0x21

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-BOOT\-PART\-LO" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-BOOT\-PART\-LO" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -835,7 +835,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-CAPACITY\-MGMT" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-CAPACITY\-MGMT" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -839,7 +839,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-CHANGED\-NS\-L" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-CHANGED\-NS\-L" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -835,7 +835,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-CMDSET\-IND\-I" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-CMDSET\-IND\-I" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -879,7 +879,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-COMPARE" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-COMPARE" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
@ -75,10 +75,10 @@ Size of data to be compared in bytes\&.
.PP .PP
\-y <metasize>, \-\-metadata\-size=<metasize> \-y <metasize>, \-\-metadata\-size=<metasize>
.RS 4 .RS 4
Size of metadata to be trasnferred in bytes\&. Size of metadata to be transferred in bytes\&.
.RE .RE
.PP .PP
\-r <reftag>, \-\-ref\-tag=<regtag> \-r <reftag>, \-\-ref\-tag=<reftag>
.RS 4 .RS 4
Reference Tag for Protection Information Reference Tag for Protection Information
.RE .RE
@ -174,7 +174,7 @@ FUA option to guarantee that data is stored to media\&.
.PP .PP
\-T <type>, \-\-dir\-type=<type> \-T <type>, \-\-dir\-type=<type>
.RS 4 .RS 4
Optional directive type\&. The nvme\-cli only enforces the value be in the defined range for the directive type, though the NVMe specifcation (1\&.3a) defines only one directive, 01h, for write stream idenfiers\&. Optional directive type\&. The nvme\-cli only enforces the value be in the defined range for the directive type, though the NVMe specification (1\&.3a) defines only one directive, 01h, for write stream identifiers\&.
.RE .RE
.PP .PP
\-S <spec>, \-\-dir\-spec=<spec> \-S <spec>, \-\-dir\-spec=<spec>
@ -212,7 +212,7 @@ This bit specifies the Storage Tag field shall be checked as part of end\-to\-en
.PP .PP
\-\-force \-\-force
.RS 4 .RS 4
Ignore namespace is currently busy and perfome the operation even though\&. Ignore namespace is currently busy and performed the operation even though\&.
.RE .RE
.SH "EXAMPLES" .SH "EXAMPLES"
.sp .sp

View file

@ -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" /> <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 */
@ -830,14 +830,14 @@ provided, then a comparison is also performed for the metadata.</p></div>
</dt> </dt>
<dd> <dd>
<p> <p>
Size of metadata to be trasnferred in bytes. Size of metadata to be transferred in bytes.
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
-r &lt;reftag&gt; -r &lt;reftag&gt;
</dt> </dt>
<dt class="hdlist1"> <dt class="hdlist1">
--ref-tag=&lt;regtag&gt; --ref-tag=&lt;reftag&gt;
</dt> </dt>
<dd> <dd>
<p> <p>
@ -971,8 +971,8 @@ metadata is passes.</p></td>
<p> <p>
Optional directive type. The nvme-cli only enforces the value Optional directive type. The nvme-cli only enforces the value
be in the defined range for the directive type, though the NVMe be in the defined range for the directive type, though the NVMe
specifcation (1.3a) defines only one directive, 01h, for write specification (1.3a) defines only one directive, 01h, for write
stream idenfiers. stream identifiers.
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
@ -1059,7 +1059,7 @@ metadata is passes.</p></td>
</dt> </dt>
<dd> <dd>
<p> <p>
Ignore namespace is currently busy and perfome the operation Ignore namespace is currently busy and performed the operation
even though. even though.
</p> </p>
</dd> </dd>
@ -1083,7 +1083,7 @@ metadata is passes.</p></td>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated Last updated
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -55,10 +55,10 @@ OPTIONS
-y <metasize>:: -y <metasize>::
--metadata-size=<metasize>:: --metadata-size=<metasize>::
Size of metadata to be trasnferred in bytes. Size of metadata to be transferred in bytes.
-r <reftag>:: -r <reftag>::
--ref-tag=<regtag>:: --ref-tag=<reftag>::
Reference Tag for Protection Information Reference Tag for Protection Information
-d <data-file>:: -d <data-file>::
@ -106,8 +106,8 @@ metadata is passes.
--dir-type=<type>:: --dir-type=<type>::
Optional directive type. The nvme-cli only enforces the value Optional directive type. The nvme-cli only enforces the value
be in the defined range for the directive type, though the NVMe be in the defined range for the directive type, though the NVMe
specifcation (1.3a) defines only one directive, 01h, for write specification (1.3a) defines only one directive, 01h, for write
stream idenfiers. stream identifiers.
-S <spec>:: -S <spec>::
--dir-spec=<spec>:: --dir-spec=<spec>::
@ -146,7 +146,7 @@ metadata is passes.
data protection processing. data protection processing.
--force:: --force::
Ignore namespace is currently busy and perfome the operation Ignore namespace is currently busy and performed the operation
even though. even though.
EXAMPLES EXAMPLES

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-CONNECT\-ALL" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-CONNECT\-ALL" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
@ -62,7 +62,7 @@ Send one or more Discovery requests to a NVMe over Fabrics Discovery Controller,
.sp .sp
If no parameters are given, then \fInvme connect\-all\fR will attempt to find a /etc/nvme/discovery\&.conf file to use to supply a list of connect\-all commands to run\&. If no /etc/nvme/discovery\&.conf file exists, the command will quit with an error\&. If no parameters are given, then \fInvme connect\-all\fR will attempt to find a /etc/nvme/discovery\&.conf file to use to supply a list of connect\-all commands to run\&. If no /etc/nvme/discovery\&.conf file exists, the command will quit with an error\&.
.sp .sp
Otherwise a specific Discovery Controller should be specified using the \-\-transport, \-\-traddr and if necessary the \-\-trsvcid and a Diѕcovery request will be sent to the specified Discovery Controller\&. Otherwise a specific Discovery Controller should be specified using the \-\-transport, \-\-traddr and if necessary the \-\-trsvcid and a Discovery request will be sent to the specified Discovery Controller\&.
.sp .sp
See the documentation for the nvme\-discover(1) command for further background\&. See the documentation for the nvme\-discover(1) command for further background\&.
.SH "OPTIONS" .SH "OPTIONS"

View file

@ -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" /> <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 */
@ -786,7 +786,7 @@ find a /etc/nvme/discovery.conf file to use to supply a list of
connect-all commands to run. If no /etc/nvme/discovery.conf file connect-all commands to run. If no /etc/nvme/discovery.conf file
exists, the command will quit with an error.</p></div> exists, the command will quit with an error.</p></div>
<div class="paragraph"><p>Otherwise a specific Discovery Controller should be specified using the <div class="paragraph"><p>Otherwise a specific Discovery Controller should be specified using the
--transport, --traddr and if necessary the --trsvcid and a Diѕcovery --transport, --traddr and if necessary the --trsvcid and a Discovery
request will be sent to the specified Discovery Controller.</p></div> request will be sent to the specified Discovery Controller.</p></div>
<div class="paragraph"><p>See the documentation for the nvme-discover(1) command for further <div class="paragraph"><p>See the documentation for the nvme-discover(1) command for further
background.</p></div> background.</p></div>
@ -1156,7 +1156,7 @@ nvme-connect(1)</p></div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated Last updated
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -43,7 +43,7 @@ connect-all commands to run. If no @SYSCONFDIR@/nvme/discovery.conf file
exists, the command will quit with an error. exists, the command will quit with an error.
Otherwise a specific Discovery Controller should be specified using the Otherwise a specific Discovery Controller should be specified using the
--transport, --traddr and if necessary the --trsvcid and a Diѕcovery --transport, --traddr and if necessary the --trsvcid and a Discovery
request will be sent to the specified Discovery Controller. request will be sent to the specified Discovery Controller.
See the documentation for the nvme-discover(1) command for further See the documentation for the nvme-discover(1) command for further

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-CONNECT" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-CONNECT" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -1162,7 +1162,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-COPY" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-COPY" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
@ -121,7 +121,7 @@ expected lba tag masks (comma\-separated list)
.PP .PP
\-\-dir\-type=<type>, \-T <type> \-\-dir\-type=<type>, \-T <type>
.RS 4 .RS 4
Optional directive type\&. The nvme\-cli only enforces the value be in the defined range for the directive type, though the NVMe specifcation (1\&.3a) defines only one directive, 01h, for write stream idenfiers\&. Optional directive type\&. The nvme\-cli only enforces the value be in the defined range for the directive type, though the NVMe specification (1\&.3a) defines only one directive, 01h, for write stream identifiers\&.
.RE .RE
.PP .PP
\-\-dir\-spec=<spec>, \-S <spec> \-\-dir\-spec=<spec>, \-S <spec>

View file

@ -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" /> <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 */
@ -933,8 +933,8 @@ logical block ranges to a single consecutive destination logical block range.</p
<p> <p>
Optional directive type. The nvme-cli only enforces the value Optional directive type. The nvme-cli only enforces the value
be in the defined range for the directive type, though the NVMe be in the defined range for the directive type, though the NVMe
specifcation (1.3a) defines only one directive, 01h, for write specification (1.3a) defines only one directive, 01h, for write
stream idenfiers. stream identifiers.
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
@ -982,7 +982,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -88,8 +88,8 @@ OPTIONS
-T <type>:: -T <type>::
Optional directive type. The nvme-cli only enforces the value Optional directive type. The nvme-cli only enforces the value
be in the defined range for the directive type, though the NVMe be in the defined range for the directive type, though the NVMe
specifcation (1.3a) defines only one directive, 01h, for write specification (1.3a) defines only one directive, 01h, for write
stream idenfiers. stream identifiers.
--dir-spec=<spec>:: --dir-spec=<spec>::
-S <spec>:: -S <spec>::

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-CREATE\-NS" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-CREATE\-NS" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
@ -84,7 +84,7 @@ Namespace multipath and sharing capabilities\&.
.PP .PP
\-a, \-\-anagrp\-id \-a, \-\-anagrp\-id
.RS 4 .RS 4
ANA Gorup Identifier\&. If this value is 0h specifies that the controller determines the value to use ANA Group Identifier\&. If this value is 0h specifies that the controller determines the value to use
.RE .RE
.PP .PP
\-i <nvmsetid>, \-\-nvmset\-id=<nvmsetid> \-i <nvmsetid>, \-\-nvmset\-id=<nvmsetid>

View file

@ -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" /> <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 */
@ -839,7 +839,7 @@ OPTIONS</code></pre>
</dt> </dt>
<dd> <dd>
<p> <p>
ANA Gorup Identifier. If this value is 0h specifies ANA Group Identifier. If this value is 0h specifies
that the controller determines the value to use that the controller determines the value to use
</p> </p>
</dd> </dd>
@ -910,7 +910,7 @@ OPTIONS</code></pre>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated Last updated
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -53,7 +53,7 @@ OPTIONS
-a:: -a::
--anagrp-id:: --anagrp-id::
ANA Gorup Identifier. If this value is 0h specifies ANA Group Identifier. If this value is 0h specifies
that the controller determines the value to use that the controller determines the value to use
-i <nvmsetid>:: -i <nvmsetid>::

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-ID\-NS" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-ID\-NS" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -799,7 +799,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-DERA\-STAT" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-DERA\-STAT" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-DETACH\-NS" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-DETACH\-NS" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -810,7 +810,7 @@ controller identifiers.</p></div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated Last updated
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-DEVICE\-SELF\-" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-DEVICE\-SELF\-" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
@ -46,7 +46,7 @@ On success, the corresponding test is initiated\&.
.PP .PP
\-n <NUM>, \-\-namespace\-id=<NUM> \-n <NUM>, \-\-namespace\-id=<NUM>
.RS 4 .RS 4
Indicate the namespace in which the device self\-test has to becarried out Indicate the namespace in which the device self\-test has to be carried out
.RE .RE
.PP .PP
\-s <NUM>, \-\-self\-test\-code=<NUM> \-s <NUM>, \-\-self\-test\-code=<NUM>

View file

@ -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" /> <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 */
@ -776,7 +776,7 @@ device (ex: /dev/nvme0), or a namespace block device (ex: /dev/nvme0n1).</p></di
</dt> </dt>
<dd> <dd>
<p> <p>
Indicate the namespace in which the device self-test has to becarried out Indicate the namespace in which the device self-test has to be carried out
</p> </p>
</dd> </dd>
<dt class="hdlist1"> <dt class="hdlist1">
@ -833,7 +833,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -24,7 +24,7 @@ OPTIONS
------- -------
-n <NUM>:: -n <NUM>::
--namespace-id=<NUM>:: --namespace-id=<NUM>::
Indicate the namespace in which the device self-test has to becarried out Indicate the namespace in which the device self-test has to be carried out
-s <NUM>:: -s <NUM>::
--self-test-code=<NUM>:: --self-test-code=<NUM>::

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-DIM" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-DIM" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
@ -41,7 +41,7 @@ nvme-dim \- Send Discovery Information Management command to one or more Discove
.sp .sp
Send Discovery Information Management (DIM) command to one or more Discovery Controllers\&. The DIM command allows performing two types of tasks: register or deregister\&. Send Discovery Information Management (DIM) command to one or more Discovery Controllers\&. The DIM command allows performing two types of tasks: register or deregister\&.
.sp .sp
The DIM command is used to explicitly register with Discovery Controllers (DC), especially with Central Discovery Controllers (CDC)\&. CDCs maintain a database (DB) of all the Hosts and Storage Susbsystems in a network\&. The register task is used to add a host to the CDC\(cqs DB\&. The deregister task is used to remove a host from the CDC\(cqs DB\&. The DIM command is used to explicitly register with Discovery Controllers (DC), especially with Central Discovery Controllers (CDC)\&. CDCs maintain a database (DB) of all the Hosts and Storage Subsystems in a network\&. The register task is used to add a host to the CDC\(cqs DB\&. The deregister task is used to remove a host from the CDC\(cqs DB\&.
.sp .sp
During a register operation the host will send mandatory information such as the Host\(cqs NQN and ID, as well as the Host\(cqs hostname and the Operating System\(cqs version that it is running on\&. There is also an optional Host Symbolic Name that can be registered with the CDC\&. During a register operation the host will send mandatory information such as the Host\(cqs NQN and ID, as well as the Host\(cqs hostname and the Operating System\(cqs version that it is running on\&. There is also an optional Host Symbolic Name that can be registered with the CDC\&.
.sp .sp

View file

@ -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" /> <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 */
@ -765,7 +765,7 @@ Controllers. The DIM command allows performing two types of tasks: register or
deregister.</p></div> deregister.</p></div>
<div class="paragraph"><p>The DIM command is used to explicitly register with Discovery Controllers (DC), <div class="paragraph"><p>The DIM command is used to explicitly register with Discovery Controllers (DC),
especially with Central Discovery Controllers (CDC). CDCs maintain a database (DB) especially with Central Discovery Controllers (CDC). CDCs maintain a database (DB)
of all the Hosts and Storage Susbsystems in a network. The register task is used of all the Hosts and Storage Subsystems in a network. The register task is used
to add a host to the CDC&#8217;s DB. The deregister task is used to remove a host from to add a host to the CDC&#8217;s DB. The deregister task is used to remove a host from
the CDC&#8217;s DB.</p></div> the CDC&#8217;s DB.</p></div>
<div class="paragraph"><p>During a register operation the host will send mandatory information such as the <div class="paragraph"><p>During a register operation the host will send mandatory information such as the
@ -863,7 +863,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -21,7 +21,7 @@ deregister.
The DIM command is used to explicitly register with Discovery Controllers (DC), The DIM command is used to explicitly register with Discovery Controllers (DC),
especially with Central Discovery Controllers (CDC). CDCs maintain a database (DB) especially with Central Discovery Controllers (CDC). CDCs maintain a database (DB)
of all the Hosts and Storage Susbsystems in a network. The register task is used of all the Hosts and Storage Subsystems in a network. The register task is used
to add a host to the CDC's DB. The deregister task is used to remove a host from to add a host to the CDC's DB. The deregister task is used to remove a host from
the CDC's DB. the CDC's DB.

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-DIR\-RECEIVE" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-DIR\-RECEIVE" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -969,7 +969,7 @@ Get streams directive status :
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated Last updated
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-DIR\-SEND" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-DIR\-SEND" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -982,7 +982,7 @@ Release stream ID 3 :
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated Last updated
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-DISCONNECT\-AL" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-DISCONNECT\-AL" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -795,7 +795,7 @@ Disconnect all existing nvme controllers:
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated Last updated
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-DISCONNECT" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-DISCONNECT" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -839,7 +839,7 @@ Disconnect the controller nvme4
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated Last updated
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-DISCOVER" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-DISCOVER" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
@ -65,7 +65,7 @@ Send one or more Get Log Page requests to a NVMe\-over\-Fabrics Discovery Contro
.sp .sp
If no parameters are given, then \fInvme discover\fR will attempt to find a /etc/nvme/discovery\&.conf file to use to supply a list of Discovery commands to run\&. If no /etc/nvme/discovery\&.conf file exists, the command will quit with an error\&. If no parameters are given, then \fInvme discover\fR will attempt to find a /etc/nvme/discovery\&.conf file to use to supply a list of Discovery commands to run\&. If no /etc/nvme/discovery\&.conf file exists, the command will quit with an error\&.
.sp .sp
Otherwise, a specific Discovery Controller should be specified using the \-\-transport, \-\-traddr, and if necessary the \-\-trsvcid flags\&. A Diѕcovery request will then be sent to the specified Discovery Controller\&. Otherwise, a specific Discovery Controller should be specified using the \-\-transport, \-\-traddr, and if necessary the \-\-trsvcid flags\&. A Discovery request will then be sent to the specified Discovery Controller\&.
.SH "BACKGROUND" .SH "BACKGROUND"
.sp .sp
The NVMe\-over\-Fabrics specification defines the concept of a Discovery Controller that an NVMe Host can query on a fabric network to discover NVMe subsystems contained in NVMe Targets which it can connect to on the network\&. The Discovery Controller will return Discovery Log Pages that provide the NVMe Host with specific information (such as network address and unique subsystem NQN) the NVMe Host can use to issue an NVMe connect command to connect itself to a storage resource contained in that NVMe subsystem on the NVMe Target\&. The NVMe\-over\-Fabrics specification defines the concept of a Discovery Controller that an NVMe Host can query on a fabric network to discover NVMe subsystems contained in NVMe Targets which it can connect to on the network\&. The Discovery Controller will return Discovery Log Pages that provide the NVMe Host with specific information (such as network address and unique subsystem NQN) the NVMe Host can use to issue an NVMe connect command to connect itself to a storage resource contained in that NVMe subsystem on the NVMe Target\&.
@ -174,7 +174,7 @@ to not read in an existing configuration file\&. The JSON configuration file for
.PP .PP
\-k <#>, \-\-keep\-alive\-tmo=<#> \-k <#>, \-\-keep\-alive\-tmo=<#>
.RS 4 .RS 4
Overrides the default dealy (in seconds) for keep alive\&. This option will be ignored for the discovery, and it is only implemented for completeness\&. Overrides the default timeout (in seconds) for keep alive\&. This option will be ignored for the discovery, and it is only implemented for completeness\&.
.RE .RE
.PP .PP
\-c <#>, \-\-reconnect\-delay=<#> \-c <#>, \-\-reconnect\-delay=<#>
@ -242,7 +242,7 @@ Set the reporting format to
.PP .PP
\-\-force \-\-force
.RS 4 .RS 4
Disable the built\-in persitent discover connection rules\&. Combined with \-\-persistent flag, always create new persistent discovery connection\&. Disable the built\-in persistent discover connection rules\&. Combined with \-\-persistent flag, always create new persistent discovery connection\&.
.RE .RE
.SH "EXAMPLES" .SH "EXAMPLES"
.sp .sp

View file

@ -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" /> <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 */
@ -789,7 +789,7 @@ find a /etc/nvme/discovery.conf file to use to supply a list of
Discovery commands to run. If no /etc/nvme/discovery.conf file Discovery commands to run. If no /etc/nvme/discovery.conf file
exists, the command will quit with an error.</p></div> exists, the command will quit with an error.</p></div>
<div class="paragraph"><p>Otherwise, a specific Discovery Controller should be specified using the <div class="paragraph"><p>Otherwise, a specific Discovery Controller should be specified using the
--transport, --traddr, and if necessary the --trsvcid flags. A Diѕcovery --transport, --traddr, and if necessary the --trsvcid flags. A Discovery
request will then be sent to the specified Discovery Controller.</p></div> request will then be sent to the specified Discovery Controller.</p></div>
</div> </div>
</div> </div>
@ -1001,7 +1001,7 @@ cellspacing="0" cellpadding="4">
</dt> </dt>
<dd> <dd>
<p> <p>
Overrides the default dealy (in seconds) for keep alive. Overrides the default timeout (in seconds) for keep alive.
This option will be ignored for the discovery, and it is only This option will be ignored for the discovery, and it is only
implemented for completeness. implemented for completeness.
</p> </p>
@ -1150,7 +1150,7 @@ cellspacing="0" cellpadding="4">
</dt> </dt>
<dd> <dd>
<p> <p>
Disable the built-in persitent discover connection rules. Disable the built-in persistent discover connection rules.
Combined with --persistent flag, always create new Combined with --persistent flag, always create new
persistent discovery connection. persistent discovery connection.
</p> </p>
@ -1218,7 +1218,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -46,7 +46,7 @@ Discovery commands to run. If no @SYSCONFDIR@/nvme/discovery.conf file
exists, the command will quit with an error. exists, the command will quit with an error.
Otherwise, a specific Discovery Controller should be specified using the Otherwise, a specific Discovery Controller should be specified using the
--transport, --traddr, and if necessary the --trsvcid flags. A Diѕcovery --transport, --traddr, and if necessary the --trsvcid flags. A Discovery
request will then be sent to the specified Discovery Controller. request will then be sent to the specified Discovery Controller.
BACKGROUND BACKGROUND
@ -150,7 +150,7 @@ OPTIONS
-k <#>:: -k <#>::
--keep-alive-tmo=<#>:: --keep-alive-tmo=<#>::
Overrides the default dealy (in seconds) for keep alive. Overrides the default timeout (in seconds) for keep alive.
This option will be ignored for the discovery, and it is only This option will be ignored for the discovery, and it is only
implemented for completeness. implemented for completeness.
@ -210,7 +210,7 @@ OPTIONS
'binary'. Only one output format can be used at a time. 'binary'. Only one output format can be used at a time.
--force:: --force::
Disable the built-in persitent discover connection rules. Disable the built-in persistent discover connection rules.
Combined with --persistent flag, always create new Combined with --persistent flag, always create new
persistent discovery connection. persistent discovery connection.

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-DSM" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-DSM" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -893,7 +893,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-EFFECTS\-LOG" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-EFFECTS\-LOG" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -847,7 +847,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-ENDURANCE\-EVE" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-ENDURANCE\-EVE" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -851,7 +851,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-ENDURANCE\-LOG" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-ENDURANCE\-LOG" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -834,7 +834,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-ERROR\-LOG" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-ERROR\-LOG" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -849,7 +849,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-FID\-SUPPORT\-" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-FID\-SUPPORT\-" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
@ -36,7 +36,7 @@ nvme-fid-support-effects-log \- Send NVMe FID Support and Effects log, return re
.fi .fi
.SH "DESCRIPTION" .SH "DESCRIPTION"
.sp .sp
For the NVMe device given, sends an FID Support and Effects log and provides the result and returned logstructure\&. For the NVMe device given, sends an FID Support and Effects log and provides the result and returned log structure\&.
.sp .sp
The <device> parameter is mandatory and may be either the NVMe character device (ex: /dev/nvme0), or a namespace block device (ex: /dev/nvme0n1)\&. The <device> parameter is mandatory and may be either the NVMe character device (ex: /dev/nvme0), or a namespace block device (ex: /dev/nvme0n1)\&.
.sp .sp

View file

@ -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" /> <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 */
@ -758,7 +758,7 @@ nvme-fid-support-effects-log(1) Manual Page
<h2 id="_description">DESCRIPTION</h2> <h2 id="_description">DESCRIPTION</h2>
<div class="sectionbody"> <div class="sectionbody">
<div class="paragraph"><p>For the NVMe device given, sends an FID Support and Effects log and <div class="paragraph"><p>For the NVMe device given, sends an FID Support and Effects log and
provides the result and returned logstructure.</p></div> provides the result and returned log structure.</p></div>
<div class="paragraph"><p>The &lt;device&gt; parameter is mandatory and may be either the NVMe character <div class="paragraph"><p>The &lt;device&gt; parameter is mandatory and may be either the NVMe character
device (ex: /dev/nvme0), or a namespace block device (ex: /dev/nvme0n1).</p></div> device (ex: /dev/nvme0), or a namespace block device (ex: /dev/nvme0n1).</p></div>
<div class="paragraph"><p>On success, the structure may be returned in one of several ways depending <div class="paragraph"><p>On success, the structure may be returned in one of several ways depending
@ -814,7 +814,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -13,7 +13,7 @@ SYNOPSIS
DESCRIPTION DESCRIPTION
----------- -----------
For the NVMe device given, sends an FID Support and Effects log and For the NVMe device given, sends an FID Support and Effects log and
provides the result and returned logstructure. provides the result and returned log structure.
The <device> parameter is mandatory and may be either the NVMe character The <device> parameter is mandatory and may be either the NVMe character
device (ex: /dev/nvme0), or a namespace block device (ex: /dev/nvme0n1). device (ex: /dev/nvme0), or a namespace block device (ex: /dev/nvme0n1).

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-FLUSH" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-FLUSH" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -800,7 +800,7 @@ any namespace.</p></div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated Last updated
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-FORMAT" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-FORMAT" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -1035,7 +1035,7 @@ information:
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated Last updated
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-FW\-COMMIT" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-FW\-COMMIT" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
@ -115,7 +115,7 @@ Firmware Slot: Specifies the firmware slot that shall be used for the Commit Act
.PP .PP
\-\-bpid=<boot\-partid>, \-b <boot\-partid> \-\-bpid=<boot\-partid>, \-b <boot\-partid>
.RS 4 .RS 4
Specifiies the Boot partition that shall be used for the Commit Action, if applicable (default: 0) Specifies the Boot partition that shall be used for the Commit Action, if applicable (default: 0)
.RE .RE
.SH "EXAMPLES" .SH "EXAMPLES"
.sp .sp

View file

@ -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" /> <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 */
@ -865,7 +865,7 @@ BPINFO.ABPID.</p></td>
</dt> </dt>
<dd> <dd>
<p> <p>
Specifiies the Boot partition that shall be used for the Commit Action, Specifies the Boot partition that shall be used for the Commit Action,
if applicable (default: 0) if applicable (default: 0)
</p> </p>
</dd> </dd>
@ -905,7 +905,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -72,7 +72,7 @@ BPINFO.ABPID.
--bpid=<boot-partid>:: --bpid=<boot-partid>::
-b <boot-partid>:: -b <boot-partid>::
Specifiies the Boot partition that shall be used for the Commit Action, Specifies the Boot partition that shall be used for the Commit Action,
if applicable (default: 0) if applicable (default: 0)
EXAMPLES EXAMPLES

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-FW\-DOWNLOAD" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-FW\-DOWNLOAD" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
@ -45,7 +45,7 @@ The firmware image may be constructed of multiple pieces that are individually d
The new firmware image is not applied as part of the Firmware Image Download command\&. It is applied following a reset, where the image to apply and the firmware slot it should be committed to is specified with the Firmware Commit command (nvme fw\-commit <args>)\&. The new firmware image is not applied as part of the Firmware Image Download command\&. It is applied following a reset, where the image to apply and the firmware slot it should be committed to is specified with the Firmware Commit command (nvme fw\-commit <args>)\&.
.SH "OPTIONS" .SH "OPTIONS"
.PP .PP
\-f <firmware\-file>, \-\-fw=<firmeware\-file> \-f <firmware\-file>, \-\-fw=<firmware\-file>
.RS 4 .RS 4
Required argument\&. This specifies the path to the device\(cqs firmware file on your system that will be read by the program and sent to the device\&. Required argument\&. This specifies the path to the device\(cqs firmware file on your system that will be read by the program and sent to the device\&.
.RE .RE

View file

@ -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" /> <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 */
@ -786,7 +786,7 @@ the Firmware Commit command (nvme fw-commit &lt;args&gt;).</p></div>
-f &lt;firmware-file&gt; -f &lt;firmware-file&gt;
</dt> </dt>
<dt class="hdlist1"> <dt class="hdlist1">
--fw=&lt;firmeware-file&gt; --fw=&lt;firmware-file&gt;
</dt> </dt>
<dd> <dd>
<p> <p>
@ -852,7 +852,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -37,7 +37,7 @@ the Firmware Commit command (nvme fw-commit <args>).
OPTIONS OPTIONS
------- -------
-f <firmware-file>:: -f <firmware-file>::
--fw=<firmeware-file>:: --fw=<firmware-file>::
Required argument. This specifies the path to the device's Required argument. This specifies the path to the device's
firmware file on your system that will be read by the program firmware file on your system that will be read by the program
and sent to the device. and sent to the device.

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-FW\-LOG" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-FW\-LOG" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -835,7 +835,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-GEN\-HOSTNQN" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-GEN\-HOSTNQN" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -785,7 +785,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
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-GET\-FEATURE" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-GET\-FEATURE" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <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 */
@ -977,7 +977,7 @@ format:
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated Last updated
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-GET\-LBA\-STAT" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-GET\-LBA\-STAT" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <meta name="generator" content="AsciiDoc 10.2.0" />
<title>nvme-get-lba-status(1)</title> <title>nvme-get-lba-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 */
@ -896,7 +896,7 @@ Get LBA Status of the namespace 1 from SLBA 10 for the max Dwords of 0x1000
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated Last updated
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -2,12 +2,12 @@
.\" Title: nvme-get-log .\" Title: nvme-get-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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-GET\-LOG" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-GET\-LOG" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <meta name="generator" content="AsciiDoc 10.2.0" />
<title>nvme-get-log(1)</title> <title>nvme-get-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 */
@ -962,7 +962,7 @@ Have the program return the raw log page in binary:
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated Last updated
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -2,12 +2,12 @@
.\" Title: nvme-get-ns-id .\" Title: nvme-get-ns-id
.\" 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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-GET\-NS\-ID" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-GET\-NS\-ID" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <meta name="generator" content="AsciiDoc 10.2.0" />
<title>nvme-get-ns-id(1)</title> <title>nvme-get-ns-id(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 */
@ -794,7 +794,7 @@ Shows the namespace id for the given block device:
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated Last updated
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -2,12 +2,12 @@
.\" Title: nvme-get-property .\" Title: nvme-get-property
.\" 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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-GET\-PROPERTY" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-GET\-PROPERTY" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <meta name="generator" content="AsciiDoc 10.2.0" />
<title>nvme-get-property(1)</title> <title>nvme-get-property(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 */
@ -843,7 +843,7 @@ Then look for NVMe Fabrics command (0x7f) at trace
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated Last updated
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -2,12 +2,12 @@
.\" Title: nvme-help .\" Title: nvme-help
.\" 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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-HELP" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-HELP" "1" "07/14/2022" "NVMe" "NVMe Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -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" /> <meta name="generator" content="AsciiDoc 10.2.0" />
<title>nvme-help(1)</title> <title>nvme-help(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 */
@ -794,7 +794,7 @@ Show help for nvme smart log:
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated Last updated
2022-04-08 18:46:59 CEST 2022-07-14 15:11:00 CEST
</div> </div>
</div> </div>
</body> </body>

View file

@ -2,12 +2,12 @@
.\" Title: nvme-huawei-id-ctrl .\" Title: nvme-huawei-id-ctrl
.\" 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: 04/08/2022 .\" Date: 07/14/2022
.\" Manual: NVMe Manual .\" Manual: NVMe Manual
.\" Source: NVMe .\" Source: NVMe
.\" Language: English .\" Language: English
.\" .\"
.TH "NVME\-HUAWEI\-ID\-CT" "1" "04/08/2022" "NVMe" "NVMe Manual" .TH "NVME\-HUAWEI\-ID\-CT" "1" "07/14/2022" "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