diff --git a/doc/nvmf.md b/doc/nvmf.md index 34fecae58..b19fff19c 100644 --- a/doc/nvmf.md +++ b/doc/nvmf.md @@ -152,13 +152,13 @@ working with NVMe over Fabrics specific RPCs can be found on the @ref jsonrpc_co Start the nvmf_tgt application with elevated privileges. Once the target is started, the nvmf_create_transport rpc can be used to initialize a given transport. Below is an example where the target is started and configured with two different transports. -The RDMA transport is configured with an I/O unit size of 8192 bytes, 4 max qpairs per controller, -and an in capsule data size of 0 bytes. The TCP transport is configured with an I/O unit size of +The RDMA transport is configured with an I/O unit size of 8192 bytes, max I/O size 131072 and an +in capsule data size of 8192 bytes. The TCP transport is configured with an I/O unit size of 16384 bytes, 8 max qpairs per controller, and an in capsule data size of 8192 bytes. ~~~{.sh} build/bin/nvmf_tgt -scripts/rpc.py nvmf_create_transport -t RDMA -u 8192 -m 4 -c 0 +scripts/rpc.py nvmf_create_transport -t RDMA -u 8192 -i 131072 -c 8192 scripts/rpc.py nvmf_create_transport -t TCP -u 16384 -m 8 -c 8192 ~~~