search for: fail_q

Displaying 2 results from an estimated 2 matches for "fail_q".

Did you mean: fail_vq
2012 Apr 20
1
[PATCH] multiqueue: a hodge podge of things
...ode(nr_queues * sizeof(struct blk_queue_ctx), + GFP_KERNEL, node_id); + if (!q->queue_ctx) { + kmem_cache_free(blk_requestq_cachep, q); + return NULL; + } + + blk_init_queue_ctx(q, nr_queues); + q->id = ida_simple_get(&blk_queue_ida, 0, 0, gfp_mask); if (q->id < 0) goto fail_q; q->backing_dev_info.ra_pages = (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE; q->backing_dev_info.state = 0; q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY; q->backing_dev_info.name = "block"; @@ -498,19 +522,18 @@ struct request_queue *blk_alloc_queue_node(g...
2012 Apr 20
1
[PATCH] multiqueue: a hodge podge of things
...ode(nr_queues * sizeof(struct blk_queue_ctx), + GFP_KERNEL, node_id); + if (!q->queue_ctx) { + kmem_cache_free(blk_requestq_cachep, q); + return NULL; + } + + blk_init_queue_ctx(q, nr_queues); + q->id = ida_simple_get(&blk_queue_ida, 0, 0, gfp_mask); if (q->id < 0) goto fail_q; q->backing_dev_info.ra_pages = (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE; q->backing_dev_info.state = 0; q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY; q->backing_dev_info.name = "block"; @@ -498,19 +522,18 @@ struct request_queue *blk_alloc_queue_node(g...