search for: blk_complete_request

Displaying 3 results from an estimated 3 matches for "blk_complete_request".

Did you mean: __blk_complete_request
2012 Jun 12
1
[PATCH v2] block: Drop dead function blk_abort_queue()
..., flags); - -} -EXPORT_SYMBOL_GPL(blk_abort_queue); diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index ba43f40..07954b0 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -827,7 +827,6 @@ extern bool __blk_end_request_err(struct request *rq, int error); extern void blk_complete_request(struct request *); extern void __blk_complete_request(struct request *); extern void blk_abort_request(struct request *); -extern void blk_abort_queue(struct request_queue *); extern void blk_unprep_request(struct request *); /* -- 1.7.10.2
2012 Apr 20
1
[PATCH] multiqueue: a hodge podge of things
...truct request *rq = data; unsigned long flags; struct list_head *list; @@ -98,20 +100,20 @@ static int __cpuinit blk_cpu_notify(struct notifier_block *self, return NOTIFY_OK; } static struct notifier_block __cpuinitdata blk_cpu_notifier = { .notifier_call = blk_cpu_notify, }; void __blk_complete_request(struct request *req) { + struct request_queue *q = req->queue_ctx->queue; int ccpu, cpu; - struct request_queue *q = req->q; unsigned long flags; bool shared = false; BUG_ON(!q->softirq_done_fn); local_irq_save(flags); cpu = smp_processor_id(); /* @@ -159,19 +161,21...
2012 Apr 20
1
[PATCH] multiqueue: a hodge podge of things
...truct request *rq = data; unsigned long flags; struct list_head *list; @@ -98,20 +100,20 @@ static int __cpuinit blk_cpu_notify(struct notifier_block *self, return NOTIFY_OK; } static struct notifier_block __cpuinitdata blk_cpu_notifier = { .notifier_call = blk_cpu_notify, }; void __blk_complete_request(struct request *req) { + struct request_queue *q = req->queue_ctx->queue; int ccpu, cpu; - struct request_queue *q = req->q; unsigned long flags; bool shared = false; BUG_ON(!q->softirq_done_fn); local_irq_save(flags); cpu = smp_processor_id(); /* @@ -159,19 +161,21...