1. NAME

blk_requeue_request - put a request back on queue

2. SYNOPSIS

void blk_requeue_request(struct request_queue *  q , struct request *  rq );

3. ARGUMENTS

q
    request queue where request should be inserted

rq
    request to be inserted

4. DESCRIPTION

Drivers often keep queueing requests until the hardware cannot accept more, when that condition happens we need to put the request back on the queue. Must be called with queue lock held.

5. COPYRIGHT