diff options
author | Jens Axboe <axboe@fb.com> | 2014-05-28 12:18:51 -0400 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2014-05-28 12:18:51 -0400 |
commit | 0fb662e2250afdf2c54253dbf2063dc9d8369b69 (patch) | |
tree | 6a1014ab27531dae2702894e9e3cb6cdad9f0d60 /drivers/block/null_blk.c | |
parent | 6178976500ae61fa7b12ebb2d3de816dc9396388 (diff) | |
parent | cdef54dd85ad66e77262ea57796a3e81683dd5d6 (diff) |
Merge branch 'for-3.16/core' into for-3.16/drivers
Pull in core changes (again), since we got rid of the alloc/free
hctx mq_ops hooks and mtip32xx then needed updating again.
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/block/null_blk.c')
-rw-r--r-- | drivers/block/null_blk.c | 28 |
1 files changed, 1 insertions, 27 deletions
diff --git a/drivers/block/null_blk.c b/drivers/block/null_blk.c index 5a8081114df6..77087a29b127 100644 --- a/drivers/block/null_blk.c +++ b/drivers/block/null_blk.c | |||
@@ -321,18 +321,6 @@ static int null_queue_rq(struct blk_mq_hw_ctx *hctx, struct request *rq) | |||
321 | return BLK_MQ_RQ_QUEUE_OK; | 321 | return BLK_MQ_RQ_QUEUE_OK; |
322 | } | 322 | } |
323 | 323 | ||
324 | static struct blk_mq_hw_ctx *null_alloc_hctx(struct blk_mq_tag_set *set, | ||
325 | unsigned int hctx_index, | ||
326 | int node) | ||
327 | { | ||
328 | return kzalloc_node(sizeof(struct blk_mq_hw_ctx), GFP_KERNEL, node); | ||
329 | } | ||
330 | |||
331 | static void null_free_hctx(struct blk_mq_hw_ctx *hctx, unsigned int hctx_index) | ||
332 | { | ||
333 | kfree(hctx); | ||
334 | } | ||
335 | |||
336 | static void null_init_queue(struct nullb *nullb, struct nullb_queue *nq) | 324 | static void null_init_queue(struct nullb *nullb, struct nullb_queue *nq) |
337 | { | 325 | { |
338 | BUG_ON(!nullb); | 326 | BUG_ON(!nullb); |
@@ -360,17 +348,6 @@ static struct blk_mq_ops null_mq_ops = { | |||
360 | .map_queue = blk_mq_map_queue, | 348 | .map_queue = blk_mq_map_queue, |
361 | .init_hctx = null_init_hctx, | 349 | .init_hctx = null_init_hctx, |
362 | .complete = null_softirq_done_fn, | 350 | .complete = null_softirq_done_fn, |
363 | .alloc_hctx = blk_mq_alloc_single_hw_queue, | ||
364 | .free_hctx = blk_mq_free_single_hw_queue, | ||
365 | }; | ||
366 | |||
367 | static struct blk_mq_ops null_mq_ops_pernode = { | ||
368 | .queue_rq = null_queue_rq, | ||
369 | .map_queue = blk_mq_map_queue, | ||
370 | .init_hctx = null_init_hctx, | ||
371 | .complete = null_softirq_done_fn, | ||
372 | .alloc_hctx = null_alloc_hctx, | ||
373 | .free_hctx = null_free_hctx, | ||
374 | }; | 351 | }; |
375 | 352 | ||
376 | static void null_del_dev(struct nullb *nullb) | 353 | static void null_del_dev(struct nullb *nullb) |
@@ -496,10 +473,7 @@ static int null_add_dev(void) | |||
496 | goto out_free_nullb; | 473 | goto out_free_nullb; |
497 | 474 | ||
498 | if (queue_mode == NULL_Q_MQ) { | 475 | if (queue_mode == NULL_Q_MQ) { |
499 | if (use_per_node_hctx) | 476 | nullb->tag_set.ops = &null_mq_ops; |
500 | nullb->tag_set.ops = &null_mq_ops_pernode; | ||
501 | else | ||
502 | nullb->tag_set.ops = &null_mq_ops; | ||
503 | nullb->tag_set.nr_hw_queues = submit_queues; | 477 | nullb->tag_set.nr_hw_queues = submit_queues; |
504 | nullb->tag_set.queue_depth = hw_queue_depth; | 478 | nullb->tag_set.queue_depth = hw_queue_depth; |
505 | nullb->tag_set.numa_node = home_node; | 479 | nullb->tag_set.numa_node = home_node; |