blob: f7e8f6d40b1e21cbac6f1d72f4ddeb67cdb2b0b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
nvme-io-mgmt-send(1)
====================
NAME
----
nvme-io-mgmt-send - I/O Management Send command
SYNOPSIS
--------
[verse]
'nvme io-mgmt-send' <device> [--namespace-id=<NUM> | -n <NUM>]
[--mos=<NUM> | -s <NUM>] [--mo=<NUM> | -m <NUM>]
[--data=<FILE> | -d <FILE>]
[--data-len=<NUM> | -l <NUM>]
[--output-format=<fmt> | -o <fmt>] [--verbose | -v]
DESCRIPTION
-----------
For the NVMe device given, issues the I/O Management Send command with the
requested management operation (mo) and management operation specific parameter
(mos). This is the generic interface provided for forward compatibility as new
operations are added that this program isn't aware of at the time of its
development. As such, this is a generic command that does not provide any
convenience parameters to produce the binary payload.
OPTIONS
-------
-n <NUM>::
--namespace-id=<NUM>::
Use the provided namespace id for the command. If not provided, the
namespace id of the block device will be used. If the command is issued
to a non-block device, the parameter is required.
-d <FILE>::
--data=<FILE>::
File to read payload from. If unspecified, data will be read from the
standard input stream.
-l <NUM>::
--data-len=<NUM>::
Payload data buffer length
-m <NUM>::
--mo <NUM>::
Management Operation to perform.
-s <NUM>::
--mos=<NUM>::
Management Operation Specific parameter.
-o <fmt>::
--output-format=<fmt>::
Set the reporting format to 'normal', 'json' or 'binary'. Only one
output format can be used at a time.
-v::
--verbose::
Increase the information detail in the output.
NVME
----
Part of nvme-cli
|