search for: blk_unprep_request

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

2012 Jun 12
1
[PATCH v2] block: Drop dead function blk_abort_queue()
...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
...a whole */ if (unlikely(blk_bidi_rq(rq)) && blk_update_request(rq->next_rq, error, bidi_bytes)) return true; - if (blk_queue_add_random(rq->q)) + if (blk_queue_add_random(rq->queue_ctx->queue)) add_disk_randomness(rq->rq_disk); return false; } /** * blk_unprep_request - unprepare a request * @req: the request * * This function makes a request ready for complete resubmission (or * completion). It happens only after all error handling is complete, * so represents the appropriate moment to deallocate any resources * that were allocated to the request i...
2012 Apr 20
1
[PATCH] multiqueue: a hodge podge of things
...a whole */ if (unlikely(blk_bidi_rq(rq)) && blk_update_request(rq->next_rq, error, bidi_bytes)) return true; - if (blk_queue_add_random(rq->q)) + if (blk_queue_add_random(rq->queue_ctx->queue)) add_disk_randomness(rq->rq_disk); return false; } /** * blk_unprep_request - unprepare a request * @req: the request * * This function makes a request ready for complete resubmission (or * completion). It happens only after all error handling is complete, * so represents the appropriate moment to deallocate any resources * that were allocated to the request i...