blob: 1fd7ff1a46f792d3a69a006e2406f86d87100cf3 [file] [log] [blame]
Li Zefand0b6e042009-07-13 10:33:21 +08001#undef TRACE_SYSTEM
2#define TRACE_SYSTEM block
3
Li Zefan55782132009-06-09 13:43:05 +08004#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>
Tejun Heo5305cb82013-01-11 13:06:36 -08009#include <linux/buffer_head.h>
Li Zefan55782132009-06-09 13:43:05 +080010#include <linux/tracepoint.h>
11
Namhyung Kimc09c47c2011-08-11 10:36:05 +020012#define RWBS_LEN 8
13
Tejun Heo5305cb82013-01-11 13:06:36 -080014DECLARE_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
Christoph Hellwigcee4b7c2017-04-20 16:03:15 +020064/**
65 * block_rq_requeue - place block IO request back on a queue
66 * @q: queue holding operation
67 * @rq: block IO operation request
68 *
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.
72 */
73TRACE_EVENT(block_rq_requeue,
Li Zefan55782132009-06-09 13:43:05 +080074
75 TP_PROTO(struct request_queue *q, struct request *rq),
76
77 TP_ARGS(q, rq),
78
79 TP_STRUCT__entry(
80 __field( dev_t, dev )
81 __field( sector_t, sector )
82 __field( unsigned int, nr_sector )
Namhyung Kimc09c47c2011-08-11 10:36:05 +020083 __array( char, rwbs, RWBS_LEN )
Christoph Hellwig48b77ad2017-01-27 09:35:54 +010084 __dynamic_array( char, cmd, 1 )
Li Zefan55782132009-06-09 13:43:05 +080085 ),
86
87 TP_fast_assign(
88 __entry->dev = rq->rq_disk ? disk_devt(rq->rq_disk) : 0;
Christoph Hellwig48b77ad2017-01-27 09:35:54 +010089 __entry->sector = blk_rq_trace_sector(rq);
90 __entry->nr_sector = blk_rq_trace_nr_sectors(rq);
Li Zefan55782132009-06-09 13:43:05 +080091
Christoph Hellwigef295ec2016-10-28 08:48:16 -060092 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, blk_rq_bytes(rq));
Christoph Hellwig48b77ad2017-01-27 09:35:54 +010093 __get_str(cmd)[0] = '\0';
Li Zefan55782132009-06-09 13:43:05 +080094 ),
95
96 TP_printk("%d,%d %s (%s) %llu + %u [%d]",
97 MAJOR(__entry->dev), MINOR(__entry->dev),
98 __entry->rwbs, __get_str(cmd),
Steven Rostedt6556d1d2009-06-09 14:04:26 -040099 (unsigned long long)__entry->sector,
Christoph Hellwigcaf7df12017-04-20 16:03:16 +0200100 __entry->nr_sector, 0)
Li Zefan55782132009-06-09 13:43:05 +0800101);
102
William Cohen881245d2010-03-09 09:26:04 +0100103/**
William Cohen881245d2010-03-09 09:26:04 +0100104 * block_rq_complete - block IO operation completed by device driver
William Cohen881245d2010-03-09 09:26:04 +0100105 * @rq: block operations request
Christoph Hellwigcaf7df12017-04-20 16:03:16 +0200106 * @error: status code
Roman Penaf5040d2014-03-04 23:13:10 +0900107 * @nr_bytes: number of completed bytes
William Cohen881245d2010-03-09 09:26:04 +0100108 *
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.
114 */
Roman Penaf5040d2014-03-04 23:13:10 +0900115TRACE_EVENT(block_rq_complete,
Li Zefan77ca1e02009-11-26 15:06:14 +0800116
Christoph Hellwigcaf7df12017-04-20 16:03:16 +0200117 TP_PROTO(struct request *rq, int error, unsigned int nr_bytes),
Li Zefan77ca1e02009-11-26 15:06:14 +0800118
Christoph Hellwigcaf7df12017-04-20 16:03:16 +0200119 TP_ARGS(rq, error, nr_bytes),
Roman Penaf5040d2014-03-04 23:13:10 +0900120
121 TP_STRUCT__entry(
122 __field( dev_t, dev )
123 __field( sector_t, sector )
124 __field( unsigned int, nr_sector )
Christoph Hellwigcaf7df12017-04-20 16:03:16 +0200125 __field( int, error )
Roman Penaf5040d2014-03-04 23:13:10 +0900126 __array( char, rwbs, RWBS_LEN )
Christoph Hellwig48b77ad2017-01-27 09:35:54 +0100127 __dynamic_array( char, cmd, 1 )
Roman Penaf5040d2014-03-04 23:13:10 +0900128 ),
129
130 TP_fast_assign(
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;
Christoph Hellwigcaf7df12017-04-20 16:03:16 +0200134 __entry->error = error;
Roman Penaf5040d2014-03-04 23:13:10 +0900135
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600136 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, nr_bytes);
Christoph Hellwig48b77ad2017-01-27 09:35:54 +0100137 __get_str(cmd)[0] = '\0';
Roman Penaf5040d2014-03-04 23:13:10 +0900138 ),
139
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,
Christoph Hellwigcaf7df12017-04-20 16:03:16 +0200144 __entry->nr_sector, __entry->error)
Li Zefan77ca1e02009-11-26 15:06:14 +0800145);
146
147DECLARE_EVENT_CLASS(block_rq,
Li Zefan55782132009-06-09 13:43:05 +0800148
149 TP_PROTO(struct request_queue *q, struct request *rq),
150
151 TP_ARGS(q, rq),
152
153 TP_STRUCT__entry(
154 __field( dev_t, dev )
155 __field( sector_t, sector )
156 __field( unsigned int, nr_sector )
157 __field( unsigned int, bytes )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200158 __array( char, rwbs, RWBS_LEN )
Li Zefan55782132009-06-09 13:43:05 +0800159 __array( char, comm, TASK_COMM_LEN )
Christoph Hellwig48b77ad2017-01-27 09:35:54 +0100160 __dynamic_array( char, cmd, 1 )
Li Zefan55782132009-06-09 13:43:05 +0800161 ),
162
163 TP_fast_assign(
164 __entry->dev = rq->rq_disk ? disk_devt(rq->rq_disk) : 0;
Christoph Hellwig48b77ad2017-01-27 09:35:54 +0100165 __entry->sector = blk_rq_trace_sector(rq);
166 __entry->nr_sector = blk_rq_trace_nr_sectors(rq);
167 __entry->bytes = blk_rq_bytes(rq);
Li Zefan55782132009-06-09 13:43:05 +0800168
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600169 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, blk_rq_bytes(rq));
Christoph Hellwig48b77ad2017-01-27 09:35:54 +0100170 __get_str(cmd)[0] = '\0';
Li Zefan55782132009-06-09 13:43:05 +0800171 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
172 ),
173
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),
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400177 (unsigned long long)__entry->sector,
178 __entry->nr_sector, __entry->comm)
Li Zefan55782132009-06-09 13:43:05 +0800179);
180
William Cohen881245d2010-03-09 09:26:04 +0100181/**
182 * block_rq_insert - insert block operation request into queue
183 * @q: target queue
184 * @rq: block IO operation request
185 *
186 * Called immediately before block operation request @rq is inserted
187 * into queue @q. The fields in the operation request @rq struct can
188 * be examined to determine which device and sectors the pending
189 * operation would access.
190 */
Li Zefan77ca1e02009-11-26 15:06:14 +0800191DEFINE_EVENT(block_rq, block_rq_insert,
Li Zefan55782132009-06-09 13:43:05 +0800192
193 TP_PROTO(struct request_queue *q, struct request *rq),
194
Li Zefan77ca1e02009-11-26 15:06:14 +0800195 TP_ARGS(q, rq)
Li Zefan55782132009-06-09 13:43:05 +0800196);
197
William Cohen881245d2010-03-09 09:26:04 +0100198/**
199 * block_rq_issue - issue pending block IO request operation to device driver
200 * @q: queue holding operation
201 * @rq: block IO operation operation request
202 *
203 * Called when block operation request @rq from queue @q is sent to a
204 * device driver for processing.
205 */
Li Zefan77ca1e02009-11-26 15:06:14 +0800206DEFINE_EVENT(block_rq, block_rq_issue,
Li Zefan55782132009-06-09 13:43:05 +0800207
208 TP_PROTO(struct request_queue *q, struct request *rq),
209
Li Zefan77ca1e02009-11-26 15:06:14 +0800210 TP_ARGS(q, rq)
Li Zefan55782132009-06-09 13:43:05 +0800211);
Carsten Emdefe63b942009-09-12 00:05:37 +0200212
William Cohen881245d2010-03-09 09:26:04 +0100213/**
214 * block_bio_bounce - used bounce buffer when processing block operation
215 * @q: queue holding the block operation
216 * @bio: block operation
217 *
218 * A bounce buffer was used to handle the block operation @bio in @q.
219 * This occurs when hardware limitations prevent a direct transfer of
220 * data between the @bio data memory area and the IO device. Use of a
221 * bounce buffer requires extra copying of data and decreases
222 * performance.
223 */
Li Zefan55782132009-06-09 13:43:05 +0800224TRACE_EVENT(block_bio_bounce,
225
226 TP_PROTO(struct request_queue *q, struct bio *bio),
227
228 TP_ARGS(q, bio),
229
230 TP_STRUCT__entry(
231 __field( dev_t, dev )
232 __field( sector_t, sector )
233 __field( unsigned int, nr_sector )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200234 __array( char, rwbs, RWBS_LEN )
Li Zefan55782132009-06-09 13:43:05 +0800235 __array( char, comm, TASK_COMM_LEN )
236 ),
237
238 TP_fast_assign(
Christoph Hellwig74d46992017-08-23 19:10:32 +0200239 __entry->dev = bio_dev(bio);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700240 __entry->sector = bio->bi_iter.bi_sector;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800241 __entry->nr_sector = bio_sectors(bio);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600242 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
Li Zefan55782132009-06-09 13:43:05 +0800243 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
244 ),
245
246 TP_printk("%d,%d %s %llu + %u [%s]",
247 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400248 (unsigned long long)__entry->sector,
249 __entry->nr_sector, __entry->comm)
Li Zefan55782132009-06-09 13:43:05 +0800250);
251
William Cohen881245d2010-03-09 09:26:04 +0100252/**
253 * block_bio_complete - completed all work on the block operation
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700254 * @q: queue holding the block operation
William Cohen881245d2010-03-09 09:26:04 +0100255 * @bio: block operation completed
Jeff Moyerb7908c12011-01-06 20:41:42 +0100256 * @error: io error value
William Cohen881245d2010-03-09 09:26:04 +0100257 *
258 * This tracepoint indicates there is no further work to do on this
259 * block IO operation @bio.
260 */
Li Zefan55782132009-06-09 13:43:05 +0800261TRACE_EVENT(block_bio_complete,
262
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700263 TP_PROTO(struct request_queue *q, struct bio *bio, int error),
Li Zefan55782132009-06-09 13:43:05 +0800264
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700265 TP_ARGS(q, bio, error),
Li Zefan55782132009-06-09 13:43:05 +0800266
267 TP_STRUCT__entry(
268 __field( dev_t, dev )
269 __field( sector_t, sector )
270 __field( unsigned, nr_sector )
271 __field( int, error )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200272 __array( char, rwbs, RWBS_LEN)
Li Zefan55782132009-06-09 13:43:05 +0800273 ),
274
275 TP_fast_assign(
Christoph Hellwig74d46992017-08-23 19:10:32 +0200276 __entry->dev = bio_dev(bio);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700277 __entry->sector = bio->bi_iter.bi_sector;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800278 __entry->nr_sector = bio_sectors(bio);
Jeff Moyerb7908c12011-01-06 20:41:42 +0100279 __entry->error = error;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600280 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
Li Zefan55782132009-06-09 13:43:05 +0800281 ),
282
283 TP_printk("%d,%d %s %llu + %u [%d]",
284 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400285 (unsigned long long)__entry->sector,
286 __entry->nr_sector, __entry->error)
Li Zefan55782132009-06-09 13:43:05 +0800287);
288
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800289DECLARE_EVENT_CLASS(block_bio_merge,
Li Zefan55782132009-06-09 13:43:05 +0800290
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800291 TP_PROTO(struct request_queue *q, struct request *rq, struct bio *bio),
Li Zefan55782132009-06-09 13:43:05 +0800292
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800293 TP_ARGS(q, rq, bio),
Li Zefan55782132009-06-09 13:43:05 +0800294
295 TP_STRUCT__entry(
296 __field( dev_t, dev )
297 __field( sector_t, sector )
298 __field( unsigned int, nr_sector )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200299 __array( char, rwbs, RWBS_LEN )
Li Zefan55782132009-06-09 13:43:05 +0800300 __array( char, comm, TASK_COMM_LEN )
301 ),
302
303 TP_fast_assign(
Christoph Hellwig74d46992017-08-23 19:10:32 +0200304 __entry->dev = bio_dev(bio);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700305 __entry->sector = bio->bi_iter.bi_sector;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800306 __entry->nr_sector = bio_sectors(bio);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600307 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
Li Zefan55782132009-06-09 13:43:05 +0800308 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
309 ),
310
311 TP_printk("%d,%d %s %llu + %u [%s]",
312 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400313 (unsigned long long)__entry->sector,
314 __entry->nr_sector, __entry->comm)
Li Zefan55782132009-06-09 13:43:05 +0800315);
316
William Cohen881245d2010-03-09 09:26:04 +0100317/**
318 * block_bio_backmerge - merging block operation to the end of an existing operation
319 * @q: queue holding operation
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800320 * @rq: request bio is being merged into
William Cohen881245d2010-03-09 09:26:04 +0100321 * @bio: new block operation to merge
322 *
323 * Merging block request @bio to the end of an existing block request
324 * in queue @q.
325 */
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800326DEFINE_EVENT(block_bio_merge, block_bio_backmerge,
Li Zefan55782132009-06-09 13:43:05 +0800327
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800328 TP_PROTO(struct request_queue *q, struct request *rq, struct bio *bio),
Li Zefan55782132009-06-09 13:43:05 +0800329
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800330 TP_ARGS(q, rq, bio)
Li Zefan55782132009-06-09 13:43:05 +0800331);
332
William Cohen881245d2010-03-09 09:26:04 +0100333/**
334 * block_bio_frontmerge - merging block operation to the beginning of an existing operation
335 * @q: queue holding operation
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800336 * @rq: request bio is being merged into
William Cohen881245d2010-03-09 09:26:04 +0100337 * @bio: new block operation to merge
338 *
339 * Merging block IO operation @bio to the beginning of an existing block
340 * operation in queue @q.
341 */
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800342DEFINE_EVENT(block_bio_merge, block_bio_frontmerge,
Li Zefan55782132009-06-09 13:43:05 +0800343
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800344 TP_PROTO(struct request_queue *q, struct request *rq, struct bio *bio),
Li Zefan55782132009-06-09 13:43:05 +0800345
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800346 TP_ARGS(q, rq, bio)
Li Zefan55782132009-06-09 13:43:05 +0800347);
348
William Cohen881245d2010-03-09 09:26:04 +0100349/**
350 * block_bio_queue - putting new block IO operation in queue
351 * @q: queue holding operation
352 * @bio: new block operation
353 *
354 * About to place the block IO operation @bio into queue @q.
355 */
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800356TRACE_EVENT(block_bio_queue,
Li Zefan77ca1e02009-11-26 15:06:14 +0800357
358 TP_PROTO(struct request_queue *q, struct bio *bio),
359
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800360 TP_ARGS(q, bio),
361
362 TP_STRUCT__entry(
363 __field( dev_t, dev )
364 __field( sector_t, sector )
365 __field( unsigned int, nr_sector )
366 __array( char, rwbs, RWBS_LEN )
367 __array( char, comm, TASK_COMM_LEN )
368 ),
369
370 TP_fast_assign(
Christoph Hellwig74d46992017-08-23 19:10:32 +0200371 __entry->dev = bio_dev(bio);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700372 __entry->sector = bio->bi_iter.bi_sector;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800373 __entry->nr_sector = bio_sectors(bio);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600374 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800375 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
376 ),
377
378 TP_printk("%d,%d %s %llu + %u [%s]",
379 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
380 (unsigned long long)__entry->sector,
381 __entry->nr_sector, __entry->comm)
Li Zefan77ca1e02009-11-26 15:06:14 +0800382);
383
384DECLARE_EVENT_CLASS(block_get_rq,
Li Zefan55782132009-06-09 13:43:05 +0800385
386 TP_PROTO(struct request_queue *q, struct bio *bio, int rw),
387
388 TP_ARGS(q, bio, rw),
389
390 TP_STRUCT__entry(
391 __field( dev_t, dev )
392 __field( sector_t, sector )
393 __field( unsigned int, nr_sector )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200394 __array( char, rwbs, RWBS_LEN )
Li Zefan55782132009-06-09 13:43:05 +0800395 __array( char, comm, TASK_COMM_LEN )
396 ),
397
398 TP_fast_assign(
Christoph Hellwig74d46992017-08-23 19:10:32 +0200399 __entry->dev = bio ? bio_dev(bio) : 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700400 __entry->sector = bio ? bio->bi_iter.bi_sector : 0;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800401 __entry->nr_sector = bio ? bio_sectors(bio) : 0;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600402 blk_fill_rwbs(__entry->rwbs,
Jens Axboe1eff9d32016-08-05 15:35:16 -0600403 bio ? bio->bi_opf : 0, __entry->nr_sector);
Li Zefan55782132009-06-09 13:43:05 +0800404 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
405 ),
406
407 TP_printk("%d,%d %s %llu + %u [%s]",
408 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400409 (unsigned long long)__entry->sector,
410 __entry->nr_sector, __entry->comm)
Li Zefan55782132009-06-09 13:43:05 +0800411);
412
William Cohen881245d2010-03-09 09:26:04 +0100413/**
414 * block_getrq - get a free request entry in queue for block IO operations
415 * @q: queue for operations
Greg Thelenf8e9ec12017-09-07 17:36:36 -0700416 * @bio: pending block IO operation (can be %NULL)
William Cohen881245d2010-03-09 09:26:04 +0100417 * @rw: low bit indicates a read (%0) or a write (%1)
418 *
419 * A request struct for queue @q has been allocated to handle the
420 * block IO operation @bio.
421 */
Li Zefan77ca1e02009-11-26 15:06:14 +0800422DEFINE_EVENT(block_get_rq, block_getrq,
Li Zefan55782132009-06-09 13:43:05 +0800423
424 TP_PROTO(struct request_queue *q, struct bio *bio, int rw),
425
Li Zefan77ca1e02009-11-26 15:06:14 +0800426 TP_ARGS(q, bio, rw)
427);
Li Zefan55782132009-06-09 13:43:05 +0800428
William Cohen881245d2010-03-09 09:26:04 +0100429/**
430 * block_sleeprq - waiting to get a free request entry in queue for block IO operation
431 * @q: queue for operation
Greg Thelenf8e9ec12017-09-07 17:36:36 -0700432 * @bio: pending block IO operation (can be %NULL)
William Cohen881245d2010-03-09 09:26:04 +0100433 * @rw: low bit indicates a read (%0) or a write (%1)
434 *
435 * In the case where a request struct cannot be provided for queue @q
436 * the process needs to wait for an request struct to become
437 * available. This tracepoint event is generated each time the
438 * process goes to sleep waiting for request struct become available.
439 */
Li Zefan77ca1e02009-11-26 15:06:14 +0800440DEFINE_EVENT(block_get_rq, block_sleeprq,
Li Zefan55782132009-06-09 13:43:05 +0800441
Li Zefan77ca1e02009-11-26 15:06:14 +0800442 TP_PROTO(struct request_queue *q, struct bio *bio, int rw),
Li Zefan55782132009-06-09 13:43:05 +0800443
Li Zefan77ca1e02009-11-26 15:06:14 +0800444 TP_ARGS(q, bio, rw)
Li Zefan55782132009-06-09 13:43:05 +0800445);
446
William Cohen881245d2010-03-09 09:26:04 +0100447/**
448 * block_plug - keep operations requests in request queue
449 * @q: request queue to plug
450 *
451 * Plug the request queue @q. Do not allow block operation requests
452 * to be sent to the device driver. Instead, accumulate requests in
453 * the queue to improve throughput performance of the block device.
454 */
Li Zefan55782132009-06-09 13:43:05 +0800455TRACE_EVENT(block_plug,
456
457 TP_PROTO(struct request_queue *q),
458
459 TP_ARGS(q),
460
461 TP_STRUCT__entry(
462 __array( char, comm, TASK_COMM_LEN )
463 ),
464
465 TP_fast_assign(
466 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
467 ),
468
469 TP_printk("[%s]", __entry->comm)
470);
471
Li Zefan77ca1e02009-11-26 15:06:14 +0800472DECLARE_EVENT_CLASS(block_unplug,
Li Zefan55782132009-06-09 13:43:05 +0800473
Jens Axboe49cac012011-04-16 13:51:05 +0200474 TP_PROTO(struct request_queue *q, unsigned int depth, bool explicit),
Li Zefan55782132009-06-09 13:43:05 +0800475
Jens Axboe49cac012011-04-16 13:51:05 +0200476 TP_ARGS(q, depth, explicit),
Li Zefan55782132009-06-09 13:43:05 +0800477
478 TP_STRUCT__entry(
479 __field( int, nr_rq )
480 __array( char, comm, TASK_COMM_LEN )
481 ),
482
483 TP_fast_assign(
Jens Axboe94b5eb22011-04-12 10:12:19 +0200484 __entry->nr_rq = depth;
Li Zefan55782132009-06-09 13:43:05 +0800485 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
486 ),
487
488 TP_printk("[%s] %d", __entry->comm, __entry->nr_rq)
489);
490
William Cohen881245d2010-03-09 09:26:04 +0100491/**
Jens Axboe49cac012011-04-16 13:51:05 +0200492 * block_unplug - release of operations requests in request queue
William Cohen881245d2010-03-09 09:26:04 +0100493 * @q: request queue to unplug
Jens Axboe94b5eb22011-04-12 10:12:19 +0200494 * @depth: number of requests just added to the queue
Jens Axboe49cac012011-04-16 13:51:05 +0200495 * @explicit: whether this was an explicit unplug, or one from schedule()
William Cohen881245d2010-03-09 09:26:04 +0100496 *
497 * Unplug request queue @q because device driver is scheduled to work
498 * on elements in the request queue.
499 */
Jens Axboe49cac012011-04-16 13:51:05 +0200500DEFINE_EVENT(block_unplug, block_unplug,
Li Zefan55782132009-06-09 13:43:05 +0800501
Jens Axboe49cac012011-04-16 13:51:05 +0200502 TP_PROTO(struct request_queue *q, unsigned int depth, bool explicit),
Li Zefan55782132009-06-09 13:43:05 +0800503
Jens Axboe49cac012011-04-16 13:51:05 +0200504 TP_ARGS(q, depth, explicit)
Li Zefan55782132009-06-09 13:43:05 +0800505);
506
William Cohen881245d2010-03-09 09:26:04 +0100507/**
508 * block_split - split a single bio struct into two bio structs
509 * @q: queue containing the bio
510 * @bio: block operation being split
511 * @new_sector: The starting sector for the new bio
512 *
513 * The bio request @bio in request queue @q needs to be split into two
514 * bio requests. The newly created @bio request starts at
515 * @new_sector. This split may be required due to hardware limitation
516 * such as operation crossing device boundaries in a RAID system.
517 */
Li Zefan55782132009-06-09 13:43:05 +0800518TRACE_EVENT(block_split,
519
520 TP_PROTO(struct request_queue *q, struct bio *bio,
521 unsigned int new_sector),
522
523 TP_ARGS(q, bio, new_sector),
524
525 TP_STRUCT__entry(
526 __field( dev_t, dev )
527 __field( sector_t, sector )
528 __field( sector_t, new_sector )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200529 __array( char, rwbs, RWBS_LEN )
Li Zefan55782132009-06-09 13:43:05 +0800530 __array( char, comm, TASK_COMM_LEN )
531 ),
532
533 TP_fast_assign(
Christoph Hellwig74d46992017-08-23 19:10:32 +0200534 __entry->dev = bio_dev(bio);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700535 __entry->sector = bio->bi_iter.bi_sector;
Li Zefan55782132009-06-09 13:43:05 +0800536 __entry->new_sector = new_sector;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600537 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
Li Zefan55782132009-06-09 13:43:05 +0800538 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
539 ),
540
541 TP_printk("%d,%d %s %llu / %llu [%s]",
542 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400543 (unsigned long long)__entry->sector,
544 (unsigned long long)__entry->new_sector,
545 __entry->comm)
Li Zefan55782132009-06-09 13:43:05 +0800546);
547
William Cohen881245d2010-03-09 09:26:04 +0100548/**
Mike Snitzerd07335e2010-11-16 12:52:38 +0100549 * block_bio_remap - map request for a logical device to the raw device
William Cohen881245d2010-03-09 09:26:04 +0100550 * @q: queue holding the operation
551 * @bio: revised operation
552 * @dev: device for the operation
553 * @from: original sector for the operation
554 *
Mike Snitzerd07335e2010-11-16 12:52:38 +0100555 * An operation for a logical device has been mapped to the
William Cohen881245d2010-03-09 09:26:04 +0100556 * raw block device.
557 */
Mike Snitzerd07335e2010-11-16 12:52:38 +0100558TRACE_EVENT(block_bio_remap,
Li Zefan55782132009-06-09 13:43:05 +0800559
560 TP_PROTO(struct request_queue *q, struct bio *bio, dev_t dev,
561 sector_t from),
562
563 TP_ARGS(q, bio, dev, from),
564
565 TP_STRUCT__entry(
566 __field( dev_t, dev )
567 __field( sector_t, sector )
568 __field( unsigned int, nr_sector )
569 __field( dev_t, old_dev )
570 __field( sector_t, old_sector )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200571 __array( char, rwbs, RWBS_LEN)
Li Zefan55782132009-06-09 13:43:05 +0800572 ),
573
574 TP_fast_assign(
Christoph Hellwig74d46992017-08-23 19:10:32 +0200575 __entry->dev = bio_dev(bio);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700576 __entry->sector = bio->bi_iter.bi_sector;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800577 __entry->nr_sector = bio_sectors(bio);
Li Zefan55782132009-06-09 13:43:05 +0800578 __entry->old_dev = dev;
579 __entry->old_sector = from;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600580 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
Li Zefan55782132009-06-09 13:43:05 +0800581 ),
582
583 TP_printk("%d,%d %s %llu + %u <- (%d,%d) %llu",
584 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400585 (unsigned long long)__entry->sector,
586 __entry->nr_sector,
Li Zefan55782132009-06-09 13:43:05 +0800587 MAJOR(__entry->old_dev), MINOR(__entry->old_dev),
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400588 (unsigned long long)__entry->old_sector)
Li Zefan55782132009-06-09 13:43:05 +0800589);
590
William Cohen881245d2010-03-09 09:26:04 +0100591/**
592 * block_rq_remap - map request for a block operation request
593 * @q: queue holding the operation
594 * @rq: block IO operation request
595 * @dev: device for the operation
596 * @from: original sector for the operation
597 *
598 * The block operation request @rq in @q has been remapped. The block
599 * operation request @rq holds the current information and @from hold
600 * the original sector.
601 */
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +0200602TRACE_EVENT(block_rq_remap,
603
604 TP_PROTO(struct request_queue *q, struct request *rq, dev_t dev,
605 sector_t from),
606
607 TP_ARGS(q, rq, dev, from),
608
609 TP_STRUCT__entry(
610 __field( dev_t, dev )
611 __field( sector_t, sector )
612 __field( unsigned int, nr_sector )
613 __field( dev_t, old_dev )
614 __field( sector_t, old_sector )
Jun'ichi Nomura75afb352013-09-21 13:57:47 -0600615 __field( unsigned int, nr_bios )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200616 __array( char, rwbs, RWBS_LEN)
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +0200617 ),
618
619 TP_fast_assign(
620 __entry->dev = disk_devt(rq->rq_disk);
621 __entry->sector = blk_rq_pos(rq);
622 __entry->nr_sector = blk_rq_sectors(rq);
623 __entry->old_dev = dev;
624 __entry->old_sector = from;
Jun'ichi Nomura75afb352013-09-21 13:57:47 -0600625 __entry->nr_bios = blk_rq_count_bios(rq);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600626 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, blk_rq_bytes(rq));
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +0200627 ),
628
Jun'ichi Nomura75afb352013-09-21 13:57:47 -0600629 TP_printk("%d,%d %s %llu + %u <- (%d,%d) %llu %u",
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +0200630 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
631 (unsigned long long)__entry->sector,
632 __entry->nr_sector,
633 MAJOR(__entry->old_dev), MINOR(__entry->old_dev),
Jun'ichi Nomura75afb352013-09-21 13:57:47 -0600634 (unsigned long long)__entry->old_sector, __entry->nr_bios)
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +0200635);
636
Li Zefan55782132009-06-09 13:43:05 +0800637#endif /* _TRACE_BLOCK_H */
638
639/* This part must be outside protection */
640#include <trace/define_trace.h>
641