diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2013-06-04 15:05:09 -0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2013-07-08 10:23:15 -0400 |
commit | bb6a4df6db9e69e225bfc5a9d95a1675342e1873 (patch) | |
tree | d9d0d239326e518114e661afa29d746e811636cd | |
parent | bde6d0f9877e19fc9d309bbd624da422b18cdc3d (diff) |
[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>
-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)"); | |||
326 | */ | 326 | */ |
327 | static int storvsc_timeout = 180; | 327 | static int storvsc_timeout = 180; |
328 | 328 | ||
329 | #define STORVSC_MAX_IO_REQUESTS 128 | 329 | #define STORVSC_MAX_IO_REQUESTS 200 |
330 | 330 | ||
331 | static void storvsc_on_channel_callback(void *context); | 331 | static void storvsc_on_channel_callback(void *context); |
332 | 332 | ||