Skip to content

Commit b9ec3a5

Browse files
kattisrinivasanJames Bottomley
authored andcommitted
scsi: storvsc: Increase the ring buffer size
Increase the default ring buffer size as this can significantly improve performance especially on high latency storage back-ends. Signed-off-by: K. Y. Srinivasan <[email protected]> Reviewed-by: Long Li <[email protected]> Signed-off-by: James Bottomley <[email protected]>
1 parent 114fc1d commit b9ec3a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/scsi/storvsc_drv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ enum storvsc_request_type {
308308
* This is the end of Protocol specific defines.
309309
*/
310310

311-
static int storvsc_ringbuffer_size = (20 * PAGE_SIZE);
311+
static int storvsc_ringbuffer_size = (256 * PAGE_SIZE);
312312

313313
module_param(storvsc_ringbuffer_size, int, S_IRUGO);
314314
MODULE_PARM_DESC(storvsc_ringbuffer_size, "Ring buffer size (bytes)");

0 commit comments

Comments
 (0)