diff options
author | Mike Snitzer <snitzer@redhat.com> | 2010-05-11 02:57:42 -0400 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2010-05-11 02:57:42 -0400 |
commit | 01effb0dc1451fad55925873ffbfb88fa4eadce0 (patch) | |
tree | 40fc70111217d23bbb5453fe08214d28ed4c7713 /block/blk-core.c | |
parent | 0f3942a39ed768c967cb71ea0e9be7fc94112713 (diff) |
block: allow initialization of previously allocated request_queue
blk_init_queue() allocates the request_queue structure and then
initializes it as needed (request_fn, elevator, etc).
Split initialization out to blk_init_allocated_queue_node.
Introduce blk_init_allocated_queue wrapper function to model existing
blk_init_queue and blk_init_queue_node interfaces.
Export elv_register_queue to allow a newly added elevator to be
registered with sysfs. Export elv_unregister_queue for symmetry.
These changes allow DM to initialize a device's request_queue with more
precision. In particular, DM no longer unconditionally initializes a
full request_queue (elevator et al). It only does so for a
request-based DM device.
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'block/blk-core.c')
-rw-r--r-- | block/blk-core.c | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/block/blk-core.c b/block/blk-core.c index e9a5ae25db8c..3bc5579d6f54 100644 --- a/block/blk-core.c +++ b/block/blk-core.c | |||
@@ -572,6 +572,22 @@ blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id) | |||
572 | { | 572 | { |
573 | struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id); | 573 | struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id); |
574 | 574 | ||
575 | return blk_init_allocated_queue_node(q, rfn, lock, node_id); | ||
576 | } | ||
577 | EXPORT_SYMBOL(blk_init_queue_node); | ||
578 | |||
579 | struct request_queue * | ||
580 | blk_init_allocated_queue(struct request_queue *q, request_fn_proc *rfn, | ||
581 | spinlock_t *lock) | ||
582 | { | ||
583 | return blk_init_allocated_queue_node(q, rfn, lock, -1); | ||
584 | } | ||
585 | EXPORT_SYMBOL(blk_init_allocated_queue); | ||
586 | |||
587 | struct request_queue * | ||
588 | blk_init_allocated_queue_node(struct request_queue *q, request_fn_proc *rfn, | ||
589 | spinlock_t *lock, int node_id) | ||
590 | { | ||
575 | if (!q) | 591 | if (!q) |
576 | return NULL; | 592 | return NULL; |
577 | 593 | ||
@@ -605,7 +621,7 @@ blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id) | |||
605 | blk_put_queue(q); | 621 | blk_put_queue(q); |
606 | return NULL; | 622 | return NULL; |
607 | } | 623 | } |
608 | EXPORT_SYMBOL(blk_init_queue_node); | 624 | EXPORT_SYMBOL(blk_init_allocated_queue_node); |
609 | 625 | ||
610 | int blk_get_queue(struct request_queue *q) | 626 | int blk_get_queue(struct request_queue *q) |
611 | { | 627 | { |