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