1BLK_REQUEUE_REQUEST(9) Block Devices BLK_REQUEUE_REQUEST(9)
2
3
4
6 blk_requeue_request - put a request back on queue
7
9 void blk_requeue_request(struct request_queue * q,
10 struct request * rq);
11
13 q
14 request queue where request should be inserted
15
16 rq
17 request to be inserted
18
20 Drivers often keep queueing requests until the hardware cannot accept
21 more, when that condition happens we need to put the request back on
22 the queue. Must be called with queue lock held.
23
25Kernel Hackers Manual 3.10 June 2019 BLK_REQUEUE_REQUEST(9)