Update the content to support Intel specific commands and add a note on the usage about spdk.conf file. Change-Id: Id9bcac3719c951d3f4e9f6fe922004b3c325fabb Signed-off-by: GangCao <gang.cao@intel.com> Reviewed-on: https://review.gerrithub.io/394563 Tested-by: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
3.0 KiB
nvme-cli
nvme-cli with SPDK Getting Started Guide
Now nvme-cli can support both kernel driver and SPDK user mode driver for most of its available commands and Intel specific commands.
- Clone the nvme-cli repository from the SPDK GitHub fork. Make sure you check out the spdk branch.
git clone -b spdk https://github.com/spdk/nvme-cli.git
-
Clone the SPDK repository from https://github.com/spdk/spdk under the nvme-cli folder.
-
Refer to the "README.md" under SPDK folder to properly build SPDK.
-
Refer to the "README.md" under nvme-cli folder to properly build nvme-cli.
-
Execute "<spdk_folder>/scripts/setup.sh" with the "root" account.
-
Update the "spdk.conf" file under nvme-cli folder to properly configure the SPDK. Notes as following:
spdk=0
Default to 0 (off) and change to 1 (on) after switching to SPDK via "<spdk_folder>/scripts/setup.sh".
core_mask=0x100
Default to use the 9th core for the nvme-cli running.
mem_size=512
Default to use 512MB memory allocated.
shm_id=1
Default to 1. If other running SPDK application has configured with this same 1 shm_id.
This nvme-cli will access those devices from that running SPDK application.
-
Run the "./nvme list" command to get the domain🚌device.function for each found NVMe SSD.
-
Run the other nvme commands with domain🚌device.function instead of "/dev/nvmeX" for the specified device.
Example: ./nvme smart-log 0000:01:00.0
- Run the "./nvme intel" commands for Intel specific commands against Intel NVMe SSD.
Example: ./nvme intel internal-log 0000:08:00.0
- Execute "<spdk_folder>/scripts/setup.sh reset" with the "root" account and update "spdk=0" in spdk.conf to use the kernel driver if wanted.
Use scenarios
Run as the only SPDK application on the system
- Modify the spdk to 1 in spdk.conf. If the system has fewer cores or less memory, update the spdk.conf accordingly.
Run together with other running SPDK applications on shared NVMe SSDs
-
For the other running SPDK application, start with the parameter like "-i 1" to have the same "shm_id".
-
Use the default spdk.conf setting where "shm_id=1" to start the nvme-cli.
-
If other SPDK applications run with different shm_id parameter, update the "spdk.conf" accordingly.
Run with other running SPDK applications on non-shared NVMe SSDs
- Properly configure the other running SPDK applications.
a. Only access the NVMe SSDs it wants.
b. Allocate a fixed number of memory instead of all available memory.
- Properly configure the spdk.conf setting for nvme-cli.
a. Not access the NVMe SSDs from other SPDK applications.
b. Change the mem_size to a proper size.
Note
-
To run the newly built nvme-cli, either explicitly run as "./nvme" or added it into the $PATH to avoid invoke other already installed version.
-
To run the newly built nvme-cli with SPDK support in arbitrary directory, copy "spdk.conf" to that directory from the nvme cli folder and update the configuration as suggested.