diff options
author | Jens Axboe <jens.axboe@oracle.com> | 2009-03-06 08:48:33 +0100 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2009-03-24 12:35:16 +0100 |
commit | f3b144aa7f2861e1024682af3bf3dbf1c29184b9 (patch) | |
tree | 176e652f3340bc2ba199f4848b73dd04f45975d9 /block | |
parent | 10cbda97e73c7d537d7174eadb2d098484f8f1da (diff) | |
download | linux-3.10-f3b144aa7f2861e1024682af3bf3dbf1c29184b9.tar.gz linux-3.10-f3b144aa7f2861e1024682af3bf3dbf1c29184b9.tar.bz2 linux-3.10-f3b144aa7f2861e1024682af3bf3dbf1c29184b9.zip |
block: remove various blk_queue_*() setting functions in blk_init_queue_node()
It calls blk_queue_make_request(), which sets the identical set of limits.
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'block')
-rw-r--r-- | block/blk-core.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/block/blk-core.c b/block/blk-core.c index 29bcfac6c68..5e14b3f4510 100644 --- a/block/blk-core.c +++ b/block/blk-core.c @@ -603,13 +603,10 @@ blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id) q->queue_flags = QUEUE_FLAG_DEFAULT; q->queue_lock = lock; - blk_queue_segment_boundary(q, BLK_SEG_BOUNDARY_MASK); - + /* + * This also sets hw/phys segments, boundary and size + */ blk_queue_make_request(q, __make_request); - blk_queue_max_segment_size(q, MAX_SEGMENT_SIZE); - - blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS); - blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS); q->sg_reserved_size = INT_MAX; |