diff options
| author | Christoph Hellwig <hch@infradead.org> | 2011-11-29 03:20:41 -0500 | 
|---|---|---|
| committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2011-12-14 11:28:11 +0000 | 
| commit | 2e88efd3aaafa0df05593cdfa5fd17afe922781d (patch) | |
| tree | 41f1f2c6c425d394fb55927b5fcec3a651660515 /drivers/target/loopback/tcm_loop.c | |
| parent | 0877eafd1618ef683e2ff2273acdeca5f1b077b9 (diff) | |
| download | olio-linux-3.10-2e88efd3aaafa0df05593cdfa5fd17afe922781d.tar.xz olio-linux-3.10-2e88efd3aaafa0df05593cdfa5fd17afe922781d.zip  | |
tcm_loop: bump max_sectors
There is not reason to artifically limit max_sectors in tcm_loop, set
it to UINT_MAX to allow stressing the large I/O handling in the target
core using the loopback driver.  Also remove various superflous defines
hiding the values set in the host template.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/target/loopback/tcm_loop.c')
| -rw-r--r-- | drivers/target/loopback/tcm_loop.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/target/loopback/tcm_loop.c b/drivers/target/loopback/tcm_loop.c index 572d27a6b7a..c47ff7f59e5 100644 --- a/drivers/target/loopback/tcm_loop.c +++ b/drivers/target/loopback/tcm_loop.c @@ -416,11 +416,11 @@ static struct scsi_host_template tcm_loop_driver_template = {  	.queuecommand		= tcm_loop_queuecommand,  	.change_queue_depth	= tcm_loop_change_queue_depth,  	.eh_device_reset_handler = tcm_loop_device_reset, -	.can_queue		= TL_SCSI_CAN_QUEUE, +	.can_queue		= 1024,  	.this_id		= -1, -	.sg_tablesize		= TL_SCSI_SG_TABLESIZE, -	.cmd_per_lun		= TL_SCSI_CMD_PER_LUN, -	.max_sectors		= TL_SCSI_MAX_SECTORS, +	.sg_tablesize		= 256, +	.cmd_per_lun		= 1024, +	.max_sectors		= 0xFFFF,  	.use_clustering		= DISABLE_CLUSTERING,  	.slave_alloc		= tcm_loop_slave_alloc,  	.slave_configure	= tcm_loop_slave_configure,  |