anolis: blk-mq: bump max tag depth to 64K
ANBZ: #19447 for virtio-blk ring pair mode, the tag map can be huge. So increase the max number of tags to the limit (1 << 16). Signed-off-by: Ferry Meng <mengferry@linux.alibaba.com> Reviewed-by: Joseph Qi <joseph.qi@linux.alibaba.com> Link: https://gitee.com/anolis/cloud-kernel/pulls/5095
This commit is contained in:
parent
0d2c921909
commit
d1f3184e49
|
@ -440,7 +440,7 @@ enum {
|
|||
/* hw queue is inactive after all its CPUs become offline */
|
||||
BLK_MQ_S_INACTIVE = 3,
|
||||
|
||||
BLK_MQ_MAX_DEPTH = 10240,
|
||||
BLK_MQ_MAX_DEPTH = 65536,
|
||||
|
||||
BLK_MQ_CPU_WORK_BATCH = 8,
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue