diff options
| author | Martin K. Petersen <martin.petersen@oracle.com> | 2010-02-26 00:20:39 -0500 | 
|---|---|---|
| committer | Jens Axboe <jens.axboe@oracle.com> | 2010-02-26 13:58:08 +0100 | 
| commit | 8a78362c4eefc1deddbefe2c7f38aabbc2429d6b (patch) | |
| tree | c095d95af1aec0f9cee5975b1dcdc6bc1d17d401 /drivers/mmc/card/queue.c | |
| parent | 086fa5ff0854c676ec333760f4c0154b3b242616 (diff) | |
| download | olio-linux-3.10-8a78362c4eefc1deddbefe2c7f38aabbc2429d6b.tar.xz olio-linux-3.10-8a78362c4eefc1deddbefe2c7f38aabbc2429d6b.zip  | |
block: Consolidate phys_segment and hw_segment limits
Except for SCSI no device drivers distinguish between physical and
hardware segment limits.  Consolidate the two into a single segment
limit.
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'drivers/mmc/card/queue.c')
| -rw-r--r-- | drivers/mmc/card/queue.c | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c index 09b633d5657..381fe032caa 100644 --- a/drivers/mmc/card/queue.c +++ b/drivers/mmc/card/queue.c @@ -155,8 +155,7 @@ int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card, spinlock_t *lock  		if (mq->bounce_buf) {  			blk_queue_bounce_limit(mq->queue, BLK_BOUNCE_ANY);  			blk_queue_max_hw_sectors(mq->queue, bouncesz / 512); -			blk_queue_max_phys_segments(mq->queue, bouncesz / 512); -			blk_queue_max_hw_segments(mq->queue, bouncesz / 512); +			blk_queue_max_segments(mq->queue, bouncesz / 512);  			blk_queue_max_segment_size(mq->queue, bouncesz);  			mq->sg = kmalloc(sizeof(struct scatterlist), @@ -182,8 +181,7 @@ int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card, spinlock_t *lock  		blk_queue_bounce_limit(mq->queue, limit);  		blk_queue_max_hw_sectors(mq->queue,  			min(host->max_blk_count, host->max_req_size / 512)); -		blk_queue_max_phys_segments(mq->queue, host->max_phys_segs); -		blk_queue_max_hw_segments(mq->queue, host->max_hw_segs); +		blk_queue_max_segments(mq->queue, host->max_hw_segs);  		blk_queue_max_segment_size(mq->queue, host->max_seg_size);  		mq->sg = kmalloc(sizeof(struct scatterlist) *  |