diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2015-03-27 03:27:14 -0400 |
---|---|---|
committer | James Bottomley <JBottomley@Odin.com> | 2015-04-09 16:22:11 -0400 |
commit | b9ec3a55389560a13e226c8d835db6bf0b3d61fd (patch) | |
tree | 1322b524b15e9084cb0b9b49cf1940f7893130c9 /drivers/scsi/storvsc_drv.c | |
parent | 114fc1d9a8cc7e8eb34fb3896d908992dac09b58 (diff) |
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 <kys@microsoft.com>
Reviewed-by: Long Li <longli@microsoft.com>
Signed-off-by: James Bottomley <JBottomley@Odin.com>
Diffstat (limited to 'drivers/scsi/storvsc_drv.c')
-rw-r--r-- | drivers/scsi/storvsc_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/storvsc_drv.c b/drivers/scsi/storvsc_drv.c index efc6e446b6c8..27fe850bdfed 100644 --- a/drivers/scsi/storvsc_drv.c +++ b/drivers/scsi/storvsc_drv.c | |||
@@ -308,7 +308,7 @@ enum storvsc_request_type { | |||
308 | * This is the end of Protocol specific defines. | 308 | * This is the end of Protocol specific defines. |
309 | */ | 309 | */ |
310 | 310 | ||
311 | static int storvsc_ringbuffer_size = (20 * PAGE_SIZE); | 311 | static int storvsc_ringbuffer_size = (256 * PAGE_SIZE); |
312 | 312 | ||
313 | module_param(storvsc_ringbuffer_size, int, S_IRUGO); | 313 | module_param(storvsc_ringbuffer_size, int, S_IRUGO); |
314 | MODULE_PARM_DESC(storvsc_ringbuffer_size, "Ring buffer size (bytes)"); | 314 | MODULE_PARM_DESC(storvsc_ringbuffer_size, "Ring buffer size (bytes)"); |