diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2013-06-04 23:05:09 +0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2013-07-08 18:23:15 +0400 |
commit | bb6a4df6db9e69e225bfc5a9d95a1675342e1873 (patch) | |
tree | d9d0d239326e518114e661afa29d746e811636cd /drivers/scsi/storvsc_drv.c | |
parent | bde6d0f9877e19fc9d309bbd624da422b18cdc3d (diff) | |
download | linux-bb6a4df6db9e69e225bfc5a9d95a1675342e1873.tar.xz |
[SCSI] storvsc: Increase the value of STORVSC_MAX_IO_REQUESTS
Increase the value of STORVSC_MAX_IO_REQUESTS to 200 requests. The current
ringbuffer size can support this higher value.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.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 b864e7c3da4b..83ec1aa85964 100644 --- a/drivers/scsi/storvsc_drv.c +++ b/drivers/scsi/storvsc_drv.c @@ -326,7 +326,7 @@ MODULE_PARM_DESC(storvsc_ringbuffer_size, "Ring buffer size (bytes)"); */ static int storvsc_timeout = 180; -#define STORVSC_MAX_IO_REQUESTS 128 +#define STORVSC_MAX_IO_REQUESTS 200 static void storvsc_on_channel_callback(void *context); |