diff --git a/etc/spdk/nvmf.conf.in b/etc/spdk/nvmf.conf.in index c469a4ced..b1d736b73 100644 --- a/etc/spdk/nvmf.conf.in +++ b/etc/spdk/nvmf.conf.in @@ -65,10 +65,41 @@ # poll. Units in microseconds. AcceptorPollRate 10000 +# One valid transport type must be set in each [Transport]. +# The first is the case of RDMA transport and the second is the case of TCP transport. [Transport] - # Users must set at least one transport type. # Set RDMA transport type. Type RDMA + + # Set the maximum number of outstanding I/O per queue. + #MaxQueueDepth 128 + + # Set the maximum number of submission and completion queues per session. + # Setting this to '8', for example, allows for 8 submission and 8 completion queues + # per session. + #MaxQueuesPerSession 4 + + # Set the maximum in-capsule data size. Must be a multiple of 16. + # 0 is a valid choice. + #InCapsuleDataSize 4096 + + # Set the maximum I/O size. Must be a multiple of 4096. + #MaxIOSize 131072 + + # Set the I/O unit size, and this value should not be larger than MaxIOSize + #IOUnitSize 131072 + + # Set the maximum number of IO for admin queue + #MaxAQDepth 32 + + # Set the number of pooled data buffers available to the transport + # It is used to provide the read/write data buffers for the qpairs on this transport. + #NumSharedBuffers 512 + + # Set the number of shared buffers to be cached per poll group + #BufCacheSize 32 + +[Transport] # Set TCP transport type. Type TCP