aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/card/queue.c
diff options
context:
space:
mode:
authorMartin K. Petersen <martin.petersen@oracle.com>2010-09-10 01:33:59 -0400
committerChris Ball <cjb@laptop.org>2010-10-23 09:11:11 -0400
commita36274e0184193e393fb82957925c3981a6b0477 (patch)
treee937d3932603f2c574e54a28b5cb1cf07029f9f1 /drivers/mmc/card/queue.c
parent7a5ea56abc493fd43fb8d5b2f55d18396ec048f1 (diff)
mmc: Remove distinction between hw and phys segments
We have deprecated the distinction between hardware and physical segments in the block layer. Consolidate the two limits into one in drivers/mmc/. Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/card/queue.c')
-rw-r--r--drivers/mmc/card/queue.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
index 9c0b42bfe089..7c3392e50722 100644
--- a/drivers/mmc/card/queue.c
+++ b/drivers/mmc/card/queue.c
@@ -146,7 +146,7 @@ int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card, spinlock_t *lock
146 } 146 }
147 147
148#ifdef CONFIG_MMC_BLOCK_BOUNCE 148#ifdef CONFIG_MMC_BLOCK_BOUNCE
149 if (host->max_hw_segs == 1) { 149 if (host->max_segs == 1) {
150 unsigned int bouncesz; 150 unsigned int bouncesz;
151 151
152 bouncesz = MMC_QUEUE_BOUNCESZ; 152 bouncesz = MMC_QUEUE_BOUNCESZ;
@@ -196,16 +196,16 @@ int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card, spinlock_t *lock
196 blk_queue_bounce_limit(mq->queue, limit); 196 blk_queue_bounce_limit(mq->queue, limit);
197 blk_queue_max_hw_sectors(mq->queue, 197 blk_queue_max_hw_sectors(mq->queue,
198 min(host->max_blk_count, host->max_req_size / 512)); 198 min(host->max_blk_count, host->max_req_size / 512));
199 blk_queue_max_segments(mq->queue, host->max_hw_segs); 199 blk_queue_max_segments(mq->queue, host->max_segs);
200 blk_queue_max_segment_size(mq->queue, host->max_seg_size); 200 blk_queue_max_segment_size(mq->queue, host->max_seg_size);
201 201
202 mq->sg = kmalloc(sizeof(struct scatterlist) * 202 mq->sg = kmalloc(sizeof(struct scatterlist) *
203 host->max_phys_segs, GFP_KERNEL); 203 host->max_segs, GFP_KERNEL);
204 if (!mq->sg) { 204 if (!mq->sg) {
205 ret = -ENOMEM; 205 ret = -ENOMEM;
206 goto cleanup_queue; 206 goto cleanup_queue;
207 } 207 }
208 sg_init_table(mq->sg, host->max_phys_segs); 208 sg_init_table(mq->sg, host->max_segs);
209 } 209 }
210 210
211 init_MUTEX(&mq->thread_sem); 211 init_MUTEX(&mq->thread_sem);