aboutsummaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
authorMartin K. Petersen <martin.petersen@oracle.com>2010-02-26 00:20:36 -0500
committerJens Axboe <jens.axboe@oracle.com>2010-02-26 07:58:07 -0500
commite751e76a5f7adeee7438e68b0965559ad2864d0d (patch)
tree06b1863a484203d7a217fa33964ef2d80a2ad712 /block
parent2800aac1114548a9b47b6e0d398117cc01b89685 (diff)
block: Remove unused accessor function
blk_queue_max_hw_sectors is no longer called by any subsystem and can be removed. Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'block')
-rw-r--r--block/blk-settings.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/block/blk-settings.c b/block/blk-settings.c
index 605df9b3de8f..4db46f2fcbe5 100644
--- a/block/blk-settings.c
+++ b/block/blk-settings.c
@@ -239,15 +239,6 @@ void blk_queue_max_sectors(struct request_queue *q, unsigned int max_hw_sectors)
239} 239}
240EXPORT_SYMBOL(blk_queue_max_sectors); 240EXPORT_SYMBOL(blk_queue_max_sectors);
241 241
242void blk_queue_max_hw_sectors(struct request_queue *q, unsigned int max_sectors)
243{
244 if (BLK_DEF_MAX_SECTORS > max_sectors)
245 q->limits.max_hw_sectors = BLK_DEF_MAX_SECTORS;
246 else
247 q->limits.max_hw_sectors = max_sectors;
248}
249EXPORT_SYMBOL(blk_queue_max_hw_sectors);
250
251/** 242/**
252 * blk_queue_max_discard_sectors - set max sectors for a single discard 243 * blk_queue_max_discard_sectors - set max sectors for a single discard
253 * @q: the request queue for the device 244 * @q: the request queue for the device