Commit d9330ec0 authored by Tomasz Zawadzki's avatar Tomasz Zawadzki
Browse files

doc/cuse: remove dev_path from bdev_nvme_cuse_register doc



There is no such parameter implemented right now,
so remove its mention in documentation.

Signed-off-by: default avatarTomasz Zawadzki <tomasz.zawadzki@intel.com>
Change-Id: I1d4698df1e79fac870a9af19abe4a0a75ce50dc1
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/21460


Reviewed-by: default avatarJim Harris <jim.harris@samsung.com>
Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: default avatarKonrad Sztyber <konrad.sztyber@intel.com>
parent 4bb25b78
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -4675,7 +4675,6 @@ This feature is considered as experimental.
Name                    | Optional | Type        | Description
----------------------- | -------- | ----------- | -----------
name                    | Required | string      | Name of the NVMe controller
dev_path                | Required | string      | Path to the CUSE controller device, e.g. spdk/nvme0

#### Example

@@ -4683,13 +4682,12 @@ Example request:

~~~json
{
  "params": {
    "dev_path": "spdk/nvme0",
    "name": "Nvme0"
  },
  "jsonrpc": "2.0",
  "method": "bdev_nvme_cuse_register",
  "id": 1
  "id": 1,
  "params": {
    "name": "Nvme0"
  }
}
~~~