2 * Copyright (C) 2006 Jens Axboe <axboe@kernel.dk>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 #include <linux/kernel.h>
19 #include <linux/blkdev.h>
20 #include <linux/blktrace_api.h>
21 #include <linux/percpu.h>
22 #include <linux/init.h>
23 #include <linux/mutex.h>
24 #include <linux/debugfs.h>
25 #include <linux/smp_lock.h>
26 #include <linux/time.h>
27 #include <linux/uaccess.h>
29 #include <trace/events/block.h>
31 #include "trace_output.h"
33 #ifdef CONFIG_BLK_DEV_IO_TRACE
35 static unsigned int blktrace_seq __read_mostly
= 1;
37 static struct trace_array
*blk_tr
;
38 static bool blk_tracer_enabled __read_mostly
;
40 /* Select an alternative, minimalistic output than the original one */
41 #define TRACE_BLK_OPT_CLASSIC 0x1
43 static struct tracer_opt blk_tracer_opts
[] = {
44 /* Default disable the minimalistic output */
45 { TRACER_OPT(blk_classic
, TRACE_BLK_OPT_CLASSIC
) },
49 static struct tracer_flags blk_tracer_flags
= {
51 .opts
= blk_tracer_opts
,
54 /* Global reference count of probes */
55 static atomic_t blk_probes_ref
= ATOMIC_INIT(0);
57 static void blk_register_tracepoints(void);
58 static void blk_unregister_tracepoints(void);
61 * Send out a notify message.
63 static void trace_note(struct blk_trace
*bt
, pid_t pid
, int action
,
64 const void *data
, size_t len
)
66 struct blk_io_trace
*t
;
67 struct ring_buffer_event
*event
= NULL
;
68 struct ring_buffer
*buffer
= NULL
;
70 int cpu
= smp_processor_id();
71 bool blk_tracer
= blk_tracer_enabled
;
74 buffer
= blk_tr
->buffer
;
76 event
= trace_buffer_lock_reserve(buffer
, TRACE_BLK
,
81 t
= ring_buffer_event_data(event
);
88 t
= relay_reserve(bt
->rchan
, sizeof(*t
) + len
);
90 t
->magic
= BLK_IO_TRACE_MAGIC
| BLK_IO_TRACE_VERSION
;
91 t
->time
= ktime_to_ns(ktime_get());
98 memcpy((void *) t
+ sizeof(*t
), data
, len
);
101 trace_buffer_unlock_commit(buffer
, event
, 0, pc
);
106 * Send out a notify for this process, if we haven't done so since a trace
109 static void trace_note_tsk(struct blk_trace
*bt
, struct task_struct
*tsk
)
111 tsk
->btrace_seq
= blktrace_seq
;
112 trace_note(bt
, tsk
->pid
, BLK_TN_PROCESS
, tsk
->comm
, sizeof(tsk
->comm
));
115 static void trace_note_time(struct blk_trace
*bt
)
121 getnstimeofday(&now
);
122 words
[0] = now
.tv_sec
;
123 words
[1] = now
.tv_nsec
;
125 local_irq_save(flags
);
126 trace_note(bt
, 0, BLK_TN_TIMESTAMP
, words
, sizeof(words
));
127 local_irq_restore(flags
);
130 void __trace_note_message(struct blk_trace
*bt
, const char *fmt
, ...)
137 if (unlikely(bt
->trace_state
!= Blktrace_running
&&
138 !blk_tracer_enabled
))
141 local_irq_save(flags
);
142 buf
= per_cpu_ptr(bt
->msg_data
, smp_processor_id());
144 n
= vscnprintf(buf
, BLK_TN_MAX_MSG
, fmt
, args
);
147 trace_note(bt
, 0, BLK_TN_MESSAGE
, buf
, n
);
148 local_irq_restore(flags
);
150 EXPORT_SYMBOL_GPL(__trace_note_message
);
152 static int act_log_check(struct blk_trace
*bt
, u32 what
, sector_t sector
,
155 if (((bt
->act_mask
<< BLK_TC_SHIFT
) & what
) == 0)
157 if (sector
&& (sector
< bt
->start_lba
|| sector
> bt
->end_lba
))
159 if (bt
->pid
&& pid
!= bt
->pid
)
166 * Data direction bit lookup
168 static const u32 ddir_act
[2] = { BLK_TC_ACT(BLK_TC_READ
),
169 BLK_TC_ACT(BLK_TC_WRITE
) };
171 /* The ilog2() calls fall out because they're constant */
172 #define MASK_TC_BIT(rw, __name) ((rw & (1 << BIO_RW_ ## __name)) << \
173 (ilog2(BLK_TC_ ## __name) + BLK_TC_SHIFT - BIO_RW_ ## __name))
176 * The worker for the various blk_add_trace*() types. Fills out a
177 * blk_io_trace structure and places it in a per-cpu subbuffer.
179 static void __blk_add_trace(struct blk_trace
*bt
, sector_t sector
, int bytes
,
180 int rw
, u32 what
, int error
, int pdu_len
, void *pdu_data
)
182 struct task_struct
*tsk
= current
;
183 struct ring_buffer_event
*event
= NULL
;
184 struct ring_buffer
*buffer
= NULL
;
185 struct blk_io_trace
*t
;
186 unsigned long flags
= 0;
187 unsigned long *sequence
;
190 bool blk_tracer
= blk_tracer_enabled
;
192 if (unlikely(bt
->trace_state
!= Blktrace_running
&& !blk_tracer
))
195 what
|= ddir_act
[rw
& WRITE
];
196 what
|= MASK_TC_BIT(rw
, BARRIER
);
197 what
|= MASK_TC_BIT(rw
, SYNCIO
);
198 what
|= MASK_TC_BIT(rw
, AHEAD
);
199 what
|= MASK_TC_BIT(rw
, META
);
200 what
|= MASK_TC_BIT(rw
, DISCARD
);
203 if (act_log_check(bt
, what
, sector
, pid
))
205 cpu
= raw_smp_processor_id();
208 tracing_record_cmdline(current
);
210 buffer
= blk_tr
->buffer
;
211 pc
= preempt_count();
212 event
= trace_buffer_lock_reserve(buffer
, TRACE_BLK
,
213 sizeof(*t
) + pdu_len
,
217 t
= ring_buffer_event_data(event
);
222 * A word about the locking here - we disable interrupts to reserve
223 * some space in the relay per-cpu buffer, to prevent an irq
224 * from coming in and stepping on our toes.
226 local_irq_save(flags
);
228 if (unlikely(tsk
->btrace_seq
!= blktrace_seq
))
229 trace_note_tsk(bt
, tsk
);
231 t
= relay_reserve(bt
->rchan
, sizeof(*t
) + pdu_len
);
233 sequence
= per_cpu_ptr(bt
->sequence
, cpu
);
235 t
->magic
= BLK_IO_TRACE_MAGIC
| BLK_IO_TRACE_VERSION
;
236 t
->sequence
= ++(*sequence
);
237 t
->time
= ktime_to_ns(ktime_get());
240 * These two are not needed in ftrace as they are in the
241 * generic trace_entry, filled by tracing_generic_entry_update,
242 * but for the trace_event->bin() synthesizer benefit we do it
253 t
->pdu_len
= pdu_len
;
256 memcpy((void *) t
+ sizeof(*t
), pdu_data
, pdu_len
);
259 trace_buffer_unlock_commit(buffer
, event
, 0, pc
);
264 local_irq_restore(flags
);
267 static struct dentry
*blk_tree_root
;
268 static DEFINE_MUTEX(blk_tree_mutex
);
270 static void blk_trace_free(struct blk_trace
*bt
)
272 debugfs_remove(bt
->msg_file
);
273 debugfs_remove(bt
->dropped_file
);
274 relay_close(bt
->rchan
);
275 debugfs_remove(bt
->dir
);
276 free_percpu(bt
->sequence
);
277 free_percpu(bt
->msg_data
);
281 static void blk_trace_cleanup(struct blk_trace
*bt
)
284 if (atomic_dec_and_test(&blk_probes_ref
))
285 blk_unregister_tracepoints();
288 int blk_trace_remove(struct request_queue
*q
)
290 struct blk_trace
*bt
;
292 bt
= xchg(&q
->blk_trace
, NULL
);
296 if (bt
->trace_state
!= Blktrace_running
)
297 blk_trace_cleanup(bt
);
301 EXPORT_SYMBOL_GPL(blk_trace_remove
);
303 static int blk_dropped_open(struct inode
*inode
, struct file
*filp
)
305 filp
->private_data
= inode
->i_private
;
310 static ssize_t
blk_dropped_read(struct file
*filp
, char __user
*buffer
,
311 size_t count
, loff_t
*ppos
)
313 struct blk_trace
*bt
= filp
->private_data
;
316 snprintf(buf
, sizeof(buf
), "%u\n", atomic_read(&bt
->dropped
));
318 return simple_read_from_buffer(buffer
, count
, ppos
, buf
, strlen(buf
));
321 static const struct file_operations blk_dropped_fops
= {
322 .owner
= THIS_MODULE
,
323 .open
= blk_dropped_open
,
324 .read
= blk_dropped_read
,
327 static int blk_msg_open(struct inode
*inode
, struct file
*filp
)
329 filp
->private_data
= inode
->i_private
;
334 static ssize_t
blk_msg_write(struct file
*filp
, const char __user
*buffer
,
335 size_t count
, loff_t
*ppos
)
338 struct blk_trace
*bt
;
340 if (count
>= BLK_TN_MAX_MSG
)
343 msg
= kmalloc(count
+ 1, GFP_KERNEL
);
347 if (copy_from_user(msg
, buffer
, count
)) {
353 bt
= filp
->private_data
;
354 __trace_note_message(bt
, "%s", msg
);
360 static const struct file_operations blk_msg_fops
= {
361 .owner
= THIS_MODULE
,
362 .open
= blk_msg_open
,
363 .write
= blk_msg_write
,
367 * Keep track of how many times we encountered a full subbuffer, to aid
368 * the user space app in telling how many lost events there were.
370 static int blk_subbuf_start_callback(struct rchan_buf
*buf
, void *subbuf
,
371 void *prev_subbuf
, size_t prev_padding
)
373 struct blk_trace
*bt
;
375 if (!relay_buf_full(buf
))
378 bt
= buf
->chan
->private_data
;
379 atomic_inc(&bt
->dropped
);
383 static int blk_remove_buf_file_callback(struct dentry
*dentry
)
385 debugfs_remove(dentry
);
390 static struct dentry
*blk_create_buf_file_callback(const char *filename
,
391 struct dentry
*parent
,
393 struct rchan_buf
*buf
,
396 return debugfs_create_file(filename
, mode
, parent
, buf
,
397 &relay_file_operations
);
400 static struct rchan_callbacks blk_relay_callbacks
= {
401 .subbuf_start
= blk_subbuf_start_callback
,
402 .create_buf_file
= blk_create_buf_file_callback
,
403 .remove_buf_file
= blk_remove_buf_file_callback
,
406 static void blk_trace_setup_lba(struct blk_trace
*bt
,
407 struct block_device
*bdev
)
409 struct hd_struct
*part
= NULL
;
412 part
= bdev
->bd_part
;
415 bt
->start_lba
= part
->start_sect
;
416 bt
->end_lba
= part
->start_sect
+ part
->nr_sects
;
424 * Setup everything required to start tracing
426 int do_blk_trace_setup(struct request_queue
*q
, char *name
, dev_t dev
,
427 struct block_device
*bdev
,
428 struct blk_user_trace_setup
*buts
)
430 struct blk_trace
*old_bt
, *bt
= NULL
;
431 struct dentry
*dir
= NULL
;
434 if (!buts
->buf_size
|| !buts
->buf_nr
)
437 strncpy(buts
->name
, name
, BLKTRACE_BDEV_SIZE
);
438 buts
->name
[BLKTRACE_BDEV_SIZE
- 1] = '\0';
441 * some device names have larger paths - convert the slashes
442 * to underscores for this to work as expected
444 for (i
= 0; i
< strlen(buts
->name
); i
++)
445 if (buts
->name
[i
] == '/')
448 bt
= kzalloc(sizeof(*bt
), GFP_KERNEL
);
453 bt
->sequence
= alloc_percpu(unsigned long);
457 bt
->msg_data
= __alloc_percpu(BLK_TN_MAX_MSG
, __alignof__(char));
463 mutex_lock(&blk_tree_mutex
);
464 if (!blk_tree_root
) {
465 blk_tree_root
= debugfs_create_dir("block", NULL
);
466 if (!blk_tree_root
) {
467 mutex_unlock(&blk_tree_mutex
);
471 mutex_unlock(&blk_tree_mutex
);
473 dir
= debugfs_create_dir(buts
->name
, blk_tree_root
);
480 atomic_set(&bt
->dropped
, 0);
483 bt
->dropped_file
= debugfs_create_file("dropped", 0444, dir
, bt
,
485 if (!bt
->dropped_file
)
488 bt
->msg_file
= debugfs_create_file("msg", 0222, dir
, bt
, &blk_msg_fops
);
492 bt
->rchan
= relay_open("trace", dir
, buts
->buf_size
,
493 buts
->buf_nr
, &blk_relay_callbacks
, bt
);
497 bt
->act_mask
= buts
->act_mask
;
499 bt
->act_mask
= (u16
) -1;
501 blk_trace_setup_lba(bt
, bdev
);
503 /* overwrite with user settings */
505 bt
->start_lba
= buts
->start_lba
;
507 bt
->end_lba
= buts
->end_lba
;
510 bt
->trace_state
= Blktrace_setup
;
513 old_bt
= xchg(&q
->blk_trace
, bt
);
515 (void) xchg(&q
->blk_trace
, old_bt
);
519 if (atomic_inc_return(&blk_probes_ref
) == 1)
520 blk_register_tracepoints();
528 int blk_trace_setup(struct request_queue
*q
, char *name
, dev_t dev
,
529 struct block_device
*bdev
,
532 struct blk_user_trace_setup buts
;
535 ret
= copy_from_user(&buts
, arg
, sizeof(buts
));
539 ret
= do_blk_trace_setup(q
, name
, dev
, bdev
, &buts
);
543 if (copy_to_user(arg
, &buts
, sizeof(buts
)))
548 EXPORT_SYMBOL_GPL(blk_trace_setup
);
550 int blk_trace_startstop(struct request_queue
*q
, int start
)
553 struct blk_trace
*bt
= q
->blk_trace
;
559 * For starting a trace, we can transition from a setup or stopped
560 * trace. For stopping a trace, the state must be running
564 if (bt
->trace_state
== Blktrace_setup
||
565 bt
->trace_state
== Blktrace_stopped
) {
568 bt
->trace_state
= Blktrace_running
;
574 if (bt
->trace_state
== Blktrace_running
) {
575 bt
->trace_state
= Blktrace_stopped
;
576 relay_flush(bt
->rchan
);
583 EXPORT_SYMBOL_GPL(blk_trace_startstop
);
586 * blk_trace_ioctl: - handle the ioctls associated with tracing
587 * @bdev: the block device
588 * @cmd: the ioctl cmd
589 * @arg: the argument data, if any
592 int blk_trace_ioctl(struct block_device
*bdev
, unsigned cmd
, char __user
*arg
)
594 struct request_queue
*q
;
596 char b
[BDEVNAME_SIZE
];
598 q
= bdev_get_queue(bdev
);
602 mutex_lock(&bdev
->bd_mutex
);
607 ret
= blk_trace_setup(q
, b
, bdev
->bd_dev
, bdev
, arg
);
612 ret
= blk_trace_startstop(q
, start
);
614 case BLKTRACETEARDOWN
:
615 ret
= blk_trace_remove(q
);
622 mutex_unlock(&bdev
->bd_mutex
);
627 * blk_trace_shutdown: - stop and cleanup trace structures
628 * @q: the request queue associated with the device
631 void blk_trace_shutdown(struct request_queue
*q
)
634 blk_trace_startstop(q
, 0);
644 * blk_add_trace_rq - Add a trace for a request oriented action
645 * @q: queue the io is for
646 * @rq: the source request
650 * Records an action against a request. Will log the bio offset + size.
653 static void blk_add_trace_rq(struct request_queue
*q
, struct request
*rq
,
656 struct blk_trace
*bt
= q
->blk_trace
;
657 int rw
= rq
->cmd_flags
& 0x03;
662 if (blk_discard_rq(rq
))
663 rw
|= (1 << BIO_RW_DISCARD
);
665 if (blk_pc_request(rq
)) {
666 what
|= BLK_TC_ACT(BLK_TC_PC
);
667 __blk_add_trace(bt
, 0, blk_rq_bytes(rq
), rw
,
668 what
, rq
->errors
, rq
->cmd_len
, rq
->cmd
);
670 what
|= BLK_TC_ACT(BLK_TC_FS
);
671 __blk_add_trace(bt
, blk_rq_pos(rq
), blk_rq_bytes(rq
), rw
,
672 what
, rq
->errors
, 0, NULL
);
676 static void blk_add_trace_rq_abort(struct request_queue
*q
, struct request
*rq
)
678 blk_add_trace_rq(q
, rq
, BLK_TA_ABORT
);
681 static void blk_add_trace_rq_insert(struct request_queue
*q
, struct request
*rq
)
683 blk_add_trace_rq(q
, rq
, BLK_TA_INSERT
);
686 static void blk_add_trace_rq_issue(struct request_queue
*q
, struct request
*rq
)
688 blk_add_trace_rq(q
, rq
, BLK_TA_ISSUE
);
691 static void blk_add_trace_rq_requeue(struct request_queue
*q
,
694 blk_add_trace_rq(q
, rq
, BLK_TA_REQUEUE
);
697 static void blk_add_trace_rq_complete(struct request_queue
*q
,
700 blk_add_trace_rq(q
, rq
, BLK_TA_COMPLETE
);
704 * blk_add_trace_bio - Add a trace for a bio oriented action
705 * @q: queue the io is for
706 * @bio: the source bio
710 * Records an action against a bio. Will log the bio offset + size.
713 static void blk_add_trace_bio(struct request_queue
*q
, struct bio
*bio
,
716 struct blk_trace
*bt
= q
->blk_trace
;
721 __blk_add_trace(bt
, bio
->bi_sector
, bio
->bi_size
, bio
->bi_rw
, what
,
722 !bio_flagged(bio
, BIO_UPTODATE
), 0, NULL
);
725 static void blk_add_trace_bio_bounce(struct request_queue
*q
, struct bio
*bio
)
727 blk_add_trace_bio(q
, bio
, BLK_TA_BOUNCE
);
730 static void blk_add_trace_bio_complete(struct request_queue
*q
, struct bio
*bio
)
732 blk_add_trace_bio(q
, bio
, BLK_TA_COMPLETE
);
735 static void blk_add_trace_bio_backmerge(struct request_queue
*q
,
738 blk_add_trace_bio(q
, bio
, BLK_TA_BACKMERGE
);
741 static void blk_add_trace_bio_frontmerge(struct request_queue
*q
,
744 blk_add_trace_bio(q
, bio
, BLK_TA_FRONTMERGE
);
747 static void blk_add_trace_bio_queue(struct request_queue
*q
, struct bio
*bio
)
749 blk_add_trace_bio(q
, bio
, BLK_TA_QUEUE
);
752 static void blk_add_trace_getrq(struct request_queue
*q
,
753 struct bio
*bio
, int rw
)
756 blk_add_trace_bio(q
, bio
, BLK_TA_GETRQ
);
758 struct blk_trace
*bt
= q
->blk_trace
;
761 __blk_add_trace(bt
, 0, 0, rw
, BLK_TA_GETRQ
, 0, 0, NULL
);
766 static void blk_add_trace_sleeprq(struct request_queue
*q
,
767 struct bio
*bio
, int rw
)
770 blk_add_trace_bio(q
, bio
, BLK_TA_SLEEPRQ
);
772 struct blk_trace
*bt
= q
->blk_trace
;
775 __blk_add_trace(bt
, 0, 0, rw
, BLK_TA_SLEEPRQ
,
780 static void blk_add_trace_plug(struct request_queue
*q
)
782 struct blk_trace
*bt
= q
->blk_trace
;
785 __blk_add_trace(bt
, 0, 0, 0, BLK_TA_PLUG
, 0, 0, NULL
);
788 static void blk_add_trace_unplug_io(struct request_queue
*q
)
790 struct blk_trace
*bt
= q
->blk_trace
;
793 unsigned int pdu
= q
->rq
.count
[READ
] + q
->rq
.count
[WRITE
];
794 __be64 rpdu
= cpu_to_be64(pdu
);
796 __blk_add_trace(bt
, 0, 0, 0, BLK_TA_UNPLUG_IO
, 0,
797 sizeof(rpdu
), &rpdu
);
801 static void blk_add_trace_unplug_timer(struct request_queue
*q
)
803 struct blk_trace
*bt
= q
->blk_trace
;
806 unsigned int pdu
= q
->rq
.count
[READ
] + q
->rq
.count
[WRITE
];
807 __be64 rpdu
= cpu_to_be64(pdu
);
809 __blk_add_trace(bt
, 0, 0, 0, BLK_TA_UNPLUG_TIMER
, 0,
810 sizeof(rpdu
), &rpdu
);
814 static void blk_add_trace_split(struct request_queue
*q
, struct bio
*bio
,
817 struct blk_trace
*bt
= q
->blk_trace
;
820 __be64 rpdu
= cpu_to_be64(pdu
);
822 __blk_add_trace(bt
, bio
->bi_sector
, bio
->bi_size
, bio
->bi_rw
,
823 BLK_TA_SPLIT
, !bio_flagged(bio
, BIO_UPTODATE
),
824 sizeof(rpdu
), &rpdu
);
829 * blk_add_trace_remap - Add a trace for a remap operation
830 * @q: queue the io is for
831 * @bio: the source bio
832 * @dev: target device
833 * @from: source sector
836 * Device mapper or raid target sometimes need to split a bio because
837 * it spans a stripe (or similar). Add a trace for that action.
840 static void blk_add_trace_remap(struct request_queue
*q
, struct bio
*bio
,
841 dev_t dev
, sector_t from
)
843 struct blk_trace
*bt
= q
->blk_trace
;
844 struct blk_io_trace_remap r
;
849 r
.device_from
= cpu_to_be32(dev
);
850 r
.device_to
= cpu_to_be32(bio
->bi_bdev
->bd_dev
);
851 r
.sector_from
= cpu_to_be64(from
);
853 __blk_add_trace(bt
, bio
->bi_sector
, bio
->bi_size
, bio
->bi_rw
,
854 BLK_TA_REMAP
, !bio_flagged(bio
, BIO_UPTODATE
),
859 * blk_add_driver_data - Add binary message with driver-specific data
860 * @q: queue the io is for
862 * @data: driver-specific data
863 * @len: length of driver-specific data
866 * Some drivers might want to write driver-specific data per request.
869 void blk_add_driver_data(struct request_queue
*q
,
871 void *data
, size_t len
)
873 struct blk_trace
*bt
= q
->blk_trace
;
878 if (blk_pc_request(rq
))
879 __blk_add_trace(bt
, 0, blk_rq_bytes(rq
), 0,
880 BLK_TA_DRV_DATA
, rq
->errors
, len
, data
);
882 __blk_add_trace(bt
, blk_rq_pos(rq
), blk_rq_bytes(rq
), 0,
883 BLK_TA_DRV_DATA
, rq
->errors
, len
, data
);
885 EXPORT_SYMBOL_GPL(blk_add_driver_data
);
887 static void blk_register_tracepoints(void)
891 ret
= register_trace_block_rq_abort(blk_add_trace_rq_abort
);
893 ret
= register_trace_block_rq_insert(blk_add_trace_rq_insert
);
895 ret
= register_trace_block_rq_issue(blk_add_trace_rq_issue
);
897 ret
= register_trace_block_rq_requeue(blk_add_trace_rq_requeue
);
899 ret
= register_trace_block_rq_complete(blk_add_trace_rq_complete
);
901 ret
= register_trace_block_bio_bounce(blk_add_trace_bio_bounce
);
903 ret
= register_trace_block_bio_complete(blk_add_trace_bio_complete
);
905 ret
= register_trace_block_bio_backmerge(blk_add_trace_bio_backmerge
);
907 ret
= register_trace_block_bio_frontmerge(blk_add_trace_bio_frontmerge
);
909 ret
= register_trace_block_bio_queue(blk_add_trace_bio_queue
);
911 ret
= register_trace_block_getrq(blk_add_trace_getrq
);
913 ret
= register_trace_block_sleeprq(blk_add_trace_sleeprq
);
915 ret
= register_trace_block_plug(blk_add_trace_plug
);
917 ret
= register_trace_block_unplug_timer(blk_add_trace_unplug_timer
);
919 ret
= register_trace_block_unplug_io(blk_add_trace_unplug_io
);
921 ret
= register_trace_block_split(blk_add_trace_split
);
923 ret
= register_trace_block_remap(blk_add_trace_remap
);
927 static void blk_unregister_tracepoints(void)
929 unregister_trace_block_remap(blk_add_trace_remap
);
930 unregister_trace_block_split(blk_add_trace_split
);
931 unregister_trace_block_unplug_io(blk_add_trace_unplug_io
);
932 unregister_trace_block_unplug_timer(blk_add_trace_unplug_timer
);
933 unregister_trace_block_plug(blk_add_trace_plug
);
934 unregister_trace_block_sleeprq(blk_add_trace_sleeprq
);
935 unregister_trace_block_getrq(blk_add_trace_getrq
);
936 unregister_trace_block_bio_queue(blk_add_trace_bio_queue
);
937 unregister_trace_block_bio_frontmerge(blk_add_trace_bio_frontmerge
);
938 unregister_trace_block_bio_backmerge(blk_add_trace_bio_backmerge
);
939 unregister_trace_block_bio_complete(blk_add_trace_bio_complete
);
940 unregister_trace_block_bio_bounce(blk_add_trace_bio_bounce
);
941 unregister_trace_block_rq_complete(blk_add_trace_rq_complete
);
942 unregister_trace_block_rq_requeue(blk_add_trace_rq_requeue
);
943 unregister_trace_block_rq_issue(blk_add_trace_rq_issue
);
944 unregister_trace_block_rq_insert(blk_add_trace_rq_insert
);
945 unregister_trace_block_rq_abort(blk_add_trace_rq_abort
);
947 tracepoint_synchronize_unregister();
951 * struct blk_io_tracer formatting routines
954 static void fill_rwbs(char *rwbs
, const struct blk_io_trace
*t
)
957 int tc
= t
->action
>> BLK_TC_SHIFT
;
959 if (t
->action
== BLK_TN_MESSAGE
) {
964 if (tc
& BLK_TC_DISCARD
)
966 else if (tc
& BLK_TC_WRITE
)
973 if (tc
& BLK_TC_AHEAD
)
975 if (tc
& BLK_TC_BARRIER
)
977 if (tc
& BLK_TC_SYNC
)
979 if (tc
& BLK_TC_META
)
986 const struct blk_io_trace
*te_blk_io_trace(const struct trace_entry
*ent
)
988 return (const struct blk_io_trace
*)ent
;
991 static inline const void *pdu_start(const struct trace_entry
*ent
)
993 return te_blk_io_trace(ent
) + 1;
996 static inline u32
t_action(const struct trace_entry
*ent
)
998 return te_blk_io_trace(ent
)->action
;
1001 static inline u32
t_bytes(const struct trace_entry
*ent
)
1003 return te_blk_io_trace(ent
)->bytes
;
1006 static inline u32
t_sec(const struct trace_entry
*ent
)
1008 return te_blk_io_trace(ent
)->bytes
>> 9;
1011 static inline unsigned long long t_sector(const struct trace_entry
*ent
)
1013 return te_blk_io_trace(ent
)->sector
;
1016 static inline __u16
t_error(const struct trace_entry
*ent
)
1018 return te_blk_io_trace(ent
)->error
;
1021 static __u64
get_pdu_int(const struct trace_entry
*ent
)
1023 const __u64
*val
= pdu_start(ent
);
1024 return be64_to_cpu(*val
);
1027 static void get_pdu_remap(const struct trace_entry
*ent
,
1028 struct blk_io_trace_remap
*r
)
1030 const struct blk_io_trace_remap
*__r
= pdu_start(ent
);
1031 __u64 sector_from
= __r
->sector_from
;
1033 r
->device_from
= be32_to_cpu(__r
->device_from
);
1034 r
->device_to
= be32_to_cpu(__r
->device_to
);
1035 r
->sector_from
= be64_to_cpu(sector_from
);
1038 typedef int (blk_log_action_t
) (struct trace_iterator
*iter
, const char *act
);
1040 static int blk_log_action_classic(struct trace_iterator
*iter
, const char *act
)
1043 unsigned long long ts
= iter
->ts
;
1044 unsigned long nsec_rem
= do_div(ts
, NSEC_PER_SEC
);
1045 unsigned secs
= (unsigned long)ts
;
1046 const struct blk_io_trace
*t
= te_blk_io_trace(iter
->ent
);
1050 return trace_seq_printf(&iter
->seq
,
1051 "%3d,%-3d %2d %5d.%09lu %5u %2s %3s ",
1052 MAJOR(t
->device
), MINOR(t
->device
), iter
->cpu
,
1053 secs
, nsec_rem
, iter
->ent
->pid
, act
, rwbs
);
1056 static int blk_log_action(struct trace_iterator
*iter
, const char *act
)
1059 const struct blk_io_trace
*t
= te_blk_io_trace(iter
->ent
);
1062 return trace_seq_printf(&iter
->seq
, "%3d,%-3d %2s %3s ",
1063 MAJOR(t
->device
), MINOR(t
->device
), act
, rwbs
);
1066 static int blk_log_dump_pdu(struct trace_seq
*s
, const struct trace_entry
*ent
)
1068 const unsigned char *pdu_buf
;
1072 pdu_buf
= pdu_start(ent
);
1073 pdu_len
= te_blk_io_trace(ent
)->pdu_len
;
1078 /* find the last zero that needs to be printed */
1079 for (end
= pdu_len
- 1; end
>= 0; end
--)
1084 if (!trace_seq_putc(s
, '('))
1087 for (i
= 0; i
< pdu_len
; i
++) {
1089 ret
= trace_seq_printf(s
, "%s%02x",
1090 i
== 0 ? "" : " ", pdu_buf
[i
]);
1095 * stop when the rest is just zeroes and indicate so
1096 * with a ".." appended
1098 if (i
== end
&& end
!= pdu_len
- 1)
1099 return trace_seq_puts(s
, " ..) ");
1102 return trace_seq_puts(s
, ") ");
1105 static int blk_log_generic(struct trace_seq
*s
, const struct trace_entry
*ent
)
1107 char cmd
[TASK_COMM_LEN
];
1109 trace_find_cmdline(ent
->pid
, cmd
);
1111 if (t_action(ent
) & BLK_TC_ACT(BLK_TC_PC
)) {
1114 ret
= trace_seq_printf(s
, "%u ", t_bytes(ent
));
1117 ret
= blk_log_dump_pdu(s
, ent
);
1120 return trace_seq_printf(s
, "[%s]\n", cmd
);
1123 return trace_seq_printf(s
, "%llu + %u [%s]\n",
1124 t_sector(ent
), t_sec(ent
), cmd
);
1125 return trace_seq_printf(s
, "[%s]\n", cmd
);
1129 static int blk_log_with_error(struct trace_seq
*s
,
1130 const struct trace_entry
*ent
)
1132 if (t_action(ent
) & BLK_TC_ACT(BLK_TC_PC
)) {
1135 ret
= blk_log_dump_pdu(s
, ent
);
1137 return trace_seq_printf(s
, "[%d]\n", t_error(ent
));
1141 return trace_seq_printf(s
, "%llu + %u [%d]\n",
1143 t_sec(ent
), t_error(ent
));
1144 return trace_seq_printf(s
, "%llu [%d]\n",
1145 t_sector(ent
), t_error(ent
));
1149 static int blk_log_remap(struct trace_seq
*s
, const struct trace_entry
*ent
)
1151 struct blk_io_trace_remap r
= { .device_from
= 0, };
1153 get_pdu_remap(ent
, &r
);
1154 return trace_seq_printf(s
, "%llu + %u <- (%d,%d) %llu\n",
1155 t_sector(ent
), t_sec(ent
),
1156 MAJOR(r
.device_from
), MINOR(r
.device_from
),
1157 (unsigned long long)r
.sector_from
);
1160 static int blk_log_plug(struct trace_seq
*s
, const struct trace_entry
*ent
)
1162 char cmd
[TASK_COMM_LEN
];
1164 trace_find_cmdline(ent
->pid
, cmd
);
1166 return trace_seq_printf(s
, "[%s]\n", cmd
);
1169 static int blk_log_unplug(struct trace_seq
*s
, const struct trace_entry
*ent
)
1171 char cmd
[TASK_COMM_LEN
];
1173 trace_find_cmdline(ent
->pid
, cmd
);
1175 return trace_seq_printf(s
, "[%s] %llu\n", cmd
, get_pdu_int(ent
));
1178 static int blk_log_split(struct trace_seq
*s
, const struct trace_entry
*ent
)
1180 char cmd
[TASK_COMM_LEN
];
1182 trace_find_cmdline(ent
->pid
, cmd
);
1184 return trace_seq_printf(s
, "%llu / %llu [%s]\n", t_sector(ent
),
1185 get_pdu_int(ent
), cmd
);
1188 static int blk_log_msg(struct trace_seq
*s
, const struct trace_entry
*ent
)
1191 const struct blk_io_trace
*t
= te_blk_io_trace(ent
);
1193 ret
= trace_seq_putmem(s
, t
+ 1, t
->pdu_len
);
1195 return trace_seq_putc(s
, '\n');
1200 * struct tracer operations
1203 static void blk_tracer_print_header(struct seq_file
*m
)
1205 if (!(blk_tracer_flags
.val
& TRACE_BLK_OPT_CLASSIC
))
1207 seq_puts(m
, "# DEV CPU TIMESTAMP PID ACT FLG\n"
1211 static void blk_tracer_start(struct trace_array
*tr
)
1213 blk_tracer_enabled
= true;
1216 static int blk_tracer_init(struct trace_array
*tr
)
1219 blk_tracer_start(tr
);
1223 static void blk_tracer_stop(struct trace_array
*tr
)
1225 blk_tracer_enabled
= false;
1228 static void blk_tracer_reset(struct trace_array
*tr
)
1230 blk_tracer_stop(tr
);
1233 static const struct {
1235 int (*print
)(struct trace_seq
*s
, const struct trace_entry
*ent
);
1237 [__BLK_TA_QUEUE
] = {{ "Q", "queue" }, blk_log_generic
},
1238 [__BLK_TA_BACKMERGE
] = {{ "M", "backmerge" }, blk_log_generic
},
1239 [__BLK_TA_FRONTMERGE
] = {{ "F", "frontmerge" }, blk_log_generic
},
1240 [__BLK_TA_GETRQ
] = {{ "G", "getrq" }, blk_log_generic
},
1241 [__BLK_TA_SLEEPRQ
] = {{ "S", "sleeprq" }, blk_log_generic
},
1242 [__BLK_TA_REQUEUE
] = {{ "R", "requeue" }, blk_log_with_error
},
1243 [__BLK_TA_ISSUE
] = {{ "D", "issue" }, blk_log_generic
},
1244 [__BLK_TA_COMPLETE
] = {{ "C", "complete" }, blk_log_with_error
},
1245 [__BLK_TA_PLUG
] = {{ "P", "plug" }, blk_log_plug
},
1246 [__BLK_TA_UNPLUG_IO
] = {{ "U", "unplug_io" }, blk_log_unplug
},
1247 [__BLK_TA_UNPLUG_TIMER
] = {{ "UT", "unplug_timer" }, blk_log_unplug
},
1248 [__BLK_TA_INSERT
] = {{ "I", "insert" }, blk_log_generic
},
1249 [__BLK_TA_SPLIT
] = {{ "X", "split" }, blk_log_split
},
1250 [__BLK_TA_BOUNCE
] = {{ "B", "bounce" }, blk_log_generic
},
1251 [__BLK_TA_REMAP
] = {{ "A", "remap" }, blk_log_remap
},
1254 static enum print_line_t
print_one_line(struct trace_iterator
*iter
,
1257 struct trace_seq
*s
= &iter
->seq
;
1258 const struct blk_io_trace
*t
;
1262 blk_log_action_t
*log_action
;
1264 t
= te_blk_io_trace(iter
->ent
);
1265 what
= t
->action
& ((1 << BLK_TC_SHIFT
) - 1);
1266 long_act
= !!(trace_flags
& TRACE_ITER_VERBOSE
);
1267 log_action
= classic
? &blk_log_action_classic
: &blk_log_action
;
1269 if (t
->action
== BLK_TN_MESSAGE
) {
1270 ret
= log_action(iter
, long_act
? "message" : "m");
1272 ret
= blk_log_msg(s
, iter
->ent
);
1276 if (unlikely(what
== 0 || what
>= ARRAY_SIZE(what2act
)))
1277 ret
= trace_seq_printf(s
, "Unknown action %x\n", what
);
1279 ret
= log_action(iter
, what2act
[what
].act
[long_act
]);
1281 ret
= what2act
[what
].print(s
, iter
->ent
);
1284 return ret
? TRACE_TYPE_HANDLED
: TRACE_TYPE_PARTIAL_LINE
;
1287 static enum print_line_t
blk_trace_event_print(struct trace_iterator
*iter
,
1290 return print_one_line(iter
, false);
1293 static int blk_trace_synthesize_old_trace(struct trace_iterator
*iter
)
1295 struct trace_seq
*s
= &iter
->seq
;
1296 struct blk_io_trace
*t
= (struct blk_io_trace
*)iter
->ent
;
1297 const int offset
= offsetof(struct blk_io_trace
, sector
);
1298 struct blk_io_trace old
= {
1299 .magic
= BLK_IO_TRACE_MAGIC
| BLK_IO_TRACE_VERSION
,
1303 if (!trace_seq_putmem(s
, &old
, offset
))
1305 return trace_seq_putmem(s
, &t
->sector
,
1306 sizeof(old
) - offset
+ t
->pdu_len
);
1309 static enum print_line_t
1310 blk_trace_event_print_binary(struct trace_iterator
*iter
, int flags
)
1312 return blk_trace_synthesize_old_trace(iter
) ?
1313 TRACE_TYPE_HANDLED
: TRACE_TYPE_PARTIAL_LINE
;
1316 static enum print_line_t
blk_tracer_print_line(struct trace_iterator
*iter
)
1318 if (!(blk_tracer_flags
.val
& TRACE_BLK_OPT_CLASSIC
))
1319 return TRACE_TYPE_UNHANDLED
;
1321 return print_one_line(iter
, true);
1324 static int blk_tracer_set_flag(u32 old_flags
, u32 bit
, int set
)
1326 /* don't output context-info for blk_classic output */
1327 if (bit
== TRACE_BLK_OPT_CLASSIC
) {
1329 trace_flags
&= ~TRACE_ITER_CONTEXT_INFO
;
1331 trace_flags
|= TRACE_ITER_CONTEXT_INFO
;
1336 static struct tracer blk_tracer __read_mostly
= {
1338 .init
= blk_tracer_init
,
1339 .reset
= blk_tracer_reset
,
1340 .start
= blk_tracer_start
,
1341 .stop
= blk_tracer_stop
,
1342 .print_header
= blk_tracer_print_header
,
1343 .print_line
= blk_tracer_print_line
,
1344 .flags
= &blk_tracer_flags
,
1345 .set_flag
= blk_tracer_set_flag
,
1348 static struct trace_event trace_blk_event
= {
1350 .trace
= blk_trace_event_print
,
1351 .binary
= blk_trace_event_print_binary
,
1354 static int __init
init_blk_tracer(void)
1356 if (!register_ftrace_event(&trace_blk_event
)) {
1357 pr_warning("Warning: could not register block events\n");
1361 if (register_tracer(&blk_tracer
) != 0) {
1362 pr_warning("Warning: could not register the block tracer\n");
1363 unregister_ftrace_event(&trace_blk_event
);
1370 device_initcall(init_blk_tracer
);
1372 static int blk_trace_remove_queue(struct request_queue
*q
)
1374 struct blk_trace
*bt
;
1376 bt
= xchg(&q
->blk_trace
, NULL
);
1380 if (atomic_dec_and_test(&blk_probes_ref
))
1381 blk_unregister_tracepoints();
1388 * Setup everything required to start tracing
1390 static int blk_trace_setup_queue(struct request_queue
*q
,
1391 struct block_device
*bdev
)
1393 struct blk_trace
*old_bt
, *bt
= NULL
;
1396 bt
= kzalloc(sizeof(*bt
), GFP_KERNEL
);
1400 bt
->msg_data
= __alloc_percpu(BLK_TN_MAX_MSG
, __alignof__(char));
1404 bt
->dev
= bdev
->bd_dev
;
1405 bt
->act_mask
= (u16
)-1;
1407 blk_trace_setup_lba(bt
, bdev
);
1409 old_bt
= xchg(&q
->blk_trace
, bt
);
1410 if (old_bt
!= NULL
) {
1411 (void)xchg(&q
->blk_trace
, old_bt
);
1416 if (atomic_inc_return(&blk_probes_ref
) == 1)
1417 blk_register_tracepoints();
1426 * sysfs interface to enable and configure tracing
1429 static ssize_t
sysfs_blk_trace_attr_show(struct device
*dev
,
1430 struct device_attribute
*attr
,
1432 static ssize_t
sysfs_blk_trace_attr_store(struct device
*dev
,
1433 struct device_attribute
*attr
,
1434 const char *buf
, size_t count
);
1435 #define BLK_TRACE_DEVICE_ATTR(_name) \
1436 DEVICE_ATTR(_name, S_IRUGO | S_IWUSR, \
1437 sysfs_blk_trace_attr_show, \
1438 sysfs_blk_trace_attr_store)
1440 static BLK_TRACE_DEVICE_ATTR(enable
);
1441 static BLK_TRACE_DEVICE_ATTR(act_mask
);
1442 static BLK_TRACE_DEVICE_ATTR(pid
);
1443 static BLK_TRACE_DEVICE_ATTR(start_lba
);
1444 static BLK_TRACE_DEVICE_ATTR(end_lba
);
1446 static struct attribute
*blk_trace_attrs
[] = {
1447 &dev_attr_enable
.attr
,
1448 &dev_attr_act_mask
.attr
,
1450 &dev_attr_start_lba
.attr
,
1451 &dev_attr_end_lba
.attr
,
1455 struct attribute_group blk_trace_attr_group
= {
1457 .attrs
= blk_trace_attrs
,
1460 static const struct {
1464 { BLK_TC_READ
, "read" },
1465 { BLK_TC_WRITE
, "write" },
1466 { BLK_TC_BARRIER
, "barrier" },
1467 { BLK_TC_SYNC
, "sync" },
1468 { BLK_TC_QUEUE
, "queue" },
1469 { BLK_TC_REQUEUE
, "requeue" },
1470 { BLK_TC_ISSUE
, "issue" },
1471 { BLK_TC_COMPLETE
, "complete" },
1472 { BLK_TC_FS
, "fs" },
1473 { BLK_TC_PC
, "pc" },
1474 { BLK_TC_AHEAD
, "ahead" },
1475 { BLK_TC_META
, "meta" },
1476 { BLK_TC_DISCARD
, "discard" },
1477 { BLK_TC_DRV_DATA
, "drv_data" },
1480 static int blk_trace_str2mask(const char *str
)
1484 char *buf
, *s
, *token
;
1486 buf
= kstrdup(str
, GFP_KERNEL
);
1492 token
= strsep(&s
, ",");
1499 for (i
= 0; i
< ARRAY_SIZE(mask_maps
); i
++) {
1500 if (strcasecmp(token
, mask_maps
[i
].str
) == 0) {
1501 mask
|= mask_maps
[i
].mask
;
1505 if (i
== ARRAY_SIZE(mask_maps
)) {
1515 static ssize_t
blk_trace_mask2str(char *buf
, int mask
)
1520 for (i
= 0; i
< ARRAY_SIZE(mask_maps
); i
++) {
1521 if (mask
& mask_maps
[i
].mask
) {
1522 p
+= sprintf(p
, "%s%s",
1523 (p
== buf
) ? "" : ",", mask_maps
[i
].str
);
1531 static struct request_queue
*blk_trace_get_queue(struct block_device
*bdev
)
1533 if (bdev
->bd_disk
== NULL
)
1536 return bdev_get_queue(bdev
);
1539 static ssize_t
sysfs_blk_trace_attr_show(struct device
*dev
,
1540 struct device_attribute
*attr
,
1543 struct hd_struct
*p
= dev_to_part(dev
);
1544 struct request_queue
*q
;
1545 struct block_device
*bdev
;
1546 ssize_t ret
= -ENXIO
;
1549 bdev
= bdget(part_devt(p
));
1551 goto out_unlock_kernel
;
1553 q
= blk_trace_get_queue(bdev
);
1557 mutex_lock(&bdev
->bd_mutex
);
1559 if (attr
== &dev_attr_enable
) {
1560 ret
= sprintf(buf
, "%u\n", !!q
->blk_trace
);
1561 goto out_unlock_bdev
;
1564 if (q
->blk_trace
== NULL
)
1565 ret
= sprintf(buf
, "disabled\n");
1566 else if (attr
== &dev_attr_act_mask
)
1567 ret
= blk_trace_mask2str(buf
, q
->blk_trace
->act_mask
);
1568 else if (attr
== &dev_attr_pid
)
1569 ret
= sprintf(buf
, "%u\n", q
->blk_trace
->pid
);
1570 else if (attr
== &dev_attr_start_lba
)
1571 ret
= sprintf(buf
, "%llu\n", q
->blk_trace
->start_lba
);
1572 else if (attr
== &dev_attr_end_lba
)
1573 ret
= sprintf(buf
, "%llu\n", q
->blk_trace
->end_lba
);
1576 mutex_unlock(&bdev
->bd_mutex
);
1584 static ssize_t
sysfs_blk_trace_attr_store(struct device
*dev
,
1585 struct device_attribute
*attr
,
1586 const char *buf
, size_t count
)
1588 struct block_device
*bdev
;
1589 struct request_queue
*q
;
1590 struct hd_struct
*p
;
1592 ssize_t ret
= -EINVAL
;
1597 if (attr
== &dev_attr_act_mask
) {
1598 if (sscanf(buf
, "%llx", &value
) != 1) {
1599 /* Assume it is a list of trace category names */
1600 ret
= blk_trace_str2mask(buf
);
1605 } else if (sscanf(buf
, "%llu", &value
) != 1)
1611 p
= dev_to_part(dev
);
1612 bdev
= bdget(part_devt(p
));
1614 goto out_unlock_kernel
;
1616 q
= blk_trace_get_queue(bdev
);
1620 mutex_lock(&bdev
->bd_mutex
);
1622 if (attr
== &dev_attr_enable
) {
1624 ret
= blk_trace_setup_queue(q
, bdev
);
1626 ret
= blk_trace_remove_queue(q
);
1627 goto out_unlock_bdev
;
1631 if (q
->blk_trace
== NULL
)
1632 ret
= blk_trace_setup_queue(q
, bdev
);
1635 if (attr
== &dev_attr_act_mask
)
1636 q
->blk_trace
->act_mask
= value
;
1637 else if (attr
== &dev_attr_pid
)
1638 q
->blk_trace
->pid
= value
;
1639 else if (attr
== &dev_attr_start_lba
)
1640 q
->blk_trace
->start_lba
= value
;
1641 else if (attr
== &dev_attr_end_lba
)
1642 q
->blk_trace
->end_lba
= value
;
1646 mutex_unlock(&bdev
->bd_mutex
);
1652 return ret
? ret
: count
;
1655 int blk_trace_init_sysfs(struct device
*dev
)
1657 return sysfs_create_group(&dev
->kobj
, &blk_trace_attr_group
);
1660 #endif /* CONFIG_BLK_DEV_IO_TRACE */
1662 #ifdef CONFIG_EVENT_TRACING
1664 void blk_dump_cmd(char *buf
, struct request
*rq
)
1667 int len
= rq
->cmd_len
;
1668 unsigned char *cmd
= rq
->cmd
;
1670 if (!blk_pc_request(rq
)) {
1675 for (end
= len
- 1; end
>= 0; end
--)
1680 for (i
= 0; i
< len
; i
++) {
1681 buf
+= sprintf(buf
, "%s%02x", i
== 0 ? "" : " ", cmd
[i
]);
1682 if (i
== end
&& end
!= len
- 1) {
1683 sprintf(buf
, " ..");
1689 void blk_fill_rwbs(char *rwbs
, u32 rw
, int bytes
)
1695 else if (rw
& 1 << BIO_RW_DISCARD
)
1702 if (rw
& 1 << BIO_RW_AHEAD
)
1704 if (rw
& 1 << BIO_RW_BARRIER
)
1706 if (rw
& 1 << BIO_RW_SYNCIO
)
1708 if (rw
& 1 << BIO_RW_META
)
1714 void blk_fill_rwbs_rq(char *rwbs
, struct request
*rq
)
1716 int rw
= rq
->cmd_flags
& 0x03;
1719 if (blk_discard_rq(rq
))
1720 rw
|= (1 << BIO_RW_DISCARD
);
1722 bytes
= blk_rq_bytes(rq
);
1724 blk_fill_rwbs(rwbs
, rw
, bytes
);
1727 #endif /* CONFIG_EVENT_TRACING */