diff options
author | Ming Lin <ming.l@ssi.samsung.com> | 2016-04-04 17:48:10 -0400 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2016-04-15 16:53:14 -0400 |
commit | 65e8617fba17732b4c68d3369a621725838b6f28 (patch) | |
tree | e9adae8498a721ad58c7917283076e3bdbd73a2b | |
parent | 001d63be61c3b5a0413a46bacafbfc60c353951a (diff) |
scsi: rename SCSI_MAX_{SG, SG_CHAIN}_SEGMENTS
Rename SCSI_MAX_SG_SEGMENTS to SG_CHUNK_SIZE, which means the amount
we fit into a single scatterlist chunk.
Rename SCSI_MAX_SG_CHAIN_SEGMENTS to SG_MAX_SEGMENTS.
Will move these 2 generic definitions to scatterlist.h later.
Reviewed-by: Christoph Hellwig <hch@lst.de>
Acked-by: Bart Van Assche <bart.vanassche@sandisk.com> (for ib_srp changes)
Signed-off-by: Ming Lin <ming.l@ssi.samsung.com>
Acked-by: Tejun Heo <tj@kernel.org>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
-rw-r--r-- | drivers/ata/pata_icside.c | 2 | ||||
-rw-r--r-- | drivers/infiniband/ulp/srp/ib_srp.c | 4 | ||||
-rw-r--r-- | drivers/scsi/arm/cumana_2.c | 2 | ||||
-rw-r--r-- | drivers/scsi/arm/eesox.c | 2 | ||||
-rw-r--r-- | drivers/scsi/arm/powertec.c | 2 | ||||
-rw-r--r-- | drivers/scsi/esas2r/esas2r_main.c | 4 | ||||
-rw-r--r-- | drivers/scsi/hisi_sas/hisi_sas.h | 2 | ||||
-rw-r--r-- | drivers/scsi/mpt3sas/mpt3sas_base.c | 4 | ||||
-rw-r--r-- | drivers/scsi/mpt3sas/mpt3sas_base.h | 2 | ||||
-rw-r--r-- | drivers/scsi/scsi_debug.c | 2 | ||||
-rw-r--r-- | drivers/scsi/scsi_lib.c | 34 | ||||
-rw-r--r-- | drivers/usb/storage/scsiglue.c | 2 | ||||
-rw-r--r-- | include/scsi/scsi.h | 8 | ||||
-rw-r--r-- | include/scsi/scsi_host.h | 2 |
14 files changed, 36 insertions, 36 deletions
diff --git a/drivers/ata/pata_icside.c b/drivers/ata/pata_icside.c index d7c732042a4f..188f2f2eb21f 100644 --- a/drivers/ata/pata_icside.c +++ b/drivers/ata/pata_icside.c | |||
@@ -294,7 +294,7 @@ static int icside_dma_init(struct pata_icside_info *info) | |||
294 | 294 | ||
295 | static struct scsi_host_template pata_icside_sht = { | 295 | static struct scsi_host_template pata_icside_sht = { |
296 | ATA_BASE_SHT(DRV_NAME), | 296 | ATA_BASE_SHT(DRV_NAME), |
297 | .sg_tablesize = SCSI_MAX_SG_CHAIN_SEGMENTS, | 297 | .sg_tablesize = SG_MAX_SEGMENTS, |
298 | .dma_boundary = IOMD_DMA_BOUNDARY, | 298 | .dma_boundary = IOMD_DMA_BOUNDARY, |
299 | }; | 299 | }; |
300 | 300 | ||
diff --git a/drivers/infiniband/ulp/srp/ib_srp.c b/drivers/infiniband/ulp/srp/ib_srp.c index ff21597aa54d..369a75e1f44e 100644 --- a/drivers/infiniband/ulp/srp/ib_srp.c +++ b/drivers/infiniband/ulp/srp/ib_srp.c | |||
@@ -81,7 +81,7 @@ MODULE_PARM_DESC(cmd_sg_entries, | |||
81 | 81 | ||
82 | module_param(indirect_sg_entries, uint, 0444); | 82 | module_param(indirect_sg_entries, uint, 0444); |
83 | MODULE_PARM_DESC(indirect_sg_entries, | 83 | MODULE_PARM_DESC(indirect_sg_entries, |
84 | "Default max number of gather/scatter entries (default is 12, max is " __stringify(SCSI_MAX_SG_CHAIN_SEGMENTS) ")"); | 84 | "Default max number of gather/scatter entries (default is 12, max is " __stringify(SG_MAX_SEGMENTS) ")"); |
85 | 85 | ||
86 | module_param(allow_ext_sg, bool, 0444); | 86 | module_param(allow_ext_sg, bool, 0444); |
87 | MODULE_PARM_DESC(allow_ext_sg, | 87 | MODULE_PARM_DESC(allow_ext_sg, |
@@ -3097,7 +3097,7 @@ static int srp_parse_options(const char *buf, struct srp_target_port *target) | |||
3097 | 3097 | ||
3098 | case SRP_OPT_SG_TABLESIZE: | 3098 | case SRP_OPT_SG_TABLESIZE: |
3099 | if (match_int(args, &token) || token < 1 || | 3099 | if (match_int(args, &token) || token < 1 || |
3100 | token > SCSI_MAX_SG_CHAIN_SEGMENTS) { | 3100 | token > SG_MAX_SEGMENTS) { |
3101 | pr_warn("bad max sg_tablesize parameter '%s'\n", | 3101 | pr_warn("bad max sg_tablesize parameter '%s'\n", |
3102 | p); | 3102 | p); |
3103 | goto out; | 3103 | goto out; |
diff --git a/drivers/scsi/arm/cumana_2.c b/drivers/scsi/arm/cumana_2.c index faa1bee07c8a..edce5f3cfdba 100644 --- a/drivers/scsi/arm/cumana_2.c +++ b/drivers/scsi/arm/cumana_2.c | |||
@@ -365,7 +365,7 @@ static struct scsi_host_template cumanascsi2_template = { | |||
365 | .eh_abort_handler = fas216_eh_abort, | 365 | .eh_abort_handler = fas216_eh_abort, |
366 | .can_queue = 1, | 366 | .can_queue = 1, |
367 | .this_id = 7, | 367 | .this_id = 7, |
368 | .sg_tablesize = SCSI_MAX_SG_CHAIN_SEGMENTS, | 368 | .sg_tablesize = SG_MAX_SEGMENTS, |
369 | .dma_boundary = IOMD_DMA_BOUNDARY, | 369 | .dma_boundary = IOMD_DMA_BOUNDARY, |
370 | .use_clustering = DISABLE_CLUSTERING, | 370 | .use_clustering = DISABLE_CLUSTERING, |
371 | .proc_name = "cumanascsi2", | 371 | .proc_name = "cumanascsi2", |
diff --git a/drivers/scsi/arm/eesox.c b/drivers/scsi/arm/eesox.c index a8ad6880dd91..e93e047f4316 100644 --- a/drivers/scsi/arm/eesox.c +++ b/drivers/scsi/arm/eesox.c | |||
@@ -484,7 +484,7 @@ static struct scsi_host_template eesox_template = { | |||
484 | .eh_abort_handler = fas216_eh_abort, | 484 | .eh_abort_handler = fas216_eh_abort, |
485 | .can_queue = 1, | 485 | .can_queue = 1, |
486 | .this_id = 7, | 486 | .this_id = 7, |
487 | .sg_tablesize = SCSI_MAX_SG_CHAIN_SEGMENTS, | 487 | .sg_tablesize = SG_MAX_SEGMENTS, |
488 | .dma_boundary = IOMD_DMA_BOUNDARY, | 488 | .dma_boundary = IOMD_DMA_BOUNDARY, |
489 | .use_clustering = DISABLE_CLUSTERING, | 489 | .use_clustering = DISABLE_CLUSTERING, |
490 | .proc_name = "eesox", | 490 | .proc_name = "eesox", |
diff --git a/drivers/scsi/arm/powertec.c b/drivers/scsi/arm/powertec.c index 5e1b73e1b743..79aa88911b7f 100644 --- a/drivers/scsi/arm/powertec.c +++ b/drivers/scsi/arm/powertec.c | |||
@@ -291,7 +291,7 @@ static struct scsi_host_template powertecscsi_template = { | |||
291 | 291 | ||
292 | .can_queue = 8, | 292 | .can_queue = 8, |
293 | .this_id = 7, | 293 | .this_id = 7, |
294 | .sg_tablesize = SCSI_MAX_SG_CHAIN_SEGMENTS, | 294 | .sg_tablesize = SG_MAX_SEGMENTS, |
295 | .dma_boundary = IOMD_DMA_BOUNDARY, | 295 | .dma_boundary = IOMD_DMA_BOUNDARY, |
296 | .cmd_per_lun = 2, | 296 | .cmd_per_lun = 2, |
297 | .use_clustering = ENABLE_CLUSTERING, | 297 | .use_clustering = ENABLE_CLUSTERING, |
diff --git a/drivers/scsi/esas2r/esas2r_main.c b/drivers/scsi/esas2r/esas2r_main.c index 33581ba4386e..2aca4d16f39e 100644 --- a/drivers/scsi/esas2r/esas2r_main.c +++ b/drivers/scsi/esas2r/esas2r_main.c | |||
@@ -246,7 +246,7 @@ static struct scsi_host_template driver_template = { | |||
246 | .eh_target_reset_handler = esas2r_target_reset, | 246 | .eh_target_reset_handler = esas2r_target_reset, |
247 | .can_queue = 128, | 247 | .can_queue = 128, |
248 | .this_id = -1, | 248 | .this_id = -1, |
249 | .sg_tablesize = SCSI_MAX_SG_SEGMENTS, | 249 | .sg_tablesize = SG_CHUNK_SIZE, |
250 | .cmd_per_lun = | 250 | .cmd_per_lun = |
251 | ESAS2R_DEFAULT_CMD_PER_LUN, | 251 | ESAS2R_DEFAULT_CMD_PER_LUN, |
252 | .present = 0, | 252 | .present = 0, |
@@ -271,7 +271,7 @@ module_param(num_sg_lists, int, 0); | |||
271 | MODULE_PARM_DESC(num_sg_lists, | 271 | MODULE_PARM_DESC(num_sg_lists, |
272 | "Number of scatter/gather lists. Default 1024."); | 272 | "Number of scatter/gather lists. Default 1024."); |
273 | 273 | ||
274 | int sg_tablesize = SCSI_MAX_SG_SEGMENTS; | 274 | int sg_tablesize = SG_CHUNK_SIZE; |
275 | module_param(sg_tablesize, int, 0); | 275 | module_param(sg_tablesize, int, 0); |
276 | MODULE_PARM_DESC(sg_tablesize, | 276 | MODULE_PARM_DESC(sg_tablesize, |
277 | "Maximum number of entries in a scatter/gather table."); | 277 | "Maximum number of entries in a scatter/gather table."); |
diff --git a/drivers/scsi/hisi_sas/hisi_sas.h b/drivers/scsi/hisi_sas/hisi_sas.h index 29e89f340b64..fa12eeac140c 100644 --- a/drivers/scsi/hisi_sas/hisi_sas.h +++ b/drivers/scsi/hisi_sas/hisi_sas.h | |||
@@ -298,7 +298,7 @@ struct hisi_sas_command_table_stp { | |||
298 | u8 atapi_cdb[ATAPI_CDB_LEN]; | 298 | u8 atapi_cdb[ATAPI_CDB_LEN]; |
299 | }; | 299 | }; |
300 | 300 | ||
301 | #define HISI_SAS_SGE_PAGE_CNT SCSI_MAX_SG_SEGMENTS | 301 | #define HISI_SAS_SGE_PAGE_CNT SG_CHUNK_SIZE |
302 | struct hisi_sas_sge_page { | 302 | struct hisi_sas_sge_page { |
303 | struct hisi_sas_sge sge[HISI_SAS_SGE_PAGE_CNT]; | 303 | struct hisi_sas_sge sge[HISI_SAS_SGE_PAGE_CNT]; |
304 | }; | 304 | }; |
diff --git a/drivers/scsi/mpt3sas/mpt3sas_base.c b/drivers/scsi/mpt3sas/mpt3sas_base.c index 8c44b9c424af..28d85314b3c6 100644 --- a/drivers/scsi/mpt3sas/mpt3sas_base.c +++ b/drivers/scsi/mpt3sas/mpt3sas_base.c | |||
@@ -3207,10 +3207,10 @@ _base_allocate_memory_pools(struct MPT3SAS_ADAPTER *ioc, int sleep_flag) | |||
3207 | sg_tablesize = MPT_MIN_PHYS_SEGMENTS; | 3207 | sg_tablesize = MPT_MIN_PHYS_SEGMENTS; |
3208 | else if (sg_tablesize > MPT_MAX_PHYS_SEGMENTS) { | 3208 | else if (sg_tablesize > MPT_MAX_PHYS_SEGMENTS) { |
3209 | sg_tablesize = min_t(unsigned short, sg_tablesize, | 3209 | sg_tablesize = min_t(unsigned short, sg_tablesize, |
3210 | SCSI_MAX_SG_CHAIN_SEGMENTS); | 3210 | SG_MAX_SEGMENTS); |
3211 | pr_warn(MPT3SAS_FMT | 3211 | pr_warn(MPT3SAS_FMT |
3212 | "sg_tablesize(%u) is bigger than kernel" | 3212 | "sg_tablesize(%u) is bigger than kernel" |
3213 | " defined SCSI_MAX_SG_SEGMENTS(%u)\n", ioc->name, | 3213 | " defined SG_CHUNK_SIZE(%u)\n", ioc->name, |
3214 | sg_tablesize, MPT_MAX_PHYS_SEGMENTS); | 3214 | sg_tablesize, MPT_MAX_PHYS_SEGMENTS); |
3215 | } | 3215 | } |
3216 | ioc->shost->sg_tablesize = sg_tablesize; | 3216 | ioc->shost->sg_tablesize = sg_tablesize; |
diff --git a/drivers/scsi/mpt3sas/mpt3sas_base.h b/drivers/scsi/mpt3sas/mpt3sas_base.h index 32580b514b18..6940c577053f 100644 --- a/drivers/scsi/mpt3sas/mpt3sas_base.h +++ b/drivers/scsi/mpt3sas/mpt3sas_base.h | |||
@@ -90,7 +90,7 @@ | |||
90 | /* | 90 | /* |
91 | * Set MPT3SAS_SG_DEPTH value based on user input. | 91 | * Set MPT3SAS_SG_DEPTH value based on user input. |
92 | */ | 92 | */ |
93 | #define MPT_MAX_PHYS_SEGMENTS SCSI_MAX_SG_SEGMENTS | 93 | #define MPT_MAX_PHYS_SEGMENTS SG_CHUNK_SIZE |
94 | #define MPT_MIN_PHYS_SEGMENTS 16 | 94 | #define MPT_MIN_PHYS_SEGMENTS 16 |
95 | 95 | ||
96 | #ifdef CONFIG_SCSI_MPT3SAS_MAX_SGE | 96 | #ifdef CONFIG_SCSI_MPT3SAS_MAX_SGE |
diff --git a/drivers/scsi/scsi_debug.c b/drivers/scsi/scsi_debug.c index f3d69a98c725..06b151711cdd 100644 --- a/drivers/scsi/scsi_debug.c +++ b/drivers/scsi/scsi_debug.c | |||
@@ -5305,7 +5305,7 @@ static struct scsi_host_template sdebug_driver_template = { | |||
5305 | .eh_host_reset_handler = scsi_debug_host_reset, | 5305 | .eh_host_reset_handler = scsi_debug_host_reset, |
5306 | .can_queue = SCSI_DEBUG_CANQUEUE, | 5306 | .can_queue = SCSI_DEBUG_CANQUEUE, |
5307 | .this_id = 7, | 5307 | .this_id = 7, |
5308 | .sg_tablesize = SCSI_MAX_SG_CHAIN_SEGMENTS, | 5308 | .sg_tablesize = SG_MAX_SEGMENTS, |
5309 | .cmd_per_lun = DEF_CMD_PER_LUN, | 5309 | .cmd_per_lun = DEF_CMD_PER_LUN, |
5310 | .max_sectors = -1U, | 5310 | .max_sectors = -1U, |
5311 | .use_clustering = DISABLE_CLUSTERING, | 5311 | .use_clustering = DISABLE_CLUSTERING, |
diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c index 08134f621450..8f776f1e95ce 100644 --- a/drivers/scsi/scsi_lib.c +++ b/drivers/scsi/scsi_lib.c | |||
@@ -51,25 +51,25 @@ struct sg_pool { | |||
51 | }; | 51 | }; |
52 | 52 | ||
53 | #define SP(x) { .size = x, "sgpool-" __stringify(x) } | 53 | #define SP(x) { .size = x, "sgpool-" __stringify(x) } |
54 | #if (SCSI_MAX_SG_SEGMENTS < 32) | 54 | #if (SG_CHUNK_SIZE < 32) |
55 | #error SCSI_MAX_SG_SEGMENTS is too small (must be 32 or greater) | 55 | #error SG_CHUNK_SIZE is too small (must be 32 or greater) |
56 | #endif | 56 | #endif |
57 | static struct sg_pool sg_pools[] = { | 57 | static struct sg_pool sg_pools[] = { |
58 | SP(8), | 58 | SP(8), |
59 | SP(16), | 59 | SP(16), |
60 | #if (SCSI_MAX_SG_SEGMENTS > 32) | 60 | #if (SG_CHUNK_SIZE > 32) |
61 | SP(32), | 61 | SP(32), |
62 | #if (SCSI_MAX_SG_SEGMENTS > 64) | 62 | #if (SG_CHUNK_SIZE > 64) |
63 | SP(64), | 63 | SP(64), |
64 | #if (SCSI_MAX_SG_SEGMENTS > 128) | 64 | #if (SG_CHUNK_SIZE > 128) |
65 | SP(128), | 65 | SP(128), |
66 | #if (SCSI_MAX_SG_SEGMENTS > 256) | 66 | #if (SG_CHUNK_SIZE > 256) |
67 | #error SCSI_MAX_SG_SEGMENTS is too large (256 MAX) | 67 | #error SG_CHUNK_SIZE is too large (256 MAX) |
68 | #endif | 68 | #endif |
69 | #endif | 69 | #endif |
70 | #endif | 70 | #endif |
71 | #endif | 71 | #endif |
72 | SP(SCSI_MAX_SG_SEGMENTS) | 72 | SP(SG_CHUNK_SIZE) |
73 | }; | 73 | }; |
74 | #undef SP | 74 | #undef SP |
75 | 75 | ||
@@ -557,7 +557,7 @@ static inline unsigned int sg_pool_index(unsigned short nents) | |||
557 | { | 557 | { |
558 | unsigned int index; | 558 | unsigned int index; |
559 | 559 | ||
560 | BUG_ON(nents > SCSI_MAX_SG_SEGMENTS); | 560 | BUG_ON(nents > SG_CHUNK_SIZE); |
561 | 561 | ||
562 | if (nents <= 8) | 562 | if (nents <= 8) |
563 | index = 0; | 563 | index = 0; |
@@ -585,9 +585,9 @@ static struct scatterlist *sg_pool_alloc(unsigned int nents, gfp_t gfp_mask) | |||
585 | 585 | ||
586 | static void sg_free_table_chained(struct sg_table *table, bool first_chunk) | 586 | static void sg_free_table_chained(struct sg_table *table, bool first_chunk) |
587 | { | 587 | { |
588 | if (first_chunk && table->orig_nents <= SCSI_MAX_SG_SEGMENTS) | 588 | if (first_chunk && table->orig_nents <= SG_CHUNK_SIZE) |
589 | return; | 589 | return; |
590 | __sg_free_table(table, SCSI_MAX_SG_SEGMENTS, first_chunk, sg_pool_free); | 590 | __sg_free_table(table, SG_CHUNK_SIZE, first_chunk, sg_pool_free); |
591 | } | 591 | } |
592 | 592 | ||
593 | static int sg_alloc_table_chained(struct sg_table *table, int nents, | 593 | static int sg_alloc_table_chained(struct sg_table *table, int nents, |
@@ -598,14 +598,14 @@ static int sg_alloc_table_chained(struct sg_table *table, int nents, | |||
598 | BUG_ON(!nents); | 598 | BUG_ON(!nents); |
599 | 599 | ||
600 | if (first_chunk) { | 600 | if (first_chunk) { |
601 | if (nents <= SCSI_MAX_SG_SEGMENTS) { | 601 | if (nents <= SG_CHUNK_SIZE) { |
602 | table->nents = table->orig_nents = nents; | 602 | table->nents = table->orig_nents = nents; |
603 | sg_init_table(table->sgl, nents); | 603 | sg_init_table(table->sgl, nents); |
604 | return 0; | 604 | return 0; |
605 | } | 605 | } |
606 | } | 606 | } |
607 | 607 | ||
608 | ret = __sg_alloc_table(table, nents, SCSI_MAX_SG_SEGMENTS, | 608 | ret = __sg_alloc_table(table, nents, SG_CHUNK_SIZE, |
609 | first_chunk, GFP_ATOMIC, sg_pool_alloc); | 609 | first_chunk, GFP_ATOMIC, sg_pool_alloc); |
610 | if (unlikely(ret)) | 610 | if (unlikely(ret)) |
611 | sg_free_table_chained(table, (bool)first_chunk); | 611 | sg_free_table_chained(table, (bool)first_chunk); |
@@ -1937,7 +1937,7 @@ static int scsi_mq_prep_fn(struct request *req) | |||
1937 | if (scsi_host_get_prot(shost)) { | 1937 | if (scsi_host_get_prot(shost)) { |
1938 | cmd->prot_sdb = (void *)sg + | 1938 | cmd->prot_sdb = (void *)sg + |
1939 | min_t(unsigned int, | 1939 | min_t(unsigned int, |
1940 | shost->sg_tablesize, SCSI_MAX_SG_SEGMENTS) * | 1940 | shost->sg_tablesize, SG_CHUNK_SIZE) * |
1941 | sizeof(struct scatterlist); | 1941 | sizeof(struct scatterlist); |
1942 | memset(cmd->prot_sdb, 0, sizeof(struct scsi_data_buffer)); | 1942 | memset(cmd->prot_sdb, 0, sizeof(struct scsi_data_buffer)); |
1943 | 1943 | ||
@@ -2110,7 +2110,7 @@ static void __scsi_init_queue(struct Scsi_Host *shost, struct request_queue *q) | |||
2110 | * this limit is imposed by hardware restrictions | 2110 | * this limit is imposed by hardware restrictions |
2111 | */ | 2111 | */ |
2112 | blk_queue_max_segments(q, min_t(unsigned short, shost->sg_tablesize, | 2112 | blk_queue_max_segments(q, min_t(unsigned short, shost->sg_tablesize, |
2113 | SCSI_MAX_SG_CHAIN_SEGMENTS)); | 2113 | SG_MAX_SEGMENTS)); |
2114 | 2114 | ||
2115 | if (scsi_host_prot_dma(shost)) { | 2115 | if (scsi_host_prot_dma(shost)) { |
2116 | shost->sg_prot_tablesize = | 2116 | shost->sg_prot_tablesize = |
@@ -2192,8 +2192,8 @@ int scsi_mq_setup_tags(struct Scsi_Host *shost) | |||
2192 | unsigned int cmd_size, sgl_size, tbl_size; | 2192 | unsigned int cmd_size, sgl_size, tbl_size; |
2193 | 2193 | ||
2194 | tbl_size = shost->sg_tablesize; | 2194 | tbl_size = shost->sg_tablesize; |
2195 | if (tbl_size > SCSI_MAX_SG_SEGMENTS) | 2195 | if (tbl_size > SG_CHUNK_SIZE) |
2196 | tbl_size = SCSI_MAX_SG_SEGMENTS; | 2196 | tbl_size = SG_CHUNK_SIZE; |
2197 | sgl_size = tbl_size * sizeof(struct scatterlist); | 2197 | sgl_size = tbl_size * sizeof(struct scatterlist); |
2198 | cmd_size = sizeof(struct scsi_cmnd) + shost->hostt->cmd_size + sgl_size; | 2198 | cmd_size = sizeof(struct scsi_cmnd) + shost->hostt->cmd_size + sgl_size; |
2199 | if (scsi_host_get_prot(shost)) | 2199 | if (scsi_host_get_prot(shost)) |
diff --git a/drivers/usb/storage/scsiglue.c b/drivers/usb/storage/scsiglue.c index 90901861bfc0..ae85861051eb 100644 --- a/drivers/usb/storage/scsiglue.c +++ b/drivers/usb/storage/scsiglue.c | |||
@@ -563,7 +563,7 @@ static const struct scsi_host_template usb_stor_host_template = { | |||
563 | .target_alloc = target_alloc, | 563 | .target_alloc = target_alloc, |
564 | 564 | ||
565 | /* lots of sg segments can be handled */ | 565 | /* lots of sg segments can be handled */ |
566 | .sg_tablesize = SCSI_MAX_SG_CHAIN_SEGMENTS, | 566 | .sg_tablesize = SG_MAX_SEGMENTS, |
567 | 567 | ||
568 | /* limit the total size of a transfer to 120 KB */ | 568 | /* limit the total size of a transfer to 120 KB */ |
569 | .max_sectors = 240, | 569 | .max_sectors = 240, |
diff --git a/include/scsi/scsi.h b/include/scsi/scsi.h index e0a3398b1547..74dafa75bae7 100644 --- a/include/scsi/scsi.h +++ b/include/scsi/scsi.h | |||
@@ -24,16 +24,16 @@ enum scsi_timeouts { | |||
24 | * to SG_MAX_SINGLE_ALLOC to pack correctly at the highest order. The | 24 | * to SG_MAX_SINGLE_ALLOC to pack correctly at the highest order. The |
25 | * minimum value is 32 | 25 | * minimum value is 32 |
26 | */ | 26 | */ |
27 | #define SCSI_MAX_SG_SEGMENTS 128 | 27 | #define SG_CHUNK_SIZE 128 |
28 | 28 | ||
29 | /* | 29 | /* |
30 | * Like SCSI_MAX_SG_SEGMENTS, but for archs that have sg chaining. This limit | 30 | * Like SG_CHUNK_SIZE, but for archs that have sg chaining. This limit |
31 | * is totally arbitrary, a setting of 2048 will get you at least 8mb ios. | 31 | * is totally arbitrary, a setting of 2048 will get you at least 8mb ios. |
32 | */ | 32 | */ |
33 | #ifdef CONFIG_ARCH_HAS_SG_CHAIN | 33 | #ifdef CONFIG_ARCH_HAS_SG_CHAIN |
34 | #define SCSI_MAX_SG_CHAIN_SEGMENTS 2048 | 34 | #define SG_MAX_SEGMENTS 2048 |
35 | #else | 35 | #else |
36 | #define SCSI_MAX_SG_CHAIN_SEGMENTS SCSI_MAX_SG_SEGMENTS | 36 | #define SG_MAX_SEGMENTS SG_CHUNK_SIZE |
37 | #endif | 37 | #endif |
38 | 38 | ||
39 | /* | 39 | /* |
diff --git a/include/scsi/scsi_host.h b/include/scsi/scsi_host.h index fcfa3d7f5e7e..76e9d278c334 100644 --- a/include/scsi/scsi_host.h +++ b/include/scsi/scsi_host.h | |||
@@ -37,7 +37,7 @@ struct blk_queue_tags; | |||
37 | * used in one scatter-gather request. | 37 | * used in one scatter-gather request. |
38 | */ | 38 | */ |
39 | #define SG_NONE 0 | 39 | #define SG_NONE 0 |
40 | #define SG_ALL SCSI_MAX_SG_SEGMENTS | 40 | #define SG_ALL SG_CHUNK_SIZE |
41 | 41 | ||
42 | #define MODE_UNKNOWN 0x00 | 42 | #define MODE_UNKNOWN 0x00 |
43 | #define MODE_INITIATOR 0x01 | 43 | #define MODE_INITIATOR 0x01 |