]>
git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - include/trace/events/block.h
1 /* SPDX-License-Identifier: GPL-2.0 */
3 #define TRACE_SYSTEM block
5 #if !defined(_TRACE_BLOCK_H) || defined(TRACE_HEADER_MULTI_READ)
8 #include <linux/blktrace_api.h>
9 #include <linux/blkdev.h>
10 #include <linux/buffer_head.h>
11 #include <linux/tracepoint.h>
15 DECLARE_EVENT_CLASS(block_buffer
,
17 TP_PROTO(struct buffer_head
*bh
),
23 __field( sector_t
, sector
)
24 __field( size_t, size
)
28 __entry
->dev
= bh
->b_bdev
->bd_dev
;
29 __entry
->sector
= bh
->b_blocknr
;
30 __entry
->size
= bh
->b_size
;
33 TP_printk("%d,%d sector=%llu size=%zu",
34 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
35 (unsigned long long)__entry
->sector
, __entry
->size
40 * block_touch_buffer - mark a buffer accessed
41 * @bh: buffer_head being touched
43 * Called from touch_buffer().
45 DEFINE_EVENT(block_buffer
, block_touch_buffer
,
47 TP_PROTO(struct buffer_head
*bh
),
53 * block_dirty_buffer - mark a buffer dirty
54 * @bh: buffer_head being dirtied
56 * Called from mark_buffer_dirty().
58 DEFINE_EVENT(block_buffer
, block_dirty_buffer
,
60 TP_PROTO(struct buffer_head
*bh
),
66 * block_rq_requeue - place block IO request back on a queue
67 * @rq: block IO operation request
69 * The block operation request @rq is being placed back into queue
70 * @q. For some reason the request was not completed and needs to be
71 * put back in the queue.
73 TRACE_EVENT(block_rq_requeue
,
75 TP_PROTO(struct request
*rq
),
81 __field( sector_t
, sector
)
82 __field( unsigned int, nr_sector
)
83 __array( char, rwbs
, RWBS_LEN
)
84 __dynamic_array( char, cmd
, 1 )
88 __entry
->dev
= rq
->rq_disk
? disk_devt(rq
->rq_disk
) : 0;
89 __entry
->sector
= blk_rq_trace_sector(rq
);
90 __entry
->nr_sector
= blk_rq_trace_nr_sectors(rq
);
92 blk_fill_rwbs(__entry
->rwbs
, rq
->cmd_flags
);
93 __get_str(cmd
)[0] = '\0';
96 TP_printk("%d,%d %s (%s) %llu + %u [%d]",
97 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
98 __entry
->rwbs
, __get_str(cmd
),
99 (unsigned long long)__entry
->sector
,
100 __entry
->nr_sector
, 0)
104 * block_rq_complete - block IO operation completed by device driver
105 * @rq: block operations request
106 * @error: status code
107 * @nr_bytes: number of completed bytes
109 * The block_rq_complete tracepoint event indicates that some portion
110 * of operation request has been completed by the device driver. If
111 * the @rq->bio is %NULL, then there is absolutely no additional work to
112 * do for the request. If @rq->bio is non-NULL then there is
113 * additional work required to complete the request.
115 TRACE_EVENT(block_rq_complete
,
117 TP_PROTO(struct request
*rq
, int error
, unsigned int nr_bytes
),
119 TP_ARGS(rq
, error
, nr_bytes
),
122 __field( dev_t
, dev
)
123 __field( sector_t
, sector
)
124 __field( unsigned int, nr_sector
)
125 __field( int, error
)
126 __array( char, rwbs
, RWBS_LEN
)
127 __dynamic_array( char, cmd
, 1 )
131 __entry
->dev
= rq
->rq_disk
? disk_devt(rq
->rq_disk
) : 0;
132 __entry
->sector
= blk_rq_pos(rq
);
133 __entry
->nr_sector
= nr_bytes
>> 9;
134 __entry
->error
= error
;
136 blk_fill_rwbs(__entry
->rwbs
, rq
->cmd_flags
);
137 __get_str(cmd
)[0] = '\0';
140 TP_printk("%d,%d %s (%s) %llu + %u [%d]",
141 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
142 __entry
->rwbs
, __get_str(cmd
),
143 (unsigned long long)__entry
->sector
,
144 __entry
->nr_sector
, __entry
->error
)
147 DECLARE_EVENT_CLASS(block_rq
,
149 TP_PROTO(struct request
*rq
),
154 __field( dev_t
, dev
)
155 __field( sector_t
, sector
)
156 __field( unsigned int, nr_sector
)
157 __field( unsigned int, bytes
)
158 __array( char, rwbs
, RWBS_LEN
)
159 __array( char, comm
, TASK_COMM_LEN
)
160 __dynamic_array( char, cmd
, 1 )
164 __entry
->dev
= rq
->rq_disk
? disk_devt(rq
->rq_disk
) : 0;
165 __entry
->sector
= blk_rq_trace_sector(rq
);
166 __entry
->nr_sector
= blk_rq_trace_nr_sectors(rq
);
167 __entry
->bytes
= blk_rq_bytes(rq
);
169 blk_fill_rwbs(__entry
->rwbs
, rq
->cmd_flags
);
170 __get_str(cmd
)[0] = '\0';
171 memcpy(__entry
->comm
, current
->comm
, TASK_COMM_LEN
);
174 TP_printk("%d,%d %s %u (%s) %llu + %u [%s]",
175 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
176 __entry
->rwbs
, __entry
->bytes
, __get_str(cmd
),
177 (unsigned long long)__entry
->sector
,
178 __entry
->nr_sector
, __entry
->comm
)
182 * block_rq_insert - insert block operation request into queue
183 * @rq: block IO operation request
185 * Called immediately before block operation request @rq is inserted
186 * into queue @q. The fields in the operation request @rq struct can
187 * be examined to determine which device and sectors the pending
188 * operation would access.
190 DEFINE_EVENT(block_rq
, block_rq_insert
,
192 TP_PROTO(struct request
*rq
),
198 * block_rq_issue - issue pending block IO request operation to device driver
199 * @rq: block IO operation request
201 * Called when block operation request @rq from queue @q is sent to a
202 * device driver for processing.
204 DEFINE_EVENT(block_rq
, block_rq_issue
,
206 TP_PROTO(struct request
*rq
),
212 * block_rq_merge - merge request with another one in the elevator
213 * @rq: block IO operation request
215 * Called when block operation request @rq from queue @q is merged to another
216 * request queued in the elevator.
218 DEFINE_EVENT(block_rq
, block_rq_merge
,
220 TP_PROTO(struct request
*rq
),
226 * block_bio_complete - completed all work on the block operation
227 * @q: queue holding the block operation
228 * @bio: block operation completed
230 * This tracepoint indicates there is no further work to do on this
231 * block IO operation @bio.
233 TRACE_EVENT(block_bio_complete
,
235 TP_PROTO(struct request_queue
*q
, struct bio
*bio
),
240 __field( dev_t
, dev
)
241 __field( sector_t
, sector
)
242 __field( unsigned, nr_sector
)
243 __field( int, error
)
244 __array( char, rwbs
, RWBS_LEN
)
248 __entry
->dev
= bio_dev(bio
);
249 __entry
->sector
= bio
->bi_iter
.bi_sector
;
250 __entry
->nr_sector
= bio_sectors(bio
);
251 __entry
->error
= blk_status_to_errno(bio
->bi_status
);
252 blk_fill_rwbs(__entry
->rwbs
, bio
->bi_opf
);
255 TP_printk("%d,%d %s %llu + %u [%d]",
256 MAJOR(__entry
->dev
), MINOR(__entry
->dev
), __entry
->rwbs
,
257 (unsigned long long)__entry
->sector
,
258 __entry
->nr_sector
, __entry
->error
)
261 DECLARE_EVENT_CLASS(block_bio
,
263 TP_PROTO(struct bio
*bio
),
268 __field( dev_t
, dev
)
269 __field( sector_t
, sector
)
270 __field( unsigned int, nr_sector
)
271 __array( char, rwbs
, RWBS_LEN
)
272 __array( char, comm
, TASK_COMM_LEN
)
276 __entry
->dev
= bio_dev(bio
);
277 __entry
->sector
= bio
->bi_iter
.bi_sector
;
278 __entry
->nr_sector
= bio_sectors(bio
);
279 blk_fill_rwbs(__entry
->rwbs
, bio
->bi_opf
);
280 memcpy(__entry
->comm
, current
->comm
, TASK_COMM_LEN
);
283 TP_printk("%d,%d %s %llu + %u [%s]",
284 MAJOR(__entry
->dev
), MINOR(__entry
->dev
), __entry
->rwbs
,
285 (unsigned long long)__entry
->sector
,
286 __entry
->nr_sector
, __entry
->comm
)
290 * block_bio_bounce - used bounce buffer when processing block operation
291 * @bio: block operation
293 * A bounce buffer was used to handle the block operation @bio in @q.
294 * This occurs when hardware limitations prevent a direct transfer of
295 * data between the @bio data memory area and the IO device. Use of a
296 * bounce buffer requires extra copying of data and decreases
299 DEFINE_EVENT(block_bio
, block_bio_bounce
,
300 TP_PROTO(struct bio
*bio
),
305 * block_bio_backmerge - merging block operation to the end of an existing operation
306 * @bio: new block operation to merge
308 * Merging block request @bio to the end of an existing block request.
310 DEFINE_EVENT(block_bio
, block_bio_backmerge
,
311 TP_PROTO(struct bio
*bio
),
316 * block_bio_frontmerge - merging block operation to the beginning of an existing operation
317 * @bio: new block operation to merge
319 * Merging block IO operation @bio to the beginning of an existing block request.
321 DEFINE_EVENT(block_bio
, block_bio_frontmerge
,
322 TP_PROTO(struct bio
*bio
),
327 * block_bio_queue - putting new block IO operation in queue
328 * @bio: new block operation
330 * About to place the block IO operation @bio into queue @q.
332 DEFINE_EVENT(block_bio
, block_bio_queue
,
333 TP_PROTO(struct bio
*bio
),
338 * block_getrq - get a free request entry in queue for block IO operations
339 * @bio: pending block IO operation (can be %NULL)
341 * A request struct has been allocated to handle the block IO operation @bio.
343 DEFINE_EVENT(block_bio
, block_getrq
,
344 TP_PROTO(struct bio
*bio
),
349 * block_plug - keep operations requests in request queue
350 * @q: request queue to plug
352 * Plug the request queue @q. Do not allow block operation requests
353 * to be sent to the device driver. Instead, accumulate requests in
354 * the queue to improve throughput performance of the block device.
356 TRACE_EVENT(block_plug
,
358 TP_PROTO(struct request_queue
*q
),
363 __array( char, comm
, TASK_COMM_LEN
)
367 memcpy(__entry
->comm
, current
->comm
, TASK_COMM_LEN
);
370 TP_printk("[%s]", __entry
->comm
)
373 DECLARE_EVENT_CLASS(block_unplug
,
375 TP_PROTO(struct request_queue
*q
, unsigned int depth
, bool explicit),
377 TP_ARGS(q
, depth
, explicit),
380 __field( int, nr_rq
)
381 __array( char, comm
, TASK_COMM_LEN
)
385 __entry
->nr_rq
= depth
;
386 memcpy(__entry
->comm
, current
->comm
, TASK_COMM_LEN
);
389 TP_printk("[%s] %d", __entry
->comm
, __entry
->nr_rq
)
393 * block_unplug - release of operations requests in request queue
394 * @q: request queue to unplug
395 * @depth: number of requests just added to the queue
396 * @explicit: whether this was an explicit unplug, or one from schedule()
398 * Unplug request queue @q because device driver is scheduled to work
399 * on elements in the request queue.
401 DEFINE_EVENT(block_unplug
, block_unplug
,
403 TP_PROTO(struct request_queue
*q
, unsigned int depth
, bool explicit),
405 TP_ARGS(q
, depth
, explicit)
409 * block_split - split a single bio struct into two bio structs
410 * @bio: block operation being split
411 * @new_sector: The starting sector for the new bio
413 * The bio request @bio needs to be split into two bio requests. The newly
414 * created @bio request starts at @new_sector. This split may be required due to
415 * hardware limitations such as operation crossing device boundaries in a RAID
418 TRACE_EVENT(block_split
,
420 TP_PROTO(struct bio
*bio
, unsigned int new_sector
),
422 TP_ARGS(bio
, new_sector
),
425 __field( dev_t
, dev
)
426 __field( sector_t
, sector
)
427 __field( sector_t
, new_sector
)
428 __array( char, rwbs
, RWBS_LEN
)
429 __array( char, comm
, TASK_COMM_LEN
)
433 __entry
->dev
= bio_dev(bio
);
434 __entry
->sector
= bio
->bi_iter
.bi_sector
;
435 __entry
->new_sector
= new_sector
;
436 blk_fill_rwbs(__entry
->rwbs
, bio
->bi_opf
);
437 memcpy(__entry
->comm
, current
->comm
, TASK_COMM_LEN
);
440 TP_printk("%d,%d %s %llu / %llu [%s]",
441 MAJOR(__entry
->dev
), MINOR(__entry
->dev
), __entry
->rwbs
,
442 (unsigned long long)__entry
->sector
,
443 (unsigned long long)__entry
->new_sector
,
448 * block_bio_remap - map request for a logical device to the raw device
449 * @bio: revised operation
450 * @dev: original device for the operation
451 * @from: original sector for the operation
453 * An operation for a logical device has been mapped to the
456 TRACE_EVENT(block_bio_remap
,
458 TP_PROTO(struct bio
*bio
, dev_t dev
, sector_t from
),
460 TP_ARGS(bio
, dev
, from
),
463 __field( dev_t
, dev
)
464 __field( sector_t
, sector
)
465 __field( unsigned int, nr_sector
)
466 __field( dev_t
, old_dev
)
467 __field( sector_t
, old_sector
)
468 __array( char, rwbs
, RWBS_LEN
)
472 __entry
->dev
= bio_dev(bio
);
473 __entry
->sector
= bio
->bi_iter
.bi_sector
;
474 __entry
->nr_sector
= bio_sectors(bio
);
475 __entry
->old_dev
= dev
;
476 __entry
->old_sector
= from
;
477 blk_fill_rwbs(__entry
->rwbs
, bio
->bi_opf
);
480 TP_printk("%d,%d %s %llu + %u <- (%d,%d) %llu",
481 MAJOR(__entry
->dev
), MINOR(__entry
->dev
), __entry
->rwbs
,
482 (unsigned long long)__entry
->sector
,
484 MAJOR(__entry
->old_dev
), MINOR(__entry
->old_dev
),
485 (unsigned long long)__entry
->old_sector
)
489 * block_rq_remap - map request for a block operation request
490 * @rq: block IO operation request
491 * @dev: device for the operation
492 * @from: original sector for the operation
494 * The block operation request @rq in @q has been remapped. The block
495 * operation request @rq holds the current information and @from hold
496 * the original sector.
498 TRACE_EVENT(block_rq_remap
,
500 TP_PROTO(struct request
*rq
, dev_t dev
, sector_t from
),
502 TP_ARGS(rq
, dev
, from
),
505 __field( dev_t
, dev
)
506 __field( sector_t
, sector
)
507 __field( unsigned int, nr_sector
)
508 __field( dev_t
, old_dev
)
509 __field( sector_t
, old_sector
)
510 __field( unsigned int, nr_bios
)
511 __array( char, rwbs
, RWBS_LEN
)
515 __entry
->dev
= disk_devt(rq
->rq_disk
);
516 __entry
->sector
= blk_rq_pos(rq
);
517 __entry
->nr_sector
= blk_rq_sectors(rq
);
518 __entry
->old_dev
= dev
;
519 __entry
->old_sector
= from
;
520 __entry
->nr_bios
= blk_rq_count_bios(rq
);
521 blk_fill_rwbs(__entry
->rwbs
, rq
->cmd_flags
);
524 TP_printk("%d,%d %s %llu + %u <- (%d,%d) %llu %u",
525 MAJOR(__entry
->dev
), MINOR(__entry
->dev
), __entry
->rwbs
,
526 (unsigned long long)__entry
->sector
,
528 MAJOR(__entry
->old_dev
), MINOR(__entry
->old_dev
),
529 (unsigned long long)__entry
->old_sector
, __entry
->nr_bios
)
532 #endif /* _TRACE_BLOCK_H */
534 /* This part must be outside protection */
535 #include <trace/define_trace.h>