-
Notifications
You must be signed in to change notification settings - Fork 669
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds helper command to enable FDP configuration. Signed-off-by: Leonardo da Cunha <leonardo.da.cunha@solidigm.com>
- Loading branch information
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
nvme-fdp-feature(1) | ||
=================== | ||
|
||
NAME | ||
---- | ||
nvme-fdp-feature - Show or change Flexible Data Placement (FDP) Feature | ||
|
||
SYNOPSIS | ||
-------- | ||
[verse] | ||
'nvme fdp' <device> [--endgrp-id=<NUM> | -e <NUM>] | ||
[--enable-conf-idx=<NUM> | -c <NUM>] | ||
[--disable | -d] | ||
[--verbose | -v] | ||
|
||
DESCRIPTION | ||
----------- | ||
For the NVMe device given, configure and manage the Flexible Data Placement (FDP) feature. | ||
|
||
This command can be used to either show the current FDP feature configuration or change it. | ||
|
||
If no `--enable-conf-idx` or `--disable` options are provided, the current configuration is | ||
displayed. | ||
|
||
If the `--enable-conf-idx` or `--disable` options are provided, configuration is changed | ||
accordingly. Device may refuse the change if there is a namespace. | ||
|
||
The <device> parameter is mandatory and must be a NVMe character device (ex: /dev/nvme0) | ||
|
||
OPTIONS | ||
------- | ||
-e <NUM>:: | ||
--endgrp-id=<NUM>:: | ||
Specify the endurance group ID. This option is mandatory if device supports endurance groups. | ||
|
||
-c <NUM>:: | ||
--enable-conf-idx=<NUM>:: | ||
Enable FDP feature with the specified configuration. The configuration index matches position | ||
listed by nvme-fdp-config(1). | ||
|
||
-d:: | ||
--disable:: | ||
Disable the current FDP feature configuration. | ||
|
||
-v:: | ||
--verbose:: | ||
Increase verbosity of the output. | ||
|
||
SEE ALSO | ||
-------- | ||
nvme-list-endgrp(1) | ||
nvme-fdp-config(1) | ||
|
||
NVME | ||
---- | ||
Part of nvme-cli |