1TRACE_BLOCK_RQ_COMPL(9) Block IO TRACE_BLOCK_RQ_COMPL(9)
2
3
4
6 trace_block_rq_complete - block IO operation completed by device driver
7
9 void trace_block_rq_complete(struct request_queue * q,
10 struct request * rq,
11 unsigned int nr_bytes);
12
14 q
15 queue containing the block operation request
16
17 rq
18 block operations request
19
20 nr_bytes
21 number of completed bytes
22
24 The block_rq_complete tracepoint event indicates that some portion of
25 operation request has been completed by the device driver. If the
26 rq->bio is NULL, then there is absolutely no additional work to do for
27 the request. If rq->bio is non-NULL then there is additional work
28 required to complete the request.
29
31 Jason Baron <jbaron@redhat.com>
32 Author.
33
34 William Cohen <wcohen@redhat.com>
35 Author.
36
38Kernel Hackers Manual 3.10 June 2019 TRACE_BLOCK_RQ_COMPL(9)