浏览代码

nvmet-fc: increase LS buffer count per fc port

Todays limit on concurrent LS's is very small - 4 buffers. With large
subsystem counts or large numbers of initiators connecting, the limit
may be exceeded.

Raise the LS buffer count to 256.

Signed-off-by: James Smart <james.smart@broadcom.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
James Smart 7 年之前
父节点
当前提交
17d78252ee
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/nvme/target/fc.c

+ 1 - 1
drivers/nvme/target/fc.c

@@ -31,7 +31,7 @@
 /* *************************** Data Structures/Defines ****************** */
 /* *************************** Data Structures/Defines ****************** */
 
 
 
 
-#define NVMET_LS_CTX_COUNT		4
+#define NVMET_LS_CTX_COUNT		256
 
 
 /* for this implementation, assume small single frame rqst/rsp */
 /* for this implementation, assume small single frame rqst/rsp */
 #define NVME_FC_MAX_LS_BUFFER_SIZE		2048
 #define NVME_FC_MAX_LS_BUFFER_SIZE		2048