Loading...
1/* SPDX-License-Identifier: GPL-2.0 */
2#undef TRACE_SYSTEM
3#define TRACE_SYSTEM block
4
5#if !defined(_TRACE_BLOCK_H) || defined(TRACE_HEADER_MULTI_READ)
6#define _TRACE_BLOCK_H
7
8#include <linux/blktrace_api.h>
9#include <linux/blkdev.h>
10#include <linux/buffer_head.h>
11#include <linux/tracepoint.h>
12
13#define RWBS_LEN 8
14
15DECLARE_EVENT_CLASS(block_buffer,
16
17 TP_PROTO(struct buffer_head *bh),
18
19 TP_ARGS(bh),
20
21 TP_STRUCT__entry (
22 __field( dev_t, dev )
23 __field( sector_t, sector )
24 __field( size_t, size )
25 ),
26
27 TP_fast_assign(
28 __entry->dev = bh->b_bdev->bd_dev;
29 __entry->sector = bh->b_blocknr;
30 __entry->size = bh->b_size;
31 ),
32
33 TP_printk("%d,%d sector=%llu size=%zu",
34 MAJOR(__entry->dev), MINOR(__entry->dev),
35 (unsigned long long)__entry->sector, __entry->size
36 )
37);
38
39/**
40 * block_touch_buffer - mark a buffer accessed
41 * @bh: buffer_head being touched
42 *
43 * Called from touch_buffer().
44 */
45DEFINE_EVENT(block_buffer, block_touch_buffer,
46
47 TP_PROTO(struct buffer_head *bh),
48
49 TP_ARGS(bh)
50);
51
52/**
53 * block_dirty_buffer - mark a buffer dirty
54 * @bh: buffer_head being dirtied
55 *
56 * Called from mark_buffer_dirty().
57 */
58DEFINE_EVENT(block_buffer, block_dirty_buffer,
59
60 TP_PROTO(struct buffer_head *bh),
61
62 TP_ARGS(bh)
63);
64
65/**
66 * block_rq_requeue - place block IO request back on a queue
67 * @q: queue holding operation
68 * @rq: block IO operation request
69 *
70 * The block operation request @rq is being placed back into queue
71 * @q. For some reason the request was not completed and needs to be
72 * put back in the queue.
73 */
74TRACE_EVENT(block_rq_requeue,
75
76 TP_PROTO(struct request_queue *q, struct request *rq),
77
78 TP_ARGS(q, rq),
79
80 TP_STRUCT__entry(
81 __field( dev_t, dev )
82 __field( sector_t, sector )
83 __field( unsigned int, nr_sector )
84 __array( char, rwbs, RWBS_LEN )
85 __dynamic_array( char, cmd, 1 )
86 ),
87
88 TP_fast_assign(
89 __entry->dev = rq->rq_disk ? disk_devt(rq->rq_disk) : 0;
90 __entry->sector = blk_rq_trace_sector(rq);
91 __entry->nr_sector = blk_rq_trace_nr_sectors(rq);
92
93 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, blk_rq_bytes(rq));
94 __get_str(cmd)[0] = '\0';
95 ),
96
97 TP_printk("%d,%d %s (%s) %llu + %u [%d]",
98 MAJOR(__entry->dev), MINOR(__entry->dev),
99 __entry->rwbs, __get_str(cmd),
100 (unsigned long long)__entry->sector,
101 __entry->nr_sector, 0)
102);
103
104/**
105 * block_rq_complete - block IO operation completed by device driver
106 * @rq: block operations request
107 * @error: status code
108 * @nr_bytes: number of completed bytes
109 *
110 * The block_rq_complete tracepoint event indicates that some portion
111 * of operation request has been completed by the device driver. If
112 * the @rq->bio is %NULL, then there is absolutely no additional work to
113 * do for the request. If @rq->bio is non-NULL then there is
114 * additional work required to complete the request.
115 */
116TRACE_EVENT(block_rq_complete,
117
118 TP_PROTO(struct request *rq, int error, unsigned int nr_bytes),
119
120 TP_ARGS(rq, error, nr_bytes),
121
122 TP_STRUCT__entry(
123 __field( dev_t, dev )
124 __field( sector_t, sector )
125 __field( unsigned int, nr_sector )
126 __field( int, error )
127 __array( char, rwbs, RWBS_LEN )
128 __dynamic_array( char, cmd, 1 )
129 ),
130
131 TP_fast_assign(
132 __entry->dev = rq->rq_disk ? disk_devt(rq->rq_disk) : 0;
133 __entry->sector = blk_rq_pos(rq);
134 __entry->nr_sector = nr_bytes >> 9;
135 __entry->error = error;
136
137 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, nr_bytes);
138 __get_str(cmd)[0] = '\0';
139 ),
140
141 TP_printk("%d,%d %s (%s) %llu + %u [%d]",
142 MAJOR(__entry->dev), MINOR(__entry->dev),
143 __entry->rwbs, __get_str(cmd),
144 (unsigned long long)__entry->sector,
145 __entry->nr_sector, __entry->error)
146);
147
148DECLARE_EVENT_CLASS(block_rq,
149
150 TP_PROTO(struct request_queue *q, struct request *rq),
151
152 TP_ARGS(q, rq),
153
154 TP_STRUCT__entry(
155 __field( dev_t, dev )
156 __field( sector_t, sector )
157 __field( unsigned int, nr_sector )
158 __field( unsigned int, bytes )
159 __array( char, rwbs, RWBS_LEN )
160 __array( char, comm, TASK_COMM_LEN )
161 __dynamic_array( char, cmd, 1 )
162 ),
163
164 TP_fast_assign(
165 __entry->dev = rq->rq_disk ? disk_devt(rq->rq_disk) : 0;
166 __entry->sector = blk_rq_trace_sector(rq);
167 __entry->nr_sector = blk_rq_trace_nr_sectors(rq);
168 __entry->bytes = blk_rq_bytes(rq);
169
170 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, blk_rq_bytes(rq));
171 __get_str(cmd)[0] = '\0';
172 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
173 ),
174
175 TP_printk("%d,%d %s %u (%s) %llu + %u [%s]",
176 MAJOR(__entry->dev), MINOR(__entry->dev),
177 __entry->rwbs, __entry->bytes, __get_str(cmd),
178 (unsigned long long)__entry->sector,
179 __entry->nr_sector, __entry->comm)
180);
181
182/**
183 * block_rq_insert - insert block operation request into queue
184 * @q: target queue
185 * @rq: block IO operation request
186 *
187 * Called immediately before block operation request @rq is inserted
188 * into queue @q. The fields in the operation request @rq struct can
189 * be examined to determine which device and sectors the pending
190 * operation would access.
191 */
192DEFINE_EVENT(block_rq, block_rq_insert,
193
194 TP_PROTO(struct request_queue *q, struct request *rq),
195
196 TP_ARGS(q, rq)
197);
198
199/**
200 * block_rq_issue - issue pending block IO request operation to device driver
201 * @q: queue holding operation
202 * @rq: block IO operation operation request
203 *
204 * Called when block operation request @rq from queue @q is sent to a
205 * device driver for processing.
206 */
207DEFINE_EVENT(block_rq, block_rq_issue,
208
209 TP_PROTO(struct request_queue *q, struct request *rq),
210
211 TP_ARGS(q, rq)
212);
213
214/**
215 * block_bio_bounce - used bounce buffer when processing block operation
216 * @q: queue holding the block operation
217 * @bio: block operation
218 *
219 * A bounce buffer was used to handle the block operation @bio in @q.
220 * This occurs when hardware limitations prevent a direct transfer of
221 * data between the @bio data memory area and the IO device. Use of a
222 * bounce buffer requires extra copying of data and decreases
223 * performance.
224 */
225TRACE_EVENT(block_bio_bounce,
226
227 TP_PROTO(struct request_queue *q, struct bio *bio),
228
229 TP_ARGS(q, bio),
230
231 TP_STRUCT__entry(
232 __field( dev_t, dev )
233 __field( sector_t, sector )
234 __field( unsigned int, nr_sector )
235 __array( char, rwbs, RWBS_LEN )
236 __array( char, comm, TASK_COMM_LEN )
237 ),
238
239 TP_fast_assign(
240 __entry->dev = bio_dev(bio);
241 __entry->sector = bio->bi_iter.bi_sector;
242 __entry->nr_sector = bio_sectors(bio);
243 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
244 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
245 ),
246
247 TP_printk("%d,%d %s %llu + %u [%s]",
248 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
249 (unsigned long long)__entry->sector,
250 __entry->nr_sector, __entry->comm)
251);
252
253/**
254 * block_bio_complete - completed all work on the block operation
255 * @q: queue holding the block operation
256 * @bio: block operation completed
257 * @error: io error value
258 *
259 * This tracepoint indicates there is no further work to do on this
260 * block IO operation @bio.
261 */
262TRACE_EVENT(block_bio_complete,
263
264 TP_PROTO(struct request_queue *q, struct bio *bio, int error),
265
266 TP_ARGS(q, bio, error),
267
268 TP_STRUCT__entry(
269 __field( dev_t, dev )
270 __field( sector_t, sector )
271 __field( unsigned, nr_sector )
272 __field( int, error )
273 __array( char, rwbs, RWBS_LEN)
274 ),
275
276 TP_fast_assign(
277 __entry->dev = bio_dev(bio);
278 __entry->sector = bio->bi_iter.bi_sector;
279 __entry->nr_sector = bio_sectors(bio);
280 __entry->error = error;
281 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
282 ),
283
284 TP_printk("%d,%d %s %llu + %u [%d]",
285 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
286 (unsigned long long)__entry->sector,
287 __entry->nr_sector, __entry->error)
288);
289
290DECLARE_EVENT_CLASS(block_bio_merge,
291
292 TP_PROTO(struct request_queue *q, struct request *rq, struct bio *bio),
293
294 TP_ARGS(q, rq, bio),
295
296 TP_STRUCT__entry(
297 __field( dev_t, dev )
298 __field( sector_t, sector )
299 __field( unsigned int, nr_sector )
300 __array( char, rwbs, RWBS_LEN )
301 __array( char, comm, TASK_COMM_LEN )
302 ),
303
304 TP_fast_assign(
305 __entry->dev = bio_dev(bio);
306 __entry->sector = bio->bi_iter.bi_sector;
307 __entry->nr_sector = bio_sectors(bio);
308 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
309 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
310 ),
311
312 TP_printk("%d,%d %s %llu + %u [%s]",
313 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
314 (unsigned long long)__entry->sector,
315 __entry->nr_sector, __entry->comm)
316);
317
318/**
319 * block_bio_backmerge - merging block operation to the end of an existing operation
320 * @q: queue holding operation
321 * @rq: request bio is being merged into
322 * @bio: new block operation to merge
323 *
324 * Merging block request @bio to the end of an existing block request
325 * in queue @q.
326 */
327DEFINE_EVENT(block_bio_merge, block_bio_backmerge,
328
329 TP_PROTO(struct request_queue *q, struct request *rq, struct bio *bio),
330
331 TP_ARGS(q, rq, bio)
332);
333
334/**
335 * block_bio_frontmerge - merging block operation to the beginning of an existing operation
336 * @q: queue holding operation
337 * @rq: request bio is being merged into
338 * @bio: new block operation to merge
339 *
340 * Merging block IO operation @bio to the beginning of an existing block
341 * operation in queue @q.
342 */
343DEFINE_EVENT(block_bio_merge, block_bio_frontmerge,
344
345 TP_PROTO(struct request_queue *q, struct request *rq, struct bio *bio),
346
347 TP_ARGS(q, rq, bio)
348);
349
350/**
351 * block_bio_queue - putting new block IO operation in queue
352 * @q: queue holding operation
353 * @bio: new block operation
354 *
355 * About to place the block IO operation @bio into queue @q.
356 */
357TRACE_EVENT(block_bio_queue,
358
359 TP_PROTO(struct request_queue *q, struct bio *bio),
360
361 TP_ARGS(q, bio),
362
363 TP_STRUCT__entry(
364 __field( dev_t, dev )
365 __field( sector_t, sector )
366 __field( unsigned int, nr_sector )
367 __array( char, rwbs, RWBS_LEN )
368 __array( char, comm, TASK_COMM_LEN )
369 ),
370
371 TP_fast_assign(
372 __entry->dev = bio_dev(bio);
373 __entry->sector = bio->bi_iter.bi_sector;
374 __entry->nr_sector = bio_sectors(bio);
375 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
376 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
377 ),
378
379 TP_printk("%d,%d %s %llu + %u [%s]",
380 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
381 (unsigned long long)__entry->sector,
382 __entry->nr_sector, __entry->comm)
383);
384
385DECLARE_EVENT_CLASS(block_get_rq,
386
387 TP_PROTO(struct request_queue *q, struct bio *bio, int rw),
388
389 TP_ARGS(q, bio, rw),
390
391 TP_STRUCT__entry(
392 __field( dev_t, dev )
393 __field( sector_t, sector )
394 __field( unsigned int, nr_sector )
395 __array( char, rwbs, RWBS_LEN )
396 __array( char, comm, TASK_COMM_LEN )
397 ),
398
399 TP_fast_assign(
400 __entry->dev = bio ? bio_dev(bio) : 0;
401 __entry->sector = bio ? bio->bi_iter.bi_sector : 0;
402 __entry->nr_sector = bio ? bio_sectors(bio) : 0;
403 blk_fill_rwbs(__entry->rwbs,
404 bio ? bio->bi_opf : 0, __entry->nr_sector);
405 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
406 ),
407
408 TP_printk("%d,%d %s %llu + %u [%s]",
409 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
410 (unsigned long long)__entry->sector,
411 __entry->nr_sector, __entry->comm)
412);
413
414/**
415 * block_getrq - get a free request entry in queue for block IO operations
416 * @q: queue for operations
417 * @bio: pending block IO operation (can be %NULL)
418 * @rw: low bit indicates a read (%0) or a write (%1)
419 *
420 * A request struct for queue @q has been allocated to handle the
421 * block IO operation @bio.
422 */
423DEFINE_EVENT(block_get_rq, block_getrq,
424
425 TP_PROTO(struct request_queue *q, struct bio *bio, int rw),
426
427 TP_ARGS(q, bio, rw)
428);
429
430/**
431 * block_sleeprq - waiting to get a free request entry in queue for block IO operation
432 * @q: queue for operation
433 * @bio: pending block IO operation (can be %NULL)
434 * @rw: low bit indicates a read (%0) or a write (%1)
435 *
436 * In the case where a request struct cannot be provided for queue @q
437 * the process needs to wait for an request struct to become
438 * available. This tracepoint event is generated each time the
439 * process goes to sleep waiting for request struct become available.
440 */
441DEFINE_EVENT(block_get_rq, block_sleeprq,
442
443 TP_PROTO(struct request_queue *q, struct bio *bio, int rw),
444
445 TP_ARGS(q, bio, rw)
446);
447
448/**
449 * block_plug - keep operations requests in request queue
450 * @q: request queue to plug
451 *
452 * Plug the request queue @q. Do not allow block operation requests
453 * to be sent to the device driver. Instead, accumulate requests in
454 * the queue to improve throughput performance of the block device.
455 */
456TRACE_EVENT(block_plug,
457
458 TP_PROTO(struct request_queue *q),
459
460 TP_ARGS(q),
461
462 TP_STRUCT__entry(
463 __array( char, comm, TASK_COMM_LEN )
464 ),
465
466 TP_fast_assign(
467 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
468 ),
469
470 TP_printk("[%s]", __entry->comm)
471);
472
473DECLARE_EVENT_CLASS(block_unplug,
474
475 TP_PROTO(struct request_queue *q, unsigned int depth, bool explicit),
476
477 TP_ARGS(q, depth, explicit),
478
479 TP_STRUCT__entry(
480 __field( int, nr_rq )
481 __array( char, comm, TASK_COMM_LEN )
482 ),
483
484 TP_fast_assign(
485 __entry->nr_rq = depth;
486 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
487 ),
488
489 TP_printk("[%s] %d", __entry->comm, __entry->nr_rq)
490);
491
492/**
493 * block_unplug - release of operations requests in request queue
494 * @q: request queue to unplug
495 * @depth: number of requests just added to the queue
496 * @explicit: whether this was an explicit unplug, or one from schedule()
497 *
498 * Unplug request queue @q because device driver is scheduled to work
499 * on elements in the request queue.
500 */
501DEFINE_EVENT(block_unplug, block_unplug,
502
503 TP_PROTO(struct request_queue *q, unsigned int depth, bool explicit),
504
505 TP_ARGS(q, depth, explicit)
506);
507
508/**
509 * block_split - split a single bio struct into two bio structs
510 * @q: queue containing the bio
511 * @bio: block operation being split
512 * @new_sector: The starting sector for the new bio
513 *
514 * The bio request @bio in request queue @q needs to be split into two
515 * bio requests. The newly created @bio request starts at
516 * @new_sector. This split may be required due to hardware limitation
517 * such as operation crossing device boundaries in a RAID system.
518 */
519TRACE_EVENT(block_split,
520
521 TP_PROTO(struct request_queue *q, struct bio *bio,
522 unsigned int new_sector),
523
524 TP_ARGS(q, bio, new_sector),
525
526 TP_STRUCT__entry(
527 __field( dev_t, dev )
528 __field( sector_t, sector )
529 __field( sector_t, new_sector )
530 __array( char, rwbs, RWBS_LEN )
531 __array( char, comm, TASK_COMM_LEN )
532 ),
533
534 TP_fast_assign(
535 __entry->dev = bio_dev(bio);
536 __entry->sector = bio->bi_iter.bi_sector;
537 __entry->new_sector = new_sector;
538 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
539 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
540 ),
541
542 TP_printk("%d,%d %s %llu / %llu [%s]",
543 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
544 (unsigned long long)__entry->sector,
545 (unsigned long long)__entry->new_sector,
546 __entry->comm)
547);
548
549/**
550 * block_bio_remap - map request for a logical device to the raw device
551 * @q: queue holding the operation
552 * @bio: revised operation
553 * @dev: device for the operation
554 * @from: original sector for the operation
555 *
556 * An operation for a logical device has been mapped to the
557 * raw block device.
558 */
559TRACE_EVENT(block_bio_remap,
560
561 TP_PROTO(struct request_queue *q, struct bio *bio, dev_t dev,
562 sector_t from),
563
564 TP_ARGS(q, bio, dev, from),
565
566 TP_STRUCT__entry(
567 __field( dev_t, dev )
568 __field( sector_t, sector )
569 __field( unsigned int, nr_sector )
570 __field( dev_t, old_dev )
571 __field( sector_t, old_sector )
572 __array( char, rwbs, RWBS_LEN)
573 ),
574
575 TP_fast_assign(
576 __entry->dev = bio_dev(bio);
577 __entry->sector = bio->bi_iter.bi_sector;
578 __entry->nr_sector = bio_sectors(bio);
579 __entry->old_dev = dev;
580 __entry->old_sector = from;
581 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
582 ),
583
584 TP_printk("%d,%d %s %llu + %u <- (%d,%d) %llu",
585 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
586 (unsigned long long)__entry->sector,
587 __entry->nr_sector,
588 MAJOR(__entry->old_dev), MINOR(__entry->old_dev),
589 (unsigned long long)__entry->old_sector)
590);
591
592/**
593 * block_rq_remap - map request for a block operation request
594 * @q: queue holding the operation
595 * @rq: block IO operation request
596 * @dev: device for the operation
597 * @from: original sector for the operation
598 *
599 * The block operation request @rq in @q has been remapped. The block
600 * operation request @rq holds the current information and @from hold
601 * the original sector.
602 */
603TRACE_EVENT(block_rq_remap,
604
605 TP_PROTO(struct request_queue *q, struct request *rq, dev_t dev,
606 sector_t from),
607
608 TP_ARGS(q, rq, dev, from),
609
610 TP_STRUCT__entry(
611 __field( dev_t, dev )
612 __field( sector_t, sector )
613 __field( unsigned int, nr_sector )
614 __field( dev_t, old_dev )
615 __field( sector_t, old_sector )
616 __field( unsigned int, nr_bios )
617 __array( char, rwbs, RWBS_LEN)
618 ),
619
620 TP_fast_assign(
621 __entry->dev = disk_devt(rq->rq_disk);
622 __entry->sector = blk_rq_pos(rq);
623 __entry->nr_sector = blk_rq_sectors(rq);
624 __entry->old_dev = dev;
625 __entry->old_sector = from;
626 __entry->nr_bios = blk_rq_count_bios(rq);
627 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, blk_rq_bytes(rq));
628 ),
629
630 TP_printk("%d,%d %s %llu + %u <- (%d,%d) %llu %u",
631 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
632 (unsigned long long)__entry->sector,
633 __entry->nr_sector,
634 MAJOR(__entry->old_dev), MINOR(__entry->old_dev),
635 (unsigned long long)__entry->old_sector, __entry->nr_bios)
636);
637
638#endif /* _TRACE_BLOCK_H */
639
640/* This part must be outside protection */
641#include <trace/define_trace.h>
642
1#undef TRACE_SYSTEM
2#define TRACE_SYSTEM block
3
4#if !defined(_TRACE_BLOCK_H) || defined(TRACE_HEADER_MULTI_READ)
5#define _TRACE_BLOCK_H
6
7#include <linux/blktrace_api.h>
8#include <linux/blkdev.h>
9#include <linux/buffer_head.h>
10#include <linux/tracepoint.h>
11
12#define RWBS_LEN 8
13
14DECLARE_EVENT_CLASS(block_buffer,
15
16 TP_PROTO(struct buffer_head *bh),
17
18 TP_ARGS(bh),
19
20 TP_STRUCT__entry (
21 __field( dev_t, dev )
22 __field( sector_t, sector )
23 __field( size_t, size )
24 ),
25
26 TP_fast_assign(
27 __entry->dev = bh->b_bdev->bd_dev;
28 __entry->sector = bh->b_blocknr;
29 __entry->size = bh->b_size;
30 ),
31
32 TP_printk("%d,%d sector=%llu size=%zu",
33 MAJOR(__entry->dev), MINOR(__entry->dev),
34 (unsigned long long)__entry->sector, __entry->size
35 )
36);
37
38/**
39 * block_touch_buffer - mark a buffer accessed
40 * @bh: buffer_head being touched
41 *
42 * Called from touch_buffer().
43 */
44DEFINE_EVENT(block_buffer, block_touch_buffer,
45
46 TP_PROTO(struct buffer_head *bh),
47
48 TP_ARGS(bh)
49);
50
51/**
52 * block_dirty_buffer - mark a buffer dirty
53 * @bh: buffer_head being dirtied
54 *
55 * Called from mark_buffer_dirty().
56 */
57DEFINE_EVENT(block_buffer, block_dirty_buffer,
58
59 TP_PROTO(struct buffer_head *bh),
60
61 TP_ARGS(bh)
62);
63
64DECLARE_EVENT_CLASS(block_rq_with_error,
65
66 TP_PROTO(struct request_queue *q, struct request *rq),
67
68 TP_ARGS(q, rq),
69
70 TP_STRUCT__entry(
71 __field( dev_t, dev )
72 __field( sector_t, sector )
73 __field( unsigned int, nr_sector )
74 __field( int, errors )
75 __array( char, rwbs, RWBS_LEN )
76 __dynamic_array( char, cmd, blk_cmd_buf_len(rq) )
77 ),
78
79 TP_fast_assign(
80 __entry->dev = rq->rq_disk ? disk_devt(rq->rq_disk) : 0;
81 __entry->sector = (rq->cmd_type == REQ_TYPE_BLOCK_PC) ?
82 0 : blk_rq_pos(rq);
83 __entry->nr_sector = (rq->cmd_type == REQ_TYPE_BLOCK_PC) ?
84 0 : blk_rq_sectors(rq);
85 __entry->errors = rq->errors;
86
87 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, blk_rq_bytes(rq));
88 blk_dump_cmd(__get_str(cmd), rq);
89 ),
90
91 TP_printk("%d,%d %s (%s) %llu + %u [%d]",
92 MAJOR(__entry->dev), MINOR(__entry->dev),
93 __entry->rwbs, __get_str(cmd),
94 (unsigned long long)__entry->sector,
95 __entry->nr_sector, __entry->errors)
96);
97
98/**
99 * block_rq_abort - abort block operation request
100 * @q: queue containing the block operation request
101 * @rq: block IO operation request
102 *
103 * Called immediately after pending block IO operation request @rq in
104 * queue @q is aborted. The fields in the operation request @rq
105 * can be examined to determine which device and sectors the pending
106 * operation would access.
107 */
108DEFINE_EVENT(block_rq_with_error, block_rq_abort,
109
110 TP_PROTO(struct request_queue *q, struct request *rq),
111
112 TP_ARGS(q, rq)
113);
114
115/**
116 * block_rq_requeue - place block IO request back on a queue
117 * @q: queue holding operation
118 * @rq: block IO operation request
119 *
120 * The block operation request @rq is being placed back into queue
121 * @q. For some reason the request was not completed and needs to be
122 * put back in the queue.
123 */
124DEFINE_EVENT(block_rq_with_error, block_rq_requeue,
125
126 TP_PROTO(struct request_queue *q, struct request *rq),
127
128 TP_ARGS(q, rq)
129);
130
131/**
132 * block_rq_complete - block IO operation completed by device driver
133 * @q: queue containing the block operation request
134 * @rq: block operations request
135 * @nr_bytes: number of completed bytes
136 *
137 * The block_rq_complete tracepoint event indicates that some portion
138 * of operation request has been completed by the device driver. If
139 * the @rq->bio is %NULL, then there is absolutely no additional work to
140 * do for the request. If @rq->bio is non-NULL then there is
141 * additional work required to complete the request.
142 */
143TRACE_EVENT(block_rq_complete,
144
145 TP_PROTO(struct request_queue *q, struct request *rq,
146 unsigned int nr_bytes),
147
148 TP_ARGS(q, rq, nr_bytes),
149
150 TP_STRUCT__entry(
151 __field( dev_t, dev )
152 __field( sector_t, sector )
153 __field( unsigned int, nr_sector )
154 __field( int, errors )
155 __array( char, rwbs, RWBS_LEN )
156 __dynamic_array( char, cmd, blk_cmd_buf_len(rq) )
157 ),
158
159 TP_fast_assign(
160 __entry->dev = rq->rq_disk ? disk_devt(rq->rq_disk) : 0;
161 __entry->sector = blk_rq_pos(rq);
162 __entry->nr_sector = nr_bytes >> 9;
163 __entry->errors = rq->errors;
164
165 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, nr_bytes);
166 blk_dump_cmd(__get_str(cmd), rq);
167 ),
168
169 TP_printk("%d,%d %s (%s) %llu + %u [%d]",
170 MAJOR(__entry->dev), MINOR(__entry->dev),
171 __entry->rwbs, __get_str(cmd),
172 (unsigned long long)__entry->sector,
173 __entry->nr_sector, __entry->errors)
174);
175
176DECLARE_EVENT_CLASS(block_rq,
177
178 TP_PROTO(struct request_queue *q, struct request *rq),
179
180 TP_ARGS(q, rq),
181
182 TP_STRUCT__entry(
183 __field( dev_t, dev )
184 __field( sector_t, sector )
185 __field( unsigned int, nr_sector )
186 __field( unsigned int, bytes )
187 __array( char, rwbs, RWBS_LEN )
188 __array( char, comm, TASK_COMM_LEN )
189 __dynamic_array( char, cmd, blk_cmd_buf_len(rq) )
190 ),
191
192 TP_fast_assign(
193 __entry->dev = rq->rq_disk ? disk_devt(rq->rq_disk) : 0;
194 __entry->sector = (rq->cmd_type == REQ_TYPE_BLOCK_PC) ?
195 0 : blk_rq_pos(rq);
196 __entry->nr_sector = (rq->cmd_type == REQ_TYPE_BLOCK_PC) ?
197 0 : blk_rq_sectors(rq);
198 __entry->bytes = (rq->cmd_type == REQ_TYPE_BLOCK_PC) ?
199 blk_rq_bytes(rq) : 0;
200
201 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, blk_rq_bytes(rq));
202 blk_dump_cmd(__get_str(cmd), rq);
203 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
204 ),
205
206 TP_printk("%d,%d %s %u (%s) %llu + %u [%s]",
207 MAJOR(__entry->dev), MINOR(__entry->dev),
208 __entry->rwbs, __entry->bytes, __get_str(cmd),
209 (unsigned long long)__entry->sector,
210 __entry->nr_sector, __entry->comm)
211);
212
213/**
214 * block_rq_insert - insert block operation request into queue
215 * @q: target queue
216 * @rq: block IO operation request
217 *
218 * Called immediately before block operation request @rq is inserted
219 * into queue @q. The fields in the operation request @rq struct can
220 * be examined to determine which device and sectors the pending
221 * operation would access.
222 */
223DEFINE_EVENT(block_rq, block_rq_insert,
224
225 TP_PROTO(struct request_queue *q, struct request *rq),
226
227 TP_ARGS(q, rq)
228);
229
230/**
231 * block_rq_issue - issue pending block IO request operation to device driver
232 * @q: queue holding operation
233 * @rq: block IO operation operation request
234 *
235 * Called when block operation request @rq from queue @q is sent to a
236 * device driver for processing.
237 */
238DEFINE_EVENT(block_rq, block_rq_issue,
239
240 TP_PROTO(struct request_queue *q, struct request *rq),
241
242 TP_ARGS(q, rq)
243);
244
245/**
246 * block_bio_bounce - used bounce buffer when processing block operation
247 * @q: queue holding the block operation
248 * @bio: block operation
249 *
250 * A bounce buffer was used to handle the block operation @bio in @q.
251 * This occurs when hardware limitations prevent a direct transfer of
252 * data between the @bio data memory area and the IO device. Use of a
253 * bounce buffer requires extra copying of data and decreases
254 * performance.
255 */
256TRACE_EVENT(block_bio_bounce,
257
258 TP_PROTO(struct request_queue *q, struct bio *bio),
259
260 TP_ARGS(q, bio),
261
262 TP_STRUCT__entry(
263 __field( dev_t, dev )
264 __field( sector_t, sector )
265 __field( unsigned int, nr_sector )
266 __array( char, rwbs, RWBS_LEN )
267 __array( char, comm, TASK_COMM_LEN )
268 ),
269
270 TP_fast_assign(
271 __entry->dev = bio->bi_bdev ?
272 bio->bi_bdev->bd_dev : 0;
273 __entry->sector = bio->bi_iter.bi_sector;
274 __entry->nr_sector = bio_sectors(bio);
275 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
276 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
277 ),
278
279 TP_printk("%d,%d %s %llu + %u [%s]",
280 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
281 (unsigned long long)__entry->sector,
282 __entry->nr_sector, __entry->comm)
283);
284
285/**
286 * block_bio_complete - completed all work on the block operation
287 * @q: queue holding the block operation
288 * @bio: block operation completed
289 * @error: io error value
290 *
291 * This tracepoint indicates there is no further work to do on this
292 * block IO operation @bio.
293 */
294TRACE_EVENT(block_bio_complete,
295
296 TP_PROTO(struct request_queue *q, struct bio *bio, int error),
297
298 TP_ARGS(q, bio, error),
299
300 TP_STRUCT__entry(
301 __field( dev_t, dev )
302 __field( sector_t, sector )
303 __field( unsigned, nr_sector )
304 __field( int, error )
305 __array( char, rwbs, RWBS_LEN)
306 ),
307
308 TP_fast_assign(
309 __entry->dev = bio->bi_bdev->bd_dev;
310 __entry->sector = bio->bi_iter.bi_sector;
311 __entry->nr_sector = bio_sectors(bio);
312 __entry->error = error;
313 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
314 ),
315
316 TP_printk("%d,%d %s %llu + %u [%d]",
317 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
318 (unsigned long long)__entry->sector,
319 __entry->nr_sector, __entry->error)
320);
321
322DECLARE_EVENT_CLASS(block_bio_merge,
323
324 TP_PROTO(struct request_queue *q, struct request *rq, struct bio *bio),
325
326 TP_ARGS(q, rq, bio),
327
328 TP_STRUCT__entry(
329 __field( dev_t, dev )
330 __field( sector_t, sector )
331 __field( unsigned int, nr_sector )
332 __array( char, rwbs, RWBS_LEN )
333 __array( char, comm, TASK_COMM_LEN )
334 ),
335
336 TP_fast_assign(
337 __entry->dev = bio->bi_bdev->bd_dev;
338 __entry->sector = bio->bi_iter.bi_sector;
339 __entry->nr_sector = bio_sectors(bio);
340 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
341 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
342 ),
343
344 TP_printk("%d,%d %s %llu + %u [%s]",
345 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
346 (unsigned long long)__entry->sector,
347 __entry->nr_sector, __entry->comm)
348);
349
350/**
351 * block_bio_backmerge - merging block operation to the end of an existing operation
352 * @q: queue holding operation
353 * @rq: request bio is being merged into
354 * @bio: new block operation to merge
355 *
356 * Merging block request @bio to the end of an existing block request
357 * in queue @q.
358 */
359DEFINE_EVENT(block_bio_merge, block_bio_backmerge,
360
361 TP_PROTO(struct request_queue *q, struct request *rq, struct bio *bio),
362
363 TP_ARGS(q, rq, bio)
364);
365
366/**
367 * block_bio_frontmerge - merging block operation to the beginning of an existing operation
368 * @q: queue holding operation
369 * @rq: request bio is being merged into
370 * @bio: new block operation to merge
371 *
372 * Merging block IO operation @bio to the beginning of an existing block
373 * operation in queue @q.
374 */
375DEFINE_EVENT(block_bio_merge, block_bio_frontmerge,
376
377 TP_PROTO(struct request_queue *q, struct request *rq, struct bio *bio),
378
379 TP_ARGS(q, rq, bio)
380);
381
382/**
383 * block_bio_queue - putting new block IO operation in queue
384 * @q: queue holding operation
385 * @bio: new block operation
386 *
387 * About to place the block IO operation @bio into queue @q.
388 */
389TRACE_EVENT(block_bio_queue,
390
391 TP_PROTO(struct request_queue *q, struct bio *bio),
392
393 TP_ARGS(q, bio),
394
395 TP_STRUCT__entry(
396 __field( dev_t, dev )
397 __field( sector_t, sector )
398 __field( unsigned int, nr_sector )
399 __array( char, rwbs, RWBS_LEN )
400 __array( char, comm, TASK_COMM_LEN )
401 ),
402
403 TP_fast_assign(
404 __entry->dev = bio->bi_bdev->bd_dev;
405 __entry->sector = bio->bi_iter.bi_sector;
406 __entry->nr_sector = bio_sectors(bio);
407 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
408 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
409 ),
410
411 TP_printk("%d,%d %s %llu + %u [%s]",
412 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
413 (unsigned long long)__entry->sector,
414 __entry->nr_sector, __entry->comm)
415);
416
417DECLARE_EVENT_CLASS(block_get_rq,
418
419 TP_PROTO(struct request_queue *q, struct bio *bio, int rw),
420
421 TP_ARGS(q, bio, rw),
422
423 TP_STRUCT__entry(
424 __field( dev_t, dev )
425 __field( sector_t, sector )
426 __field( unsigned int, nr_sector )
427 __array( char, rwbs, RWBS_LEN )
428 __array( char, comm, TASK_COMM_LEN )
429 ),
430
431 TP_fast_assign(
432 __entry->dev = bio ? bio->bi_bdev->bd_dev : 0;
433 __entry->sector = bio ? bio->bi_iter.bi_sector : 0;
434 __entry->nr_sector = bio ? bio_sectors(bio) : 0;
435 blk_fill_rwbs(__entry->rwbs,
436 bio ? bio->bi_opf : 0, __entry->nr_sector);
437 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
438 ),
439
440 TP_printk("%d,%d %s %llu + %u [%s]",
441 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
442 (unsigned long long)__entry->sector,
443 __entry->nr_sector, __entry->comm)
444);
445
446/**
447 * block_getrq - get a free request entry in queue for block IO operations
448 * @q: queue for operations
449 * @bio: pending block IO operation
450 * @rw: low bit indicates a read (%0) or a write (%1)
451 *
452 * A request struct for queue @q has been allocated to handle the
453 * block IO operation @bio.
454 */
455DEFINE_EVENT(block_get_rq, block_getrq,
456
457 TP_PROTO(struct request_queue *q, struct bio *bio, int rw),
458
459 TP_ARGS(q, bio, rw)
460);
461
462/**
463 * block_sleeprq - waiting to get a free request entry in queue for block IO operation
464 * @q: queue for operation
465 * @bio: pending block IO operation
466 * @rw: low bit indicates a read (%0) or a write (%1)
467 *
468 * In the case where a request struct cannot be provided for queue @q
469 * the process needs to wait for an request struct to become
470 * available. This tracepoint event is generated each time the
471 * process goes to sleep waiting for request struct become available.
472 */
473DEFINE_EVENT(block_get_rq, block_sleeprq,
474
475 TP_PROTO(struct request_queue *q, struct bio *bio, int rw),
476
477 TP_ARGS(q, bio, rw)
478);
479
480/**
481 * block_plug - keep operations requests in request queue
482 * @q: request queue to plug
483 *
484 * Plug the request queue @q. Do not allow block operation requests
485 * to be sent to the device driver. Instead, accumulate requests in
486 * the queue to improve throughput performance of the block device.
487 */
488TRACE_EVENT(block_plug,
489
490 TP_PROTO(struct request_queue *q),
491
492 TP_ARGS(q),
493
494 TP_STRUCT__entry(
495 __array( char, comm, TASK_COMM_LEN )
496 ),
497
498 TP_fast_assign(
499 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
500 ),
501
502 TP_printk("[%s]", __entry->comm)
503);
504
505DECLARE_EVENT_CLASS(block_unplug,
506
507 TP_PROTO(struct request_queue *q, unsigned int depth, bool explicit),
508
509 TP_ARGS(q, depth, explicit),
510
511 TP_STRUCT__entry(
512 __field( int, nr_rq )
513 __array( char, comm, TASK_COMM_LEN )
514 ),
515
516 TP_fast_assign(
517 __entry->nr_rq = depth;
518 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
519 ),
520
521 TP_printk("[%s] %d", __entry->comm, __entry->nr_rq)
522);
523
524/**
525 * block_unplug - release of operations requests in request queue
526 * @q: request queue to unplug
527 * @depth: number of requests just added to the queue
528 * @explicit: whether this was an explicit unplug, or one from schedule()
529 *
530 * Unplug request queue @q because device driver is scheduled to work
531 * on elements in the request queue.
532 */
533DEFINE_EVENT(block_unplug, block_unplug,
534
535 TP_PROTO(struct request_queue *q, unsigned int depth, bool explicit),
536
537 TP_ARGS(q, depth, explicit)
538);
539
540/**
541 * block_split - split a single bio struct into two bio structs
542 * @q: queue containing the bio
543 * @bio: block operation being split
544 * @new_sector: The starting sector for the new bio
545 *
546 * The bio request @bio in request queue @q needs to be split into two
547 * bio requests. The newly created @bio request starts at
548 * @new_sector. This split may be required due to hardware limitation
549 * such as operation crossing device boundaries in a RAID system.
550 */
551TRACE_EVENT(block_split,
552
553 TP_PROTO(struct request_queue *q, struct bio *bio,
554 unsigned int new_sector),
555
556 TP_ARGS(q, bio, new_sector),
557
558 TP_STRUCT__entry(
559 __field( dev_t, dev )
560 __field( sector_t, sector )
561 __field( sector_t, new_sector )
562 __array( char, rwbs, RWBS_LEN )
563 __array( char, comm, TASK_COMM_LEN )
564 ),
565
566 TP_fast_assign(
567 __entry->dev = bio->bi_bdev->bd_dev;
568 __entry->sector = bio->bi_iter.bi_sector;
569 __entry->new_sector = new_sector;
570 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
571 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
572 ),
573
574 TP_printk("%d,%d %s %llu / %llu [%s]",
575 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
576 (unsigned long long)__entry->sector,
577 (unsigned long long)__entry->new_sector,
578 __entry->comm)
579);
580
581/**
582 * block_bio_remap - map request for a logical device to the raw device
583 * @q: queue holding the operation
584 * @bio: revised operation
585 * @dev: device for the operation
586 * @from: original sector for the operation
587 *
588 * An operation for a logical device has been mapped to the
589 * raw block device.
590 */
591TRACE_EVENT(block_bio_remap,
592
593 TP_PROTO(struct request_queue *q, struct bio *bio, dev_t dev,
594 sector_t from),
595
596 TP_ARGS(q, bio, dev, from),
597
598 TP_STRUCT__entry(
599 __field( dev_t, dev )
600 __field( sector_t, sector )
601 __field( unsigned int, nr_sector )
602 __field( dev_t, old_dev )
603 __field( sector_t, old_sector )
604 __array( char, rwbs, RWBS_LEN)
605 ),
606
607 TP_fast_assign(
608 __entry->dev = bio->bi_bdev->bd_dev;
609 __entry->sector = bio->bi_iter.bi_sector;
610 __entry->nr_sector = bio_sectors(bio);
611 __entry->old_dev = dev;
612 __entry->old_sector = from;
613 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
614 ),
615
616 TP_printk("%d,%d %s %llu + %u <- (%d,%d) %llu",
617 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
618 (unsigned long long)__entry->sector,
619 __entry->nr_sector,
620 MAJOR(__entry->old_dev), MINOR(__entry->old_dev),
621 (unsigned long long)__entry->old_sector)
622);
623
624/**
625 * block_rq_remap - map request for a block operation request
626 * @q: queue holding the operation
627 * @rq: block IO operation request
628 * @dev: device for the operation
629 * @from: original sector for the operation
630 *
631 * The block operation request @rq in @q has been remapped. The block
632 * operation request @rq holds the current information and @from hold
633 * the original sector.
634 */
635TRACE_EVENT(block_rq_remap,
636
637 TP_PROTO(struct request_queue *q, struct request *rq, dev_t dev,
638 sector_t from),
639
640 TP_ARGS(q, rq, dev, from),
641
642 TP_STRUCT__entry(
643 __field( dev_t, dev )
644 __field( sector_t, sector )
645 __field( unsigned int, nr_sector )
646 __field( dev_t, old_dev )
647 __field( sector_t, old_sector )
648 __field( unsigned int, nr_bios )
649 __array( char, rwbs, RWBS_LEN)
650 ),
651
652 TP_fast_assign(
653 __entry->dev = disk_devt(rq->rq_disk);
654 __entry->sector = blk_rq_pos(rq);
655 __entry->nr_sector = blk_rq_sectors(rq);
656 __entry->old_dev = dev;
657 __entry->old_sector = from;
658 __entry->nr_bios = blk_rq_count_bios(rq);
659 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, blk_rq_bytes(rq));
660 ),
661
662 TP_printk("%d,%d %s %llu + %u <- (%d,%d) %llu %u",
663 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
664 (unsigned long long)__entry->sector,
665 __entry->nr_sector,
666 MAJOR(__entry->old_dev), MINOR(__entry->old_dev),
667 (unsigned long long)__entry->old_sector, __entry->nr_bios)
668);
669
670#endif /* _TRACE_BLOCK_H */
671
672/* This part must be outside protection */
673#include <trace/define_trace.h>
674