blob: 99ed69fad041284a49b7cd739963795591876f9d [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 )
83 __field( int, errors )
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 __entry->errors = rq->errors;
93
Christoph Hellwigef295ec2016-10-28 08:48:16 -060094 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, blk_rq_bytes(rq));
Christoph Hellwig48b77ad2017-01-27 09:35:54 +010095 __get_str(cmd)[0] = '\0';
Li Zefan55782132009-06-09 13:43:05 +080096 ),
97
98 TP_printk("%d,%d %s (%s) %llu + %u [%d]",
99 MAJOR(__entry->dev), MINOR(__entry->dev),
100 __entry->rwbs, __get_str(cmd),
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400101 (unsigned long long)__entry->sector,
102 __entry->nr_sector, __entry->errors)
Li Zefan55782132009-06-09 13:43:05 +0800103);
104
William Cohen881245d2010-03-09 09:26:04 +0100105/**
William Cohen881245d2010-03-09 09:26:04 +0100106 * block_rq_complete - block IO operation completed by device driver
107 * @q: queue containing the block operation request
108 * @rq: block operations request
Roman Penaf5040d2014-03-04 23:13:10 +0900109 * @nr_bytes: number of completed bytes
William Cohen881245d2010-03-09 09:26:04 +0100110 *
111 * The block_rq_complete tracepoint event indicates that some portion
112 * of operation request has been completed by the device driver. If
113 * the @rq->bio is %NULL, then there is absolutely no additional work to
114 * do for the request. If @rq->bio is non-NULL then there is
115 * additional work required to complete the request.
116 */
Roman Penaf5040d2014-03-04 23:13:10 +0900117TRACE_EVENT(block_rq_complete,
Li Zefan77ca1e02009-11-26 15:06:14 +0800118
Roman Penaf5040d2014-03-04 23:13:10 +0900119 TP_PROTO(struct request_queue *q, struct request *rq,
120 unsigned int nr_bytes),
Li Zefan77ca1e02009-11-26 15:06:14 +0800121
Roman Penaf5040d2014-03-04 23:13:10 +0900122 TP_ARGS(q, rq, nr_bytes),
123
124 TP_STRUCT__entry(
125 __field( dev_t, dev )
126 __field( sector_t, sector )
127 __field( unsigned int, nr_sector )
128 __field( int, errors )
129 __array( char, rwbs, RWBS_LEN )
Christoph Hellwig48b77ad2017-01-27 09:35:54 +0100130 __dynamic_array( char, cmd, 1 )
Roman Penaf5040d2014-03-04 23:13:10 +0900131 ),
132
133 TP_fast_assign(
134 __entry->dev = rq->rq_disk ? disk_devt(rq->rq_disk) : 0;
135 __entry->sector = blk_rq_pos(rq);
136 __entry->nr_sector = nr_bytes >> 9;
137 __entry->errors = rq->errors;
138
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600139 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, nr_bytes);
Christoph Hellwig48b77ad2017-01-27 09:35:54 +0100140 __get_str(cmd)[0] = '\0';
Roman Penaf5040d2014-03-04 23:13:10 +0900141 ),
142
143 TP_printk("%d,%d %s (%s) %llu + %u [%d]",
144 MAJOR(__entry->dev), MINOR(__entry->dev),
145 __entry->rwbs, __get_str(cmd),
146 (unsigned long long)__entry->sector,
147 __entry->nr_sector, __entry->errors)
Li Zefan77ca1e02009-11-26 15:06:14 +0800148);
149
150DECLARE_EVENT_CLASS(block_rq,
Li Zefan55782132009-06-09 13:43:05 +0800151
152 TP_PROTO(struct request_queue *q, struct request *rq),
153
154 TP_ARGS(q, rq),
155
156 TP_STRUCT__entry(
157 __field( dev_t, dev )
158 __field( sector_t, sector )
159 __field( unsigned int, nr_sector )
160 __field( unsigned int, bytes )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200161 __array( char, rwbs, RWBS_LEN )
Li Zefan55782132009-06-09 13:43:05 +0800162 __array( char, comm, TASK_COMM_LEN )
Christoph Hellwig48b77ad2017-01-27 09:35:54 +0100163 __dynamic_array( char, cmd, 1 )
Li Zefan55782132009-06-09 13:43:05 +0800164 ),
165
166 TP_fast_assign(
167 __entry->dev = rq->rq_disk ? disk_devt(rq->rq_disk) : 0;
Christoph Hellwig48b77ad2017-01-27 09:35:54 +0100168 __entry->sector = blk_rq_trace_sector(rq);
169 __entry->nr_sector = blk_rq_trace_nr_sectors(rq);
170 __entry->bytes = blk_rq_bytes(rq);
Li Zefan55782132009-06-09 13:43:05 +0800171
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600172 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, blk_rq_bytes(rq));
Christoph Hellwig48b77ad2017-01-27 09:35:54 +0100173 __get_str(cmd)[0] = '\0';
Li Zefan55782132009-06-09 13:43:05 +0800174 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
175 ),
176
177 TP_printk("%d,%d %s %u (%s) %llu + %u [%s]",
178 MAJOR(__entry->dev), MINOR(__entry->dev),
179 __entry->rwbs, __entry->bytes, __get_str(cmd),
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400180 (unsigned long long)__entry->sector,
181 __entry->nr_sector, __entry->comm)
Li Zefan55782132009-06-09 13:43:05 +0800182);
183
William Cohen881245d2010-03-09 09:26:04 +0100184/**
185 * block_rq_insert - insert block operation request into queue
186 * @q: target queue
187 * @rq: block IO operation request
188 *
189 * Called immediately before block operation request @rq is inserted
190 * into queue @q. The fields in the operation request @rq struct can
191 * be examined to determine which device and sectors the pending
192 * operation would access.
193 */
Li Zefan77ca1e02009-11-26 15:06:14 +0800194DEFINE_EVENT(block_rq, block_rq_insert,
Li Zefan55782132009-06-09 13:43:05 +0800195
196 TP_PROTO(struct request_queue *q, struct request *rq),
197
Li Zefan77ca1e02009-11-26 15:06:14 +0800198 TP_ARGS(q, rq)
Li Zefan55782132009-06-09 13:43:05 +0800199);
200
William Cohen881245d2010-03-09 09:26:04 +0100201/**
202 * block_rq_issue - issue pending block IO request operation to device driver
203 * @q: queue holding operation
204 * @rq: block IO operation operation request
205 *
206 * Called when block operation request @rq from queue @q is sent to a
207 * device driver for processing.
208 */
Li Zefan77ca1e02009-11-26 15:06:14 +0800209DEFINE_EVENT(block_rq, block_rq_issue,
Li Zefan55782132009-06-09 13:43:05 +0800210
211 TP_PROTO(struct request_queue *q, struct request *rq),
212
Li Zefan77ca1e02009-11-26 15:06:14 +0800213 TP_ARGS(q, rq)
Li Zefan55782132009-06-09 13:43:05 +0800214);
Carsten Emdefe63b942009-09-12 00:05:37 +0200215
William Cohen881245d2010-03-09 09:26:04 +0100216/**
217 * block_bio_bounce - used bounce buffer when processing block operation
218 * @q: queue holding the block operation
219 * @bio: block operation
220 *
221 * A bounce buffer was used to handle the block operation @bio in @q.
222 * This occurs when hardware limitations prevent a direct transfer of
223 * data between the @bio data memory area and the IO device. Use of a
224 * bounce buffer requires extra copying of data and decreases
225 * performance.
226 */
Li Zefan55782132009-06-09 13:43:05 +0800227TRACE_EVENT(block_bio_bounce,
228
229 TP_PROTO(struct request_queue *q, struct bio *bio),
230
231 TP_ARGS(q, bio),
232
233 TP_STRUCT__entry(
234 __field( dev_t, dev )
235 __field( sector_t, sector )
236 __field( unsigned int, nr_sector )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200237 __array( char, rwbs, RWBS_LEN )
Li Zefan55782132009-06-09 13:43:05 +0800238 __array( char, comm, TASK_COMM_LEN )
239 ),
240
241 TP_fast_assign(
Carsten Emdefe63b942009-09-12 00:05:37 +0200242 __entry->dev = bio->bi_bdev ?
243 bio->bi_bdev->bd_dev : 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700244 __entry->sector = bio->bi_iter.bi_sector;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800245 __entry->nr_sector = bio_sectors(bio);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600246 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
Li Zefan55782132009-06-09 13:43:05 +0800247 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
248 ),
249
250 TP_printk("%d,%d %s %llu + %u [%s]",
251 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400252 (unsigned long long)__entry->sector,
253 __entry->nr_sector, __entry->comm)
Li Zefan55782132009-06-09 13:43:05 +0800254);
255
William Cohen881245d2010-03-09 09:26:04 +0100256/**
257 * block_bio_complete - completed all work on the block operation
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700258 * @q: queue holding the block operation
William Cohen881245d2010-03-09 09:26:04 +0100259 * @bio: block operation completed
Jeff Moyerb7908c12011-01-06 20:41:42 +0100260 * @error: io error value
William Cohen881245d2010-03-09 09:26:04 +0100261 *
262 * This tracepoint indicates there is no further work to do on this
263 * block IO operation @bio.
264 */
Li Zefan55782132009-06-09 13:43:05 +0800265TRACE_EVENT(block_bio_complete,
266
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700267 TP_PROTO(struct request_queue *q, struct bio *bio, int error),
Li Zefan55782132009-06-09 13:43:05 +0800268
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700269 TP_ARGS(q, bio, error),
Li Zefan55782132009-06-09 13:43:05 +0800270
271 TP_STRUCT__entry(
272 __field( dev_t, dev )
273 __field( sector_t, sector )
274 __field( unsigned, nr_sector )
275 __field( int, error )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200276 __array( char, rwbs, RWBS_LEN)
Li Zefan55782132009-06-09 13:43:05 +0800277 ),
278
279 TP_fast_assign(
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700280 __entry->dev = bio->bi_bdev->bd_dev;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700281 __entry->sector = bio->bi_iter.bi_sector;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800282 __entry->nr_sector = bio_sectors(bio);
Jeff Moyerb7908c12011-01-06 20:41:42 +0100283 __entry->error = error;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600284 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
Li Zefan55782132009-06-09 13:43:05 +0800285 ),
286
287 TP_printk("%d,%d %s %llu + %u [%d]",
288 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400289 (unsigned long long)__entry->sector,
290 __entry->nr_sector, __entry->error)
Li Zefan55782132009-06-09 13:43:05 +0800291);
292
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800293DECLARE_EVENT_CLASS(block_bio_merge,
Li Zefan55782132009-06-09 13:43:05 +0800294
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800295 TP_PROTO(struct request_queue *q, struct request *rq, struct bio *bio),
Li Zefan55782132009-06-09 13:43:05 +0800296
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800297 TP_ARGS(q, rq, bio),
Li Zefan55782132009-06-09 13:43:05 +0800298
299 TP_STRUCT__entry(
300 __field( dev_t, dev )
301 __field( sector_t, sector )
302 __field( unsigned int, nr_sector )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200303 __array( char, rwbs, RWBS_LEN )
Li Zefan55782132009-06-09 13:43:05 +0800304 __array( char, comm, TASK_COMM_LEN )
305 ),
306
307 TP_fast_assign(
308 __entry->dev = bio->bi_bdev->bd_dev;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700309 __entry->sector = bio->bi_iter.bi_sector;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800310 __entry->nr_sector = bio_sectors(bio);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600311 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
Li Zefan55782132009-06-09 13:43:05 +0800312 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
313 ),
314
315 TP_printk("%d,%d %s %llu + %u [%s]",
316 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400317 (unsigned long long)__entry->sector,
318 __entry->nr_sector, __entry->comm)
Li Zefan55782132009-06-09 13:43:05 +0800319);
320
William Cohen881245d2010-03-09 09:26:04 +0100321/**
322 * block_bio_backmerge - merging block operation to the end of an existing operation
323 * @q: queue holding operation
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800324 * @rq: request bio is being merged into
William Cohen881245d2010-03-09 09:26:04 +0100325 * @bio: new block operation to merge
326 *
327 * Merging block request @bio to the end of an existing block request
328 * in queue @q.
329 */
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800330DEFINE_EVENT(block_bio_merge, block_bio_backmerge,
Li Zefan55782132009-06-09 13:43:05 +0800331
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800332 TP_PROTO(struct request_queue *q, struct request *rq, struct bio *bio),
Li Zefan55782132009-06-09 13:43:05 +0800333
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800334 TP_ARGS(q, rq, bio)
Li Zefan55782132009-06-09 13:43:05 +0800335);
336
William Cohen881245d2010-03-09 09:26:04 +0100337/**
338 * block_bio_frontmerge - merging block operation to the beginning of an existing operation
339 * @q: queue holding operation
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800340 * @rq: request bio is being merged into
William Cohen881245d2010-03-09 09:26:04 +0100341 * @bio: new block operation to merge
342 *
343 * Merging block IO operation @bio to the beginning of an existing block
344 * operation in queue @q.
345 */
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800346DEFINE_EVENT(block_bio_merge, block_bio_frontmerge,
Li Zefan55782132009-06-09 13:43:05 +0800347
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800348 TP_PROTO(struct request_queue *q, struct request *rq, struct bio *bio),
Li Zefan55782132009-06-09 13:43:05 +0800349
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800350 TP_ARGS(q, rq, bio)
Li Zefan55782132009-06-09 13:43:05 +0800351);
352
William Cohen881245d2010-03-09 09:26:04 +0100353/**
354 * block_bio_queue - putting new block IO operation in queue
355 * @q: queue holding operation
356 * @bio: new block operation
357 *
358 * About to place the block IO operation @bio into queue @q.
359 */
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800360TRACE_EVENT(block_bio_queue,
Li Zefan77ca1e02009-11-26 15:06:14 +0800361
362 TP_PROTO(struct request_queue *q, struct bio *bio),
363
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800364 TP_ARGS(q, bio),
365
366 TP_STRUCT__entry(
367 __field( dev_t, dev )
368 __field( sector_t, sector )
369 __field( unsigned int, nr_sector )
370 __array( char, rwbs, RWBS_LEN )
371 __array( char, comm, TASK_COMM_LEN )
372 ),
373
374 TP_fast_assign(
375 __entry->dev = bio->bi_bdev->bd_dev;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700376 __entry->sector = bio->bi_iter.bi_sector;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800377 __entry->nr_sector = bio_sectors(bio);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600378 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
Tejun Heo8c1cf6b2013-01-11 13:06:34 -0800379 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
380 ),
381
382 TP_printk("%d,%d %s %llu + %u [%s]",
383 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
384 (unsigned long long)__entry->sector,
385 __entry->nr_sector, __entry->comm)
Li Zefan77ca1e02009-11-26 15:06:14 +0800386);
387
388DECLARE_EVENT_CLASS(block_get_rq,
Li Zefan55782132009-06-09 13:43:05 +0800389
390 TP_PROTO(struct request_queue *q, struct bio *bio, int rw),
391
392 TP_ARGS(q, bio, rw),
393
394 TP_STRUCT__entry(
395 __field( dev_t, dev )
396 __field( sector_t, sector )
397 __field( unsigned int, nr_sector )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200398 __array( char, rwbs, RWBS_LEN )
Li Zefan55782132009-06-09 13:43:05 +0800399 __array( char, comm, TASK_COMM_LEN )
400 ),
401
402 TP_fast_assign(
403 __entry->dev = bio ? bio->bi_bdev->bd_dev : 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700404 __entry->sector = bio ? bio->bi_iter.bi_sector : 0;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800405 __entry->nr_sector = bio ? bio_sectors(bio) : 0;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600406 blk_fill_rwbs(__entry->rwbs,
Jens Axboe1eff9d32016-08-05 15:35:16 -0600407 bio ? bio->bi_opf : 0, __entry->nr_sector);
Li Zefan55782132009-06-09 13:43:05 +0800408 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,
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400413 (unsigned long long)__entry->sector,
414 __entry->nr_sector, __entry->comm)
Li Zefan55782132009-06-09 13:43:05 +0800415);
416
William Cohen881245d2010-03-09 09:26:04 +0100417/**
418 * block_getrq - get a free request entry in queue for block IO operations
419 * @q: queue for operations
420 * @bio: pending block IO operation
421 * @rw: low bit indicates a read (%0) or a write (%1)
422 *
423 * A request struct for queue @q has been allocated to handle the
424 * block IO operation @bio.
425 */
Li Zefan77ca1e02009-11-26 15:06:14 +0800426DEFINE_EVENT(block_get_rq, block_getrq,
Li Zefan55782132009-06-09 13:43:05 +0800427
428 TP_PROTO(struct request_queue *q, struct bio *bio, int rw),
429
Li Zefan77ca1e02009-11-26 15:06:14 +0800430 TP_ARGS(q, bio, rw)
431);
Li Zefan55782132009-06-09 13:43:05 +0800432
William Cohen881245d2010-03-09 09:26:04 +0100433/**
434 * block_sleeprq - waiting to get a free request entry in queue for block IO operation
435 * @q: queue for operation
436 * @bio: pending block IO operation
437 * @rw: low bit indicates a read (%0) or a write (%1)
438 *
439 * In the case where a request struct cannot be provided for queue @q
440 * the process needs to wait for an request struct to become
441 * available. This tracepoint event is generated each time the
442 * process goes to sleep waiting for request struct become available.
443 */
Li Zefan77ca1e02009-11-26 15:06:14 +0800444DEFINE_EVENT(block_get_rq, block_sleeprq,
Li Zefan55782132009-06-09 13:43:05 +0800445
Li Zefan77ca1e02009-11-26 15:06:14 +0800446 TP_PROTO(struct request_queue *q, struct bio *bio, int rw),
Li Zefan55782132009-06-09 13:43:05 +0800447
Li Zefan77ca1e02009-11-26 15:06:14 +0800448 TP_ARGS(q, bio, rw)
Li Zefan55782132009-06-09 13:43:05 +0800449);
450
William Cohen881245d2010-03-09 09:26:04 +0100451/**
452 * block_plug - keep operations requests in request queue
453 * @q: request queue to plug
454 *
455 * Plug the request queue @q. Do not allow block operation requests
456 * to be sent to the device driver. Instead, accumulate requests in
457 * the queue to improve throughput performance of the block device.
458 */
Li Zefan55782132009-06-09 13:43:05 +0800459TRACE_EVENT(block_plug,
460
461 TP_PROTO(struct request_queue *q),
462
463 TP_ARGS(q),
464
465 TP_STRUCT__entry(
466 __array( char, comm, TASK_COMM_LEN )
467 ),
468
469 TP_fast_assign(
470 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
471 ),
472
473 TP_printk("[%s]", __entry->comm)
474);
475
Li Zefan77ca1e02009-11-26 15:06:14 +0800476DECLARE_EVENT_CLASS(block_unplug,
Li Zefan55782132009-06-09 13:43:05 +0800477
Jens Axboe49cac012011-04-16 13:51:05 +0200478 TP_PROTO(struct request_queue *q, unsigned int depth, bool explicit),
Li Zefan55782132009-06-09 13:43:05 +0800479
Jens Axboe49cac012011-04-16 13:51:05 +0200480 TP_ARGS(q, depth, explicit),
Li Zefan55782132009-06-09 13:43:05 +0800481
482 TP_STRUCT__entry(
483 __field( int, nr_rq )
484 __array( char, comm, TASK_COMM_LEN )
485 ),
486
487 TP_fast_assign(
Jens Axboe94b5eb22011-04-12 10:12:19 +0200488 __entry->nr_rq = depth;
Li Zefan55782132009-06-09 13:43:05 +0800489 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
490 ),
491
492 TP_printk("[%s] %d", __entry->comm, __entry->nr_rq)
493);
494
William Cohen881245d2010-03-09 09:26:04 +0100495/**
Jens Axboe49cac012011-04-16 13:51:05 +0200496 * block_unplug - release of operations requests in request queue
William Cohen881245d2010-03-09 09:26:04 +0100497 * @q: request queue to unplug
Jens Axboe94b5eb22011-04-12 10:12:19 +0200498 * @depth: number of requests just added to the queue
Jens Axboe49cac012011-04-16 13:51:05 +0200499 * @explicit: whether this was an explicit unplug, or one from schedule()
William Cohen881245d2010-03-09 09:26:04 +0100500 *
501 * Unplug request queue @q because device driver is scheduled to work
502 * on elements in the request queue.
503 */
Jens Axboe49cac012011-04-16 13:51:05 +0200504DEFINE_EVENT(block_unplug, block_unplug,
Li Zefan55782132009-06-09 13:43:05 +0800505
Jens Axboe49cac012011-04-16 13:51:05 +0200506 TP_PROTO(struct request_queue *q, unsigned int depth, bool explicit),
Li Zefan55782132009-06-09 13:43:05 +0800507
Jens Axboe49cac012011-04-16 13:51:05 +0200508 TP_ARGS(q, depth, explicit)
Li Zefan55782132009-06-09 13:43:05 +0800509);
510
William Cohen881245d2010-03-09 09:26:04 +0100511/**
512 * block_split - split a single bio struct into two bio structs
513 * @q: queue containing the bio
514 * @bio: block operation being split
515 * @new_sector: The starting sector for the new bio
516 *
517 * The bio request @bio in request queue @q needs to be split into two
518 * bio requests. The newly created @bio request starts at
519 * @new_sector. This split may be required due to hardware limitation
520 * such as operation crossing device boundaries in a RAID system.
521 */
Li Zefan55782132009-06-09 13:43:05 +0800522TRACE_EVENT(block_split,
523
524 TP_PROTO(struct request_queue *q, struct bio *bio,
525 unsigned int new_sector),
526
527 TP_ARGS(q, bio, new_sector),
528
529 TP_STRUCT__entry(
530 __field( dev_t, dev )
531 __field( sector_t, sector )
532 __field( sector_t, new_sector )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200533 __array( char, rwbs, RWBS_LEN )
Li Zefan55782132009-06-09 13:43:05 +0800534 __array( char, comm, TASK_COMM_LEN )
535 ),
536
537 TP_fast_assign(
538 __entry->dev = bio->bi_bdev->bd_dev;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700539 __entry->sector = bio->bi_iter.bi_sector;
Li Zefan55782132009-06-09 13:43:05 +0800540 __entry->new_sector = new_sector;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600541 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
Li Zefan55782132009-06-09 13:43:05 +0800542 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
543 ),
544
545 TP_printk("%d,%d %s %llu / %llu [%s]",
546 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400547 (unsigned long long)__entry->sector,
548 (unsigned long long)__entry->new_sector,
549 __entry->comm)
Li Zefan55782132009-06-09 13:43:05 +0800550);
551
William Cohen881245d2010-03-09 09:26:04 +0100552/**
Mike Snitzerd07335e2010-11-16 12:52:38 +0100553 * block_bio_remap - map request for a logical device to the raw device
William Cohen881245d2010-03-09 09:26:04 +0100554 * @q: queue holding the operation
555 * @bio: revised operation
556 * @dev: device for the operation
557 * @from: original sector for the operation
558 *
Mike Snitzerd07335e2010-11-16 12:52:38 +0100559 * An operation for a logical device has been mapped to the
William Cohen881245d2010-03-09 09:26:04 +0100560 * raw block device.
561 */
Mike Snitzerd07335e2010-11-16 12:52:38 +0100562TRACE_EVENT(block_bio_remap,
Li Zefan55782132009-06-09 13:43:05 +0800563
564 TP_PROTO(struct request_queue *q, struct bio *bio, dev_t dev,
565 sector_t from),
566
567 TP_ARGS(q, bio, dev, from),
568
569 TP_STRUCT__entry(
570 __field( dev_t, dev )
571 __field( sector_t, sector )
572 __field( unsigned int, nr_sector )
573 __field( dev_t, old_dev )
574 __field( sector_t, old_sector )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200575 __array( char, rwbs, RWBS_LEN)
Li Zefan55782132009-06-09 13:43:05 +0800576 ),
577
578 TP_fast_assign(
579 __entry->dev = bio->bi_bdev->bd_dev;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700580 __entry->sector = bio->bi_iter.bi_sector;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800581 __entry->nr_sector = bio_sectors(bio);
Li Zefan55782132009-06-09 13:43:05 +0800582 __entry->old_dev = dev;
583 __entry->old_sector = from;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600584 blk_fill_rwbs(__entry->rwbs, bio->bi_opf, bio->bi_iter.bi_size);
Li Zefan55782132009-06-09 13:43:05 +0800585 ),
586
587 TP_printk("%d,%d %s %llu + %u <- (%d,%d) %llu",
588 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400589 (unsigned long long)__entry->sector,
590 __entry->nr_sector,
Li Zefan55782132009-06-09 13:43:05 +0800591 MAJOR(__entry->old_dev), MINOR(__entry->old_dev),
Steven Rostedt6556d1d2009-06-09 14:04:26 -0400592 (unsigned long long)__entry->old_sector)
Li Zefan55782132009-06-09 13:43:05 +0800593);
594
William Cohen881245d2010-03-09 09:26:04 +0100595/**
596 * block_rq_remap - map request for a block operation request
597 * @q: queue holding the operation
598 * @rq: block IO operation request
599 * @dev: device for the operation
600 * @from: original sector for the operation
601 *
602 * The block operation request @rq in @q has been remapped. The block
603 * operation request @rq holds the current information and @from hold
604 * the original sector.
605 */
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +0200606TRACE_EVENT(block_rq_remap,
607
608 TP_PROTO(struct request_queue *q, struct request *rq, dev_t dev,
609 sector_t from),
610
611 TP_ARGS(q, rq, dev, from),
612
613 TP_STRUCT__entry(
614 __field( dev_t, dev )
615 __field( sector_t, sector )
616 __field( unsigned int, nr_sector )
617 __field( dev_t, old_dev )
618 __field( sector_t, old_sector )
Jun'ichi Nomura75afb352013-09-21 13:57:47 -0600619 __field( unsigned int, nr_bios )
Namhyung Kimc09c47c2011-08-11 10:36:05 +0200620 __array( char, rwbs, RWBS_LEN)
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +0200621 ),
622
623 TP_fast_assign(
624 __entry->dev = disk_devt(rq->rq_disk);
625 __entry->sector = blk_rq_pos(rq);
626 __entry->nr_sector = blk_rq_sectors(rq);
627 __entry->old_dev = dev;
628 __entry->old_sector = from;
Jun'ichi Nomura75afb352013-09-21 13:57:47 -0600629 __entry->nr_bios = blk_rq_count_bios(rq);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600630 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, blk_rq_bytes(rq));
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +0200631 ),
632
Jun'ichi Nomura75afb352013-09-21 13:57:47 -0600633 TP_printk("%d,%d %s %llu + %u <- (%d,%d) %llu %u",
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +0200634 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->rwbs,
635 (unsigned long long)__entry->sector,
636 __entry->nr_sector,
637 MAJOR(__entry->old_dev), MINOR(__entry->old_dev),
Jun'ichi Nomura75afb352013-09-21 13:57:47 -0600638 (unsigned long long)__entry->old_sector, __entry->nr_bios)
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +0200639);
640
Li Zefan55782132009-06-09 13:43:05 +0800641#endif /* _TRACE_BLOCK_H */
642
643/* This part must be outside protection */
644#include <trace/define_trace.h>
645