blob: 34d64ca306b1c7abc5639ff2cf715a4b69ca6fe2 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Li Zefand0b6e042009-07-13 10:33:21 +08002#undef TRACE_SYSTEM
3#define TRACE_SYSTEM block
4
Li Zefan55782132009-06-09 13:43:05 +08005#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>
Tejun Heo5305cb82013-01-11 13:06:36 -080010#include <linux/buffer_head.h>
Li Zefan55782132009-06-09 13:43:05 +080011#include <linux/tracepoint.h>
12
Namhyung Kimc09c47c2011-08-11 10:36:05 +020013#define RWBS_LEN 8
14
Tejun Heo5305cb82013-01-11 13:06:36 -080015DECLARE_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
Christoph Hellwigcee4b7c2017-04-20 16:03:15 +020065/**
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,
Li Zefan55782132009-06-09 13:43:05 +080075
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 )
Namhyung Kimc09c47c2011-08-11 10:36:05 +020084 __array( char, rwbs, RWBS_LEN )
Christoph Hellwig48b77ad2017-01-27 09:35:54 +010085 __dynamic_array( char, cmd, 1 )
Li Zefan55782132009-06-09 13:43:05 +080086 ),
87
88 TP_fast_assign(
89 __entry->dev = rq->rq_disk ? disk_devt(rq->rq_disk) : 0;
Christoph Hellwig48b77ad2017-01-27 09:35:54 +010090 __entry->sector = blk_rq_trace_sector(rq);
91 __entry->nr_sector = blk_rq_trace_nr_sectors(rq);
Li Zefan55782132009-06-09 13:43:05 +080092
Christoph Hellwigef295ec2016-10-28 08:48:16 -060093 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, blk_rq_bytes(rq));
Christoph Hellwig48b77ad2017-01-27 09:35:54 +010094 __get_str(cmd)[0] = '\0';
Li Zefan55782132009-06-09 13:43:05 +080095 ),
96
97 TP_printk("%d,%d %s (%s) %llu + %u [%d]",
98 MAJOR(__entry->dev), MINOR(__entry->dev),
99 __entry->rwbs, __get_str(cmd),
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400100 (unsigned long long)__entry->sector,
Christoph Hellwigcaf7df12017-04-20 16:03:16 +0200101 __entry->nr_sector, 0)
Li Zefan55782132009-06-09 13:43:05 +0800102);
103
William Cohen881245d2010-03-09 09:26:04 +0100104/**
William Cohen881245d2010-03-09 09:26:04 +0100105 * block_rq_complete - block IO operation completed by device driver
William Cohen881245d2010-03-09 09:26:04 +0100106 * @rq: block operations request
Christoph Hellwigcaf7df12017-04-20 16:03:16 +0200107 * @error: status code
Roman Penaf5040d2014-03-04 23:13:10 +0900108 * @nr_bytes: number of completed bytes
William Cohen881245d2010-03-09 09:26:04 +0100109 *
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 */
Roman Penaf5040d2014-03-04 23:13:10 +0900116TRACE_EVENT(block_rq_complete,
Li Zefan77ca1e02009-11-26 15:06:14 +0800117
Christoph Hellwigcaf7df12017-04-20 16:03:16 +0200118 TP_PROTO(struct request *rq, int error, unsigned int nr_bytes),
Li Zefan77ca1e02009-11-26 15:06:14 +0800119
Christoph Hellwigcaf7df12017-04-20 16:03:16 +0200120 TP_ARGS(rq, error, nr_bytes),
Roman Penaf5040d2014-03-04 23:13:10 +0900121
122 TP_STRUCT__entry(
123 __field( dev_t, dev )
124 __field( sector_t, sector )
125 __field( unsigned int, nr_sector )
Christoph Hellwigcaf7df12017-04-20 16:03:16 +0200126 __field( int, error )
Roman Penaf5040d2014-03-04 23:13:10 +0900127 __array( char, rwbs, RWBS_LEN )
Christoph Hellwig48b77ad2017-01-27 09:35:54 +0100128 __dynamic_array( char, cmd, 1 )
Roman Penaf5040d2014-03-04 23:13:10 +0900129 ),
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;
Christoph Hellwigcaf7df12017-04-20 16:03:16 +0200135 __entry->error = error;
Roman Penaf5040d2014-03-04 23:13:10 +0900136
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600137 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, nr_bytes);
Christoph Hellwig48b77ad2017-01-27 09:35:54 +0100138 __get_str(cmd)[0] = '\0';
Roman Penaf5040d2014-03-04 23:13:10 +0900139 ),
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,
Christoph Hellwigcaf7df12017-04-20 16:03:16 +0200145 __entry->nr_sector, __entry->error)
Li Zefan77ca1e02009-11-26 15:06:14 +0800146);
147
148DECLARE_EVENT_CLASS(block_rq,
Li Zefan55782132009-06-09 13:43:05 +0800149
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 )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200159 __array( char, rwbs, RWBS_LEN )
Li Zefan55782132009-06-09 13:43:05 +0800160 __array( char, comm, TASK_COMM_LEN )
Christoph Hellwig48b77ad2017-01-27 09:35:54 +0100161 __dynamic_array( char, cmd, 1 )
Li Zefan55782132009-06-09 13:43:05 +0800162 ),
163
164 TP_fast_assign(
165 __entry->dev = rq->rq_disk ? disk_devt(rq->rq_disk) : 0;
Christoph Hellwig48b77ad2017-01-27 09:35:54 +0100166 __entry->sector = blk_rq_trace_sector(rq);
167 __entry->nr_sector = blk_rq_trace_nr_sectors(rq);
168 __entry->bytes = blk_rq_bytes(rq);
Li Zefan55782132009-06-09 13:43:05 +0800169
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600170 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, blk_rq_bytes(rq));
Christoph Hellwig48b77ad2017-01-27 09:35:54 +0100171 __get_str(cmd)[0] = '\0';
Li Zefan55782132009-06-09 13:43:05 +0800172 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),
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400178 (unsigned long long)__entry->sector,
179 __entry->nr_sector, __entry->comm)
Li Zefan55782132009-06-09 13:43:05 +0800180);
181
William Cohen881245d2010-03-09 09:26:04 +0100182/**
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 */
Li Zefan77ca1e02009-11-26 15:06:14 +0800192DEFINE_EVENT(block_rq, block_rq_insert,
Li Zefan55782132009-06-09 13:43:05 +0800193
194 TP_PROTO(struct request_queue *q, struct request *rq),
195
Li Zefan77ca1e02009-11-26 15:06:14 +0800196 TP_ARGS(q, rq)
Li Zefan55782132009-06-09 13:43:05 +0800197);
198
William Cohen881245d2010-03-09 09:26:04 +0100199/**
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 */
Li Zefan77ca1e02009-11-26 15:06:14 +0800207DEFINE_EVENT(block_rq, block_rq_issue,
Li Zefan55782132009-06-09 13:43:05 +0800208
209 TP_PROTO(struct request_queue *q, struct request *rq),
210
Li Zefan77ca1e02009-11-26 15:06:14 +0800211 TP_ARGS(q, rq)
Li Zefan55782132009-06-09 13:43:05 +0800212);
Carsten Emdefe63b942009-09-12 00:05:37 +0200213
William Cohen881245d2010-03-09 09:26:04 +0100214/**
Jan Karaf3bdc622020-06-17 15:58:23 +0200215 * block_rq_merge - merge request with another one in the elevator
216 * @q: queue holding operation
217 * @rq: block IO operation operation request
218 *
219 * Called when block operation request @rq from queue @q is merged to another
220 * request queued in the elevator.
221 */
222DEFINE_EVENT(block_rq, block_rq_merge,
223
224 TP_PROTO(struct request_queue *q, struct request *rq),
225
226 TP_ARGS(q, rq)
227);
228
229/**
William Cohen881245d2010-03-09 09:26:04 +0100230 * block_bio_bounce - used bounce buffer when processing block operation
231 * @q: queue holding the block operation
232 * @bio: block operation
233 *
234 * A bounce buffer was used to handle the block operation @bio in @q.
235 * This occurs when hardware limitations prevent a direct transfer of
236 * data between the @bio data memory area and the IO device. Use of a
237 * bounce buffer requires extra copying of data and decreases
238 * performance.
239 */
Li Zefan55782132009-06-09 13:43:05 +0800240TRACE_EVENT(block_bio_bounce,
241
242 TP_PROTO(struct request_queue *q, struct bio *bio),
243
244 TP_ARGS(q, bio),
245
246 TP_STRUCT__entry(
247 __field( dev_t, dev )
248 __field( sector_t, sector )
249 __field( unsigned int, nr_sector )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200250 __array( char, rwbs, RWBS_LEN )
Li Zefan55782132009-06-09 13:43:05 +0800251 __array( char, comm, TASK_COMM_LEN )
252 ),
253
254 TP_fast_assign(
Christoph Hellwig74d46992017-08-23 19:10:32 +0200255 __entry->dev = bio_dev(bio);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700256 __entry->sector = bio->bi_iter.bi_sector;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800257 __entry->nr_sector = bio_sectors(bio);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600258 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
Li Zefan55782132009-06-09 13:43:05 +0800259 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
260 ),
261
262 TP_printk("%d,%d %s %llu + %u [%s]",
263 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400264 (unsigned long long)__entry->sector,
265 __entry->nr_sector, __entry->comm)
Li Zefan55782132009-06-09 13:43:05 +0800266);
267
William Cohen881245d2010-03-09 09:26:04 +0100268/**
269 * block_bio_complete - completed all work on the block operation
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700270 * @q: queue holding the block operation
William Cohen881245d2010-03-09 09:26:04 +0100271 * @bio: block operation completed
272 *
273 * This tracepoint indicates there is no further work to do on this
274 * block IO operation @bio.
275 */
Li Zefan55782132009-06-09 13:43:05 +0800276TRACE_EVENT(block_bio_complete,
277
Christoph Hellwigd24de76a2020-06-03 07:14:43 +0200278 TP_PROTO(struct request_queue *q, struct bio *bio),
Li Zefan55782132009-06-09 13:43:05 +0800279
Christoph Hellwigd24de76a2020-06-03 07:14:43 +0200280 TP_ARGS(q, bio),
Li Zefan55782132009-06-09 13:43:05 +0800281
282 TP_STRUCT__entry(
283 __field( dev_t, dev )
284 __field( sector_t, sector )
285 __field( unsigned, nr_sector )
286 __field( int, error )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200287 __array( char, rwbs, RWBS_LEN)
Li Zefan55782132009-06-09 13:43:05 +0800288 ),
289
290 TP_fast_assign(
Christoph Hellwig74d46992017-08-23 19:10:32 +0200291 __entry->dev = bio_dev(bio);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700292 __entry->sector = bio->bi_iter.bi_sector;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800293 __entry->nr_sector = bio_sectors(bio);
Christoph Hellwigd24de76a2020-06-03 07:14:43 +0200294 __entry->error = blk_status_to_errno(bio->bi_status);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600295 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
Li Zefan55782132009-06-09 13:43:05 +0800296 ),
297
298 TP_printk("%d,%d %s %llu + %u [%d]",
299 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400300 (unsigned long long)__entry->sector,
301 __entry->nr_sector, __entry->error)
Li Zefan55782132009-06-09 13:43:05 +0800302);
303
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800304DECLARE_EVENT_CLASS(block_bio_merge,
Li Zefan55782132009-06-09 13:43:05 +0800305
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800306 TP_PROTO(struct request_queue *q, struct request *rq, struct bio *bio),
Li Zefan55782132009-06-09 13:43:05 +0800307
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800308 TP_ARGS(q, rq, bio),
Li Zefan55782132009-06-09 13:43:05 +0800309
310 TP_STRUCT__entry(
311 __field( dev_t, dev )
312 __field( sector_t, sector )
313 __field( unsigned int, nr_sector )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200314 __array( char, rwbs, RWBS_LEN )
Li Zefan55782132009-06-09 13:43:05 +0800315 __array( char, comm, TASK_COMM_LEN )
316 ),
317
318 TP_fast_assign(
Christoph Hellwig74d46992017-08-23 19:10:32 +0200319 __entry->dev = bio_dev(bio);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700320 __entry->sector = bio->bi_iter.bi_sector;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800321 __entry->nr_sector = bio_sectors(bio);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600322 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
Li Zefan55782132009-06-09 13:43:05 +0800323 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
324 ),
325
326 TP_printk("%d,%d %s %llu + %u [%s]",
327 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400328 (unsigned long long)__entry->sector,
329 __entry->nr_sector, __entry->comm)
Li Zefan55782132009-06-09 13:43:05 +0800330);
331
William Cohen881245d2010-03-09 09:26:04 +0100332/**
333 * block_bio_backmerge - merging block operation to the end of an existing operation
334 * @q: queue holding operation
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800335 * @rq: request bio is being merged into
William Cohen881245d2010-03-09 09:26:04 +0100336 * @bio: new block operation to merge
337 *
338 * Merging block request @bio to the end of an existing block request
339 * in queue @q.
340 */
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800341DEFINE_EVENT(block_bio_merge, block_bio_backmerge,
Li Zefan55782132009-06-09 13:43:05 +0800342
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800343 TP_PROTO(struct request_queue *q, struct request *rq, struct bio *bio),
Li Zefan55782132009-06-09 13:43:05 +0800344
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800345 TP_ARGS(q, rq, bio)
Li Zefan55782132009-06-09 13:43:05 +0800346);
347
William Cohen881245d2010-03-09 09:26:04 +0100348/**
349 * block_bio_frontmerge - merging block operation to the beginning of an existing operation
350 * @q: queue holding operation
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800351 * @rq: request bio is being merged into
William Cohen881245d2010-03-09 09:26:04 +0100352 * @bio: new block operation to merge
353 *
354 * Merging block IO operation @bio to the beginning of an existing block
355 * operation in queue @q.
356 */
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800357DEFINE_EVENT(block_bio_merge, block_bio_frontmerge,
Li Zefan55782132009-06-09 13:43:05 +0800358
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800359 TP_PROTO(struct request_queue *q, struct request *rq, struct bio *bio),
Li Zefan55782132009-06-09 13:43:05 +0800360
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800361 TP_ARGS(q, rq, bio)
Li Zefan55782132009-06-09 13:43:05 +0800362);
363
William Cohen881245d2010-03-09 09:26:04 +0100364/**
365 * block_bio_queue - putting new block IO operation in queue
366 * @q: queue holding operation
367 * @bio: new block operation
368 *
369 * About to place the block IO operation @bio into queue @q.
370 */
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800371TRACE_EVENT(block_bio_queue,
Li Zefan77ca1e02009-11-26 15:06:14 +0800372
373 TP_PROTO(struct request_queue *q, struct bio *bio),
374
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800375 TP_ARGS(q, bio),
376
377 TP_STRUCT__entry(
378 __field( dev_t, dev )
379 __field( sector_t, sector )
380 __field( unsigned int, nr_sector )
381 __array( char, rwbs, RWBS_LEN )
382 __array( char, comm, TASK_COMM_LEN )
383 ),
384
385 TP_fast_assign(
Christoph Hellwig74d46992017-08-23 19:10:32 +0200386 __entry->dev = bio_dev(bio);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700387 __entry->sector = bio->bi_iter.bi_sector;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800388 __entry->nr_sector = bio_sectors(bio);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600389 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800390 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
391 ),
392
393 TP_printk("%d,%d %s %llu + %u [%s]",
394 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
395 (unsigned long long)__entry->sector,
396 __entry->nr_sector, __entry->comm)
Li Zefan77ca1e02009-11-26 15:06:14 +0800397);
398
399DECLARE_EVENT_CLASS(block_get_rq,
Li Zefan55782132009-06-09 13:43:05 +0800400
401 TP_PROTO(struct request_queue *q, struct bio *bio, int rw),
402
403 TP_ARGS(q, bio, rw),
404
405 TP_STRUCT__entry(
406 __field( dev_t, dev )
407 __field( sector_t, sector )
408 __field( unsigned int, nr_sector )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200409 __array( char, rwbs, RWBS_LEN )
Li Zefan55782132009-06-09 13:43:05 +0800410 __array( char, comm, TASK_COMM_LEN )
411 ),
412
413 TP_fast_assign(
Christoph Hellwig74d46992017-08-23 19:10:32 +0200414 __entry->dev = bio ? bio_dev(bio) : 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700415 __entry->sector = bio ? bio->bi_iter.bi_sector : 0;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800416 __entry->nr_sector = bio ? bio_sectors(bio) : 0;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600417 blk_fill_rwbs(__entry->rwbs,
Jens Axboe1eff9d32016-08-05 15:35:16 -0600418 bio ? bio->bi_opf : 0, __entry->nr_sector);
Li Zefan55782132009-06-09 13:43:05 +0800419 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
420 ),
421
422 TP_printk("%d,%d %s %llu + %u [%s]",
423 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400424 (unsigned long long)__entry->sector,
425 __entry->nr_sector, __entry->comm)
Li Zefan55782132009-06-09 13:43:05 +0800426);
427
William Cohen881245d2010-03-09 09:26:04 +0100428/**
429 * block_getrq - get a free request entry in queue for block IO operations
430 * @q: queue for operations
Greg Thelenf8e9ec12017-09-07 17:36:36 -0700431 * @bio: pending block IO operation (can be %NULL)
William Cohen881245d2010-03-09 09:26:04 +0100432 * @rw: low bit indicates a read (%0) or a write (%1)
433 *
434 * A request struct for queue @q has been allocated to handle the
435 * block IO operation @bio.
436 */
Li Zefan77ca1e02009-11-26 15:06:14 +0800437DEFINE_EVENT(block_get_rq, block_getrq,
Li Zefan55782132009-06-09 13:43:05 +0800438
439 TP_PROTO(struct request_queue *q, struct bio *bio, int rw),
440
Li Zefan77ca1e02009-11-26 15:06:14 +0800441 TP_ARGS(q, bio, rw)
442);
Li Zefan55782132009-06-09 13:43:05 +0800443
William Cohen881245d2010-03-09 09:26:04 +0100444/**
445 * block_sleeprq - waiting to get a free request entry in queue for block IO operation
446 * @q: queue for operation
Greg Thelenf8e9ec12017-09-07 17:36:36 -0700447 * @bio: pending block IO operation (can be %NULL)
William Cohen881245d2010-03-09 09:26:04 +0100448 * @rw: low bit indicates a read (%0) or a write (%1)
449 *
450 * In the case where a request struct cannot be provided for queue @q
451 * the process needs to wait for an request struct to become
452 * available. This tracepoint event is generated each time the
453 * process goes to sleep waiting for request struct become available.
454 */
Li Zefan77ca1e02009-11-26 15:06:14 +0800455DEFINE_EVENT(block_get_rq, block_sleeprq,
Li Zefan55782132009-06-09 13:43:05 +0800456
Li Zefan77ca1e02009-11-26 15:06:14 +0800457 TP_PROTO(struct request_queue *q, struct bio *bio, int rw),
Li Zefan55782132009-06-09 13:43:05 +0800458
Li Zefan77ca1e02009-11-26 15:06:14 +0800459 TP_ARGS(q, bio, rw)
Li Zefan55782132009-06-09 13:43:05 +0800460);
461
William Cohen881245d2010-03-09 09:26:04 +0100462/**
463 * block_plug - keep operations requests in request queue
464 * @q: request queue to plug
465 *
466 * Plug the request queue @q. Do not allow block operation requests
467 * to be sent to the device driver. Instead, accumulate requests in
468 * the queue to improve throughput performance of the block device.
469 */
Li Zefan55782132009-06-09 13:43:05 +0800470TRACE_EVENT(block_plug,
471
472 TP_PROTO(struct request_queue *q),
473
474 TP_ARGS(q),
475
476 TP_STRUCT__entry(
477 __array( char, comm, TASK_COMM_LEN )
478 ),
479
480 TP_fast_assign(
481 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
482 ),
483
484 TP_printk("[%s]", __entry->comm)
485);
486
Li Zefan77ca1e02009-11-26 15:06:14 +0800487DECLARE_EVENT_CLASS(block_unplug,
Li Zefan55782132009-06-09 13:43:05 +0800488
Jens Axboe49cac012011-04-16 13:51:05 +0200489 TP_PROTO(struct request_queue *q, unsigned int depth, bool explicit),
Li Zefan55782132009-06-09 13:43:05 +0800490
Jens Axboe49cac012011-04-16 13:51:05 +0200491 TP_ARGS(q, depth, explicit),
Li Zefan55782132009-06-09 13:43:05 +0800492
493 TP_STRUCT__entry(
494 __field( int, nr_rq )
495 __array( char, comm, TASK_COMM_LEN )
496 ),
497
498 TP_fast_assign(
Jens Axboe94b5eb22011-04-12 10:12:19 +0200499 __entry->nr_rq = depth;
Li Zefan55782132009-06-09 13:43:05 +0800500 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
501 ),
502
503 TP_printk("[%s] %d", __entry->comm, __entry->nr_rq)
504);
505
William Cohen881245d2010-03-09 09:26:04 +0100506/**
Jens Axboe49cac012011-04-16 13:51:05 +0200507 * block_unplug - release of operations requests in request queue
William Cohen881245d2010-03-09 09:26:04 +0100508 * @q: request queue to unplug
Jens Axboe94b5eb22011-04-12 10:12:19 +0200509 * @depth: number of requests just added to the queue
Jens Axboe49cac012011-04-16 13:51:05 +0200510 * @explicit: whether this was an explicit unplug, or one from schedule()
William Cohen881245d2010-03-09 09:26:04 +0100511 *
512 * Unplug request queue @q because device driver is scheduled to work
513 * on elements in the request queue.
514 */
Jens Axboe49cac012011-04-16 13:51:05 +0200515DEFINE_EVENT(block_unplug, block_unplug,
Li Zefan55782132009-06-09 13:43:05 +0800516
Jens Axboe49cac012011-04-16 13:51:05 +0200517 TP_PROTO(struct request_queue *q, unsigned int depth, bool explicit),
Li Zefan55782132009-06-09 13:43:05 +0800518
Jens Axboe49cac012011-04-16 13:51:05 +0200519 TP_ARGS(q, depth, explicit)
Li Zefan55782132009-06-09 13:43:05 +0800520);
521
William Cohen881245d2010-03-09 09:26:04 +0100522/**
523 * block_split - split a single bio struct into two bio structs
524 * @q: queue containing the bio
525 * @bio: block operation being split
526 * @new_sector: The starting sector for the new bio
527 *
528 * The bio request @bio in request queue @q needs to be split into two
529 * bio requests. The newly created @bio request starts at
530 * @new_sector. This split may be required due to hardware limitation
531 * such as operation crossing device boundaries in a RAID system.
532 */
Li Zefan55782132009-06-09 13:43:05 +0800533TRACE_EVENT(block_split,
534
535 TP_PROTO(struct request_queue *q, struct bio *bio,
536 unsigned int new_sector),
537
538 TP_ARGS(q, bio, new_sector),
539
540 TP_STRUCT__entry(
541 __field( dev_t, dev )
542 __field( sector_t, sector )
543 __field( sector_t, new_sector )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200544 __array( char, rwbs, RWBS_LEN )
Li Zefan55782132009-06-09 13:43:05 +0800545 __array( char, comm, TASK_COMM_LEN )
546 ),
547
548 TP_fast_assign(
Christoph Hellwig74d46992017-08-23 19:10:32 +0200549 __entry->dev = bio_dev(bio);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700550 __entry->sector = bio->bi_iter.bi_sector;
Li Zefan55782132009-06-09 13:43:05 +0800551 __entry->new_sector = new_sector;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600552 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
Li Zefan55782132009-06-09 13:43:05 +0800553 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
554 ),
555
556 TP_printk("%d,%d %s %llu / %llu [%s]",
557 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400558 (unsigned long long)__entry->sector,
559 (unsigned long long)__entry->new_sector,
560 __entry->comm)
Li Zefan55782132009-06-09 13:43:05 +0800561);
562
William Cohen881245d2010-03-09 09:26:04 +0100563/**
Mike Snitzerd07335e2010-11-16 12:52:38 +0100564 * block_bio_remap - map request for a logical device to the raw device
William Cohen881245d2010-03-09 09:26:04 +0100565 * @q: queue holding the operation
566 * @bio: revised operation
567 * @dev: device for the operation
568 * @from: original sector for the operation
569 *
Mike Snitzerd07335e2010-11-16 12:52:38 +0100570 * An operation for a logical device has been mapped to the
William Cohen881245d2010-03-09 09:26:04 +0100571 * raw block device.
572 */
Mike Snitzerd07335e2010-11-16 12:52:38 +0100573TRACE_EVENT(block_bio_remap,
Li Zefan55782132009-06-09 13:43:05 +0800574
575 TP_PROTO(struct request_queue *q, struct bio *bio, dev_t dev,
576 sector_t from),
577
578 TP_ARGS(q, bio, dev, from),
579
580 TP_STRUCT__entry(
581 __field( dev_t, dev )
582 __field( sector_t, sector )
583 __field( unsigned int, nr_sector )
584 __field( dev_t, old_dev )
585 __field( sector_t, old_sector )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200586 __array( char, rwbs, RWBS_LEN)
Li Zefan55782132009-06-09 13:43:05 +0800587 ),
588
589 TP_fast_assign(
Christoph Hellwig74d46992017-08-23 19:10:32 +0200590 __entry->dev = bio_dev(bio);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700591 __entry->sector = bio->bi_iter.bi_sector;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800592 __entry->nr_sector = bio_sectors(bio);
Li Zefan55782132009-06-09 13:43:05 +0800593 __entry->old_dev = dev;
594 __entry->old_sector = from;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600595 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
Li Zefan55782132009-06-09 13:43:05 +0800596 ),
597
598 TP_printk("%d,%d %s %llu + %u <- (%d,%d) %llu",
599 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400600 (unsigned long long)__entry->sector,
601 __entry->nr_sector,
Li Zefan55782132009-06-09 13:43:05 +0800602 MAJOR(__entry->old_dev), MINOR(__entry->old_dev),
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400603 (unsigned long long)__entry->old_sector)
Li Zefan55782132009-06-09 13:43:05 +0800604);
605
William Cohen881245d2010-03-09 09:26:04 +0100606/**
607 * block_rq_remap - map request for a block operation request
608 * @q: queue holding the operation
609 * @rq: block IO operation request
610 * @dev: device for the operation
611 * @from: original sector for the operation
612 *
613 * The block operation request @rq in @q has been remapped. The block
614 * operation request @rq holds the current information and @from hold
615 * the original sector.
616 */
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +0200617TRACE_EVENT(block_rq_remap,
618
619 TP_PROTO(struct request_queue *q, struct request *rq, dev_t dev,
620 sector_t from),
621
622 TP_ARGS(q, rq, dev, from),
623
624 TP_STRUCT__entry(
625 __field( dev_t, dev )
626 __field( sector_t, sector )
627 __field( unsigned int, nr_sector )
628 __field( dev_t, old_dev )
629 __field( sector_t, old_sector )
Jun'ichi Nomura75afb352013-09-21 13:57:47 -0600630 __field( unsigned int, nr_bios )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200631 __array( char, rwbs, RWBS_LEN)
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +0200632 ),
633
634 TP_fast_assign(
635 __entry->dev = disk_devt(rq->rq_disk);
636 __entry->sector = blk_rq_pos(rq);
637 __entry->nr_sector = blk_rq_sectors(rq);
638 __entry->old_dev = dev;
639 __entry->old_sector = from;
Jun'ichi Nomura75afb352013-09-21 13:57:47 -0600640 __entry->nr_bios = blk_rq_count_bios(rq);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600641 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, blk_rq_bytes(rq));
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +0200642 ),
643
Jun'ichi Nomura75afb352013-09-21 13:57:47 -0600644 TP_printk("%d,%d %s %llu + %u <- (%d,%d) %llu %u",
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +0200645 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
646 (unsigned long long)__entry->sector,
647 __entry->nr_sector,
648 MAJOR(__entry->old_dev), MINOR(__entry->old_dev),
Jun'ichi Nomura75afb352013-09-21 13:57:47 -0600649 (unsigned long long)__entry->old_sector, __entry->nr_bios)
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +0200650);
651
Li Zefan55782132009-06-09 13:43:05 +0800652#endif /* _TRACE_BLOCK_H */
653
654/* This part must be outside protection */
655#include <trace/define_trace.h>
656