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/slab.h>
25 #include <linux/debugfs.h>
26 #include <linux/smp_lock.h>
27 #include <linux/time.h>
28 #include <linux/uaccess.h>
30 #include <trace/events/block.h>
32 #include "trace_output.h"
34 #ifdef CONFIG_BLK_DEV_IO_TRACE
36 static unsigned int blktrace_seq __read_mostly
= 1;
38 static struct trace_array
*blk_tr
;
39 static bool blk_tracer_enabled __read_mostly
;
41 /* Select an alternative, minimalistic output than the original one */
42 #define TRACE_BLK_OPT_CLASSIC 0x1
44 static struct tracer_opt blk_tracer_opts
[] = {
45 /* Default disable the minimalistic output */
46 { TRACER_OPT(blk_classic
, TRACE_BLK_OPT_CLASSIC
) },
50 static struct tracer_flags blk_tracer_flags
= {
52 .opts
= blk_tracer_opts
,
55 /* Global reference count of probes */
56 static atomic_t blk_probes_ref
= ATOMIC_INIT(0);
58 static void blk_register_tracepoints(void);
59 static void blk_unregister_tracepoints(void);
62 * Send out a notify message.
64 static void trace_note(struct blk_trace
*bt
, pid_t pid
, int action
,
65 const void *data
, size_t len
)
67 struct blk_io_trace
*t
;
68 struct ring_buffer_event
*event
= NULL
;
69 struct ring_buffer
*buffer
= NULL
;
71 int cpu
= smp_processor_id();
72 bool blk_tracer
= blk_tracer_enabled
;
75 buffer
= blk_tr
->buffer
;
77 event
= trace_buffer_lock_reserve(buffer
, TRACE_BLK
,
82 t
= ring_buffer_event_data(event
);
89 t
= relay_reserve(bt
->rchan
, sizeof(*t
) + len
);
91 t
->magic
= BLK_IO_TRACE_MAGIC
| BLK_IO_TRACE_VERSION
;
92 t
->time
= ktime_to_ns(ktime_get());
99 memcpy((void *) t
+ sizeof(*t
), data
, len
);
102 trace_buffer_unlock_commit(buffer
, event
, 0, pc
);
107 * Send out a notify for this process, if we haven't done so since a trace
110 static void trace_note_tsk(struct blk_trace
*bt
, struct task_struct
*tsk
)
112 tsk
->btrace_seq
= blktrace_seq
;
113 trace_note(bt
, tsk
->pid
, BLK_TN_PROCESS
, tsk
->comm
, sizeof(tsk
->comm
));
116 static void trace_note_time(struct blk_trace
*bt
)
122 getnstimeofday(&now
);
123 words
[0] = now
.tv_sec
;
124 words
[1] = now
.tv_nsec
;
126 local_irq_save(flags
);
127 trace_note(bt
, 0, BLK_TN_TIMESTAMP
, words
, sizeof(words
));
128 local_irq_restore(flags
);
131 void __trace_note_message(struct blk_trace
*bt
, const char *fmt
, ...)
138 if (unlikely(bt
->trace_state
!= Blktrace_running
&&
139 !blk_tracer_enabled
))
142 local_irq_save(flags
);
143 buf
= per_cpu_ptr(bt
->msg_data
, smp_processor_id());
145 n
= vscnprintf(buf
, BLK_TN_MAX_MSG
, fmt
, args
);
148 trace_note(bt
, 0, BLK_TN_MESSAGE
, buf
, n
);
149 local_irq_restore(flags
);
151 EXPORT_SYMBOL_GPL(__trace_note_message
);
153 static int act_log_check(struct blk_trace
*bt
, u32 what
, sector_t sector
,
156 if (((bt
->act_mask
<< BLK_TC_SHIFT
) & what
) == 0)
158 if (sector
&& (sector
< bt
->start_lba
|| sector
> bt
->end_lba
))
160 if (bt
->pid
&& pid
!= bt
->pid
)
167 * Data direction bit lookup
169 static const u32 ddir_act
[2] = { BLK_TC_ACT(BLK_TC_READ
),
170 BLK_TC_ACT(BLK_TC_WRITE
) };
172 /* The ilog2() calls fall out because they're constant */
173 #define MASK_TC_BIT(rw, __name) ((rw & (1 << BIO_RW_ ## __name)) << \
174 (ilog2(BLK_TC_ ## __name) + BLK_TC_SHIFT - BIO_RW_ ## __name))
177 * The worker for the various blk_add_trace*() types. Fills out a
178 * blk_io_trace structure and places it in a per-cpu subbuffer.
180 static void __blk_add_trace(struct blk_trace
*bt
, sector_t sector
, int bytes
,
181 int rw
, u32 what
, int error
, int pdu_len
, void *pdu_data
)
183 struct task_struct
*tsk
= current
;
184 struct ring_buffer_event
*event
= NULL
;
185 struct ring_buffer
*buffer
= NULL
;
186 struct blk_io_trace
*t
;
187 unsigned long flags
= 0;
188 unsigned long *sequence
;
191 bool blk_tracer
= blk_tracer_enabled
;
193 if (unlikely(bt
->trace_state
!= Blktrace_running
&& !blk_tracer
))
196 what
|= ddir_act
[rw
& WRITE
];
197 what
|= MASK_TC_BIT(rw
, BARRIER
);
198 what
|= MASK_TC_BIT(rw
, SYNCIO
);
199 what
|= MASK_TC_BIT(rw
, AHEAD
);
200 what
|= MASK_TC_BIT(rw
, META
);
201 what
|= MASK_TC_BIT(rw
, DISCARD
);
204 if (act_log_check(bt
, what
, sector
, pid
))
206 cpu
= raw_smp_processor_id();
209 tracing_record_cmdline(current
);
211 buffer
= blk_tr
->buffer
;
212 pc
= preempt_count();
213 event
= trace_buffer_lock_reserve(buffer
, TRACE_BLK
,
214 sizeof(*t
) + pdu_len
,
218 t
= ring_buffer_event_data(event
);
223 * A word about the locking here - we disable interrupts to reserve
224 * some space in the relay per-cpu buffer, to prevent an irq
225 * from coming in and stepping on our toes.
227 local_irq_save(flags
);
229 if (unlikely(tsk
->btrace_seq
!= blktrace_seq
))
230 trace_note_tsk(bt
, tsk
);
232 t
= relay_reserve(bt
->rchan
, sizeof(*t
) + pdu_len
);
234 sequence
= per_cpu_ptr(bt
->sequence
, cpu
);
236 t
->magic
= BLK_IO_TRACE_MAGIC
| BLK_IO_TRACE_VERSION
;
237 t
->sequence
= ++(*sequence
);
238 t
->time
= ktime_to_ns(ktime_get());
241 * These two are not needed in ftrace as they are in the
242 * generic trace_entry, filled by tracing_generic_entry_update,
243 * but for the trace_event->bin() synthesizer benefit we do it
254 t
->pdu_len
= pdu_len
;
257 memcpy((void *) t
+ sizeof(*t
), pdu_data
, pdu_len
);
260 trace_buffer_unlock_commit(buffer
, event
, 0, pc
);
265 local_irq_restore(flags
);
268 static struct dentry
*blk_tree_root
;
269 static DEFINE_MUTEX(blk_tree_mutex
);
271 static void blk_trace_free(struct blk_trace
*bt
)
273 debugfs_remove(bt
->msg_file
);
274 debugfs_remove(bt
->dropped_file
);
275 relay_close(bt
->rchan
);
276 debugfs_remove(bt
->dir
);
277 free_percpu(bt
->sequence
);
278 free_percpu(bt
->msg_data
);
282 static void blk_trace_cleanup(struct blk_trace
*bt
)
285 if (atomic_dec_and_test(&blk_probes_ref
))
286 blk_unregister_tracepoints();
289 int blk_trace_remove(struct request_queue
*q
)
291 struct blk_trace
*bt
;
293 bt
= xchg(&q
->blk_trace
, NULL
);
297 if (bt
->trace_state
!= Blktrace_running
)
298 blk_trace_cleanup(bt
);
302 EXPORT_SYMBOL_GPL(blk_trace_remove
);
304 static int blk_dropped_open(struct inode
*inode
, struct file
*filp
)
306 filp
->private_data
= inode
->i_private
;
311 static ssize_t
blk_dropped_read(struct file
*filp
, char __user
*buffer
,
312 size_t count
, loff_t
*ppos
)
314 struct blk_trace
*bt
= filp
->private_data
;
317 snprintf(buf
, sizeof(buf
), "%u\n", atomic_read(&bt
->dropped
));
319 return simple_read_from_buffer(buffer
, count
, ppos
, buf
, strlen(buf
));
322 static const struct file_operations blk_dropped_fops
= {
323 .owner
= THIS_MODULE
,
324 .open
= blk_dropped_open
,
325 .read
= blk_dropped_read
,
328 static int blk_msg_open(struct inode
*inode
, struct file
*filp
)
330 filp
->private_data
= inode
->i_private
;
335 static ssize_t
blk_msg_write(struct file
*filp
, const char __user
*buffer
,
336 size_t count
, loff_t
*ppos
)
339 struct blk_trace
*bt
;
341 if (count
>= BLK_TN_MAX_MSG
)
344 msg
= kmalloc(count
+ 1, GFP_KERNEL
);
348 if (copy_from_user(msg
, buffer
, count
)) {
354 bt
= filp
->private_data
;
355 __trace_note_message(bt
, "%s", msg
);
361 static const struct file_operations blk_msg_fops
= {
362 .owner
= THIS_MODULE
,
363 .open
= blk_msg_open
,
364 .write
= blk_msg_write
,
368 * Keep track of how many times we encountered a full subbuffer, to aid
369 * the user space app in telling how many lost events there were.
371 static int blk_subbuf_start_callback(struct rchan_buf
*buf
, void *subbuf
,
372 void *prev_subbuf
, size_t prev_padding
)
374 struct blk_trace
*bt
;
376 if (!relay_buf_full(buf
))
379 bt
= buf
->chan
->private_data
;
380 atomic_inc(&bt
->dropped
);
384 static int blk_remove_buf_file_callback(struct dentry
*dentry
)
386 debugfs_remove(dentry
);
391 static struct dentry
*blk_create_buf_file_callback(const char *filename
,
392 struct dentry
*parent
,
394 struct rchan_buf
*buf
,
397 return debugfs_create_file(filename
, mode
, parent
, buf
,
398 &relay_file_operations
);
401 static struct rchan_callbacks blk_relay_callbacks
= {
402 .subbuf_start
= blk_subbuf_start_callback
,
403 .create_buf_file
= blk_create_buf_file_callback
,
404 .remove_buf_file
= blk_remove_buf_file_callback
,
407 static void blk_trace_setup_lba(struct blk_trace
*bt
,
408 struct block_device
*bdev
)
410 struct hd_struct
*part
= NULL
;
413 part
= bdev
->bd_part
;
416 bt
->start_lba
= part
->start_sect
;
417 bt
->end_lba
= part
->start_sect
+ part
->nr_sects
;
425 * Setup everything required to start tracing
427 int do_blk_trace_setup(struct request_queue
*q
, char *name
, dev_t dev
,
428 struct block_device
*bdev
,
429 struct blk_user_trace_setup
*buts
)
431 struct blk_trace
*old_bt
, *bt
= NULL
;
432 struct dentry
*dir
= NULL
;
435 if (!buts
->buf_size
|| !buts
->buf_nr
)
438 strncpy(buts
->name
, name
, BLKTRACE_BDEV_SIZE
);
439 buts
->name
[BLKTRACE_BDEV_SIZE
- 1] = '\0';
442 * some device names have larger paths - convert the slashes
443 * to underscores for this to work as expected
445 for (i
= 0; i
< strlen(buts
->name
); i
++)
446 if (buts
->name
[i
] == '/')
449 bt
= kzalloc(sizeof(*bt
), GFP_KERNEL
);
454 bt
->sequence
= alloc_percpu(unsigned long);
458 bt
->msg_data
= __alloc_percpu(BLK_TN_MAX_MSG
, __alignof__(char));
464 mutex_lock(&blk_tree_mutex
);
465 if (!blk_tree_root
) {
466 blk_tree_root
= debugfs_create_dir("block", NULL
);
467 if (!blk_tree_root
) {
468 mutex_unlock(&blk_tree_mutex
);
472 mutex_unlock(&blk_tree_mutex
);
474 dir
= debugfs_create_dir(buts
->name
, blk_tree_root
);
481 atomic_set(&bt
->dropped
, 0);
484 bt
->dropped_file
= debugfs_create_file("dropped", 0444, dir
, bt
,
486 if (!bt
->dropped_file
)
489 bt
->msg_file
= debugfs_create_file("msg", 0222, dir
, bt
, &blk_msg_fops
);
493 bt
->rchan
= relay_open("trace", dir
, buts
->buf_size
,
494 buts
->buf_nr
, &blk_relay_callbacks
, bt
);
498 bt
->act_mask
= buts
->act_mask
;
500 bt
->act_mask
= (u16
) -1;
502 blk_trace_setup_lba(bt
, bdev
);
504 /* overwrite with user settings */
506 bt
->start_lba
= buts
->start_lba
;
508 bt
->end_lba
= buts
->end_lba
;
511 bt
->trace_state
= Blktrace_setup
;
514 old_bt
= xchg(&q
->blk_trace
, bt
);
516 (void) xchg(&q
->blk_trace
, old_bt
);
520 if (atomic_inc_return(&blk_probes_ref
) == 1)
521 blk_register_tracepoints();
529 int blk_trace_setup(struct request_queue
*q
, char *name
, dev_t dev
,
530 struct block_device
*bdev
,
533 struct blk_user_trace_setup buts
;
536 ret
= copy_from_user(&buts
, arg
, sizeof(buts
));
540 ret
= do_blk_trace_setup(q
, name
, dev
, bdev
, &buts
);
544 if (copy_to_user(arg
, &buts
, sizeof(buts
))) {
550 EXPORT_SYMBOL_GPL(blk_trace_setup
);
552 int blk_trace_startstop(struct request_queue
*q
, int start
)
555 struct blk_trace
*bt
= q
->blk_trace
;
561 * For starting a trace, we can transition from a setup or stopped
562 * trace. For stopping a trace, the state must be running
566 if (bt
->trace_state
== Blktrace_setup
||
567 bt
->trace_state
== Blktrace_stopped
) {
570 bt
->trace_state
= Blktrace_running
;
576 if (bt
->trace_state
== Blktrace_running
) {
577 bt
->trace_state
= Blktrace_stopped
;
578 relay_flush(bt
->rchan
);
585 EXPORT_SYMBOL_GPL(blk_trace_startstop
);
588 * blk_trace_ioctl: - handle the ioctls associated with tracing
589 * @bdev: the block device
590 * @cmd: the ioctl cmd
591 * @arg: the argument data, if any
594 int blk_trace_ioctl(struct block_device
*bdev
, unsigned cmd
, char __user
*arg
)
596 struct request_queue
*q
;
598 char b
[BDEVNAME_SIZE
];
600 q
= bdev_get_queue(bdev
);
604 mutex_lock(&bdev
->bd_mutex
);
609 ret
= blk_trace_setup(q
, b
, bdev
->bd_dev
, bdev
, arg
);
614 ret
= blk_trace_startstop(q
, start
);
616 case BLKTRACETEARDOWN
:
617 ret
= blk_trace_remove(q
);
624 mutex_unlock(&bdev
->bd_mutex
);
629 * blk_trace_shutdown: - stop and cleanup trace structures
630 * @q: the request queue associated with the device
633 void blk_trace_shutdown(struct request_queue
*q
)
636 blk_trace_startstop(q
, 0);
646 * blk_add_trace_rq - Add a trace for a request oriented action
647 * @q: queue the io is for
648 * @rq: the source request
652 * Records an action against a request. Will log the bio offset + size.
655 static void blk_add_trace_rq(struct request_queue
*q
, struct request
*rq
,
658 struct blk_trace
*bt
= q
->blk_trace
;
659 int rw
= rq
->cmd_flags
& 0x03;
664 if (blk_discard_rq(rq
))
665 rw
|= (1 << BIO_RW_DISCARD
);
667 if (blk_pc_request(rq
)) {
668 what
|= BLK_TC_ACT(BLK_TC_PC
);
669 __blk_add_trace(bt
, 0, blk_rq_bytes(rq
), rw
,
670 what
, rq
->errors
, rq
->cmd_len
, rq
->cmd
);
672 what
|= BLK_TC_ACT(BLK_TC_FS
);
673 __blk_add_trace(bt
, blk_rq_pos(rq
), blk_rq_bytes(rq
), rw
,
674 what
, rq
->errors
, 0, NULL
);
678 static void blk_add_trace_rq_abort(struct request_queue
*q
, struct request
*rq
)
680 blk_add_trace_rq(q
, rq
, BLK_TA_ABORT
);
683 static void blk_add_trace_rq_insert(struct request_queue
*q
, struct request
*rq
)
685 blk_add_trace_rq(q
, rq
, BLK_TA_INSERT
);
688 static void blk_add_trace_rq_issue(struct request_queue
*q
, struct request
*rq
)
690 blk_add_trace_rq(q
, rq
, BLK_TA_ISSUE
);
693 static void blk_add_trace_rq_requeue(struct request_queue
*q
,
696 blk_add_trace_rq(q
, rq
, BLK_TA_REQUEUE
);
699 static void blk_add_trace_rq_complete(struct request_queue
*q
,
702 blk_add_trace_rq(q
, rq
, BLK_TA_COMPLETE
);
706 * blk_add_trace_bio - Add a trace for a bio oriented action
707 * @q: queue the io is for
708 * @bio: the source bio
712 * Records an action against a bio. Will log the bio offset + size.
715 static void blk_add_trace_bio(struct request_queue
*q
, struct bio
*bio
,
718 struct blk_trace
*bt
= q
->blk_trace
;
723 __blk_add_trace(bt
, bio
->bi_sector
, bio
->bi_size
, bio
->bi_rw
, what
,
724 !bio_flagged(bio
, BIO_UPTODATE
), 0, NULL
);
727 static void blk_add_trace_bio_bounce(struct request_queue
*q
, struct bio
*bio
)
729 blk_add_trace_bio(q
, bio
, BLK_TA_BOUNCE
);
732 static void blk_add_trace_bio_complete(struct request_queue
*q
, struct bio
*bio
)
734 blk_add_trace_bio(q
, bio
, BLK_TA_COMPLETE
);
737 static void blk_add_trace_bio_backmerge(struct request_queue
*q
,
740 blk_add_trace_bio(q
, bio
, BLK_TA_BACKMERGE
);
743 static void blk_add_trace_bio_frontmerge(struct request_queue
*q
,
746 blk_add_trace_bio(q
, bio
, BLK_TA_FRONTMERGE
);
749 static void blk_add_trace_bio_queue(struct request_queue
*q
, struct bio
*bio
)
751 blk_add_trace_bio(q
, bio
, BLK_TA_QUEUE
);
754 static void blk_add_trace_getrq(struct request_queue
*q
,
755 struct bio
*bio
, int rw
)
758 blk_add_trace_bio(q
, bio
, BLK_TA_GETRQ
);
760 struct blk_trace
*bt
= q
->blk_trace
;
763 __blk_add_trace(bt
, 0, 0, rw
, BLK_TA_GETRQ
, 0, 0, NULL
);
768 static void blk_add_trace_sleeprq(struct request_queue
*q
,
769 struct bio
*bio
, int rw
)
772 blk_add_trace_bio(q
, bio
, BLK_TA_SLEEPRQ
);
774 struct blk_trace
*bt
= q
->blk_trace
;
777 __blk_add_trace(bt
, 0, 0, rw
, BLK_TA_SLEEPRQ
,
782 static void blk_add_trace_plug(struct request_queue
*q
)
784 struct blk_trace
*bt
= q
->blk_trace
;
787 __blk_add_trace(bt
, 0, 0, 0, BLK_TA_PLUG
, 0, 0, NULL
);
790 static void blk_add_trace_unplug_io(struct request_queue
*q
)
792 struct blk_trace
*bt
= q
->blk_trace
;
795 unsigned int pdu
= q
->rq
.count
[READ
] + q
->rq
.count
[WRITE
];
796 __be64 rpdu
= cpu_to_be64(pdu
);
798 __blk_add_trace(bt
, 0, 0, 0, BLK_TA_UNPLUG_IO
, 0,
799 sizeof(rpdu
), &rpdu
);
803 static void blk_add_trace_unplug_timer(struct request_queue
*q
)
805 struct blk_trace
*bt
= q
->blk_trace
;
808 unsigned int pdu
= q
->rq
.count
[READ
] + q
->rq
.count
[WRITE
];
809 __be64 rpdu
= cpu_to_be64(pdu
);
811 __blk_add_trace(bt
, 0, 0, 0, BLK_TA_UNPLUG_TIMER
, 0,
812 sizeof(rpdu
), &rpdu
);
816 static void blk_add_trace_split(struct request_queue
*q
, struct bio
*bio
,
819 struct blk_trace
*bt
= q
->blk_trace
;
822 __be64 rpdu
= cpu_to_be64(pdu
);
824 __blk_add_trace(bt
, bio
->bi_sector
, bio
->bi_size
, bio
->bi_rw
,
825 BLK_TA_SPLIT
, !bio_flagged(bio
, BIO_UPTODATE
),
826 sizeof(rpdu
), &rpdu
);
831 * blk_add_trace_remap - Add a trace for a remap operation
832 * @q: queue the io is for
833 * @bio: the source bio
834 * @dev: target device
835 * @from: source sector
838 * Device mapper or raid target sometimes need to split a bio because
839 * it spans a stripe (or similar). Add a trace for that action.
842 static void blk_add_trace_remap(struct request_queue
*q
, struct bio
*bio
,
843 dev_t dev
, sector_t from
)
845 struct blk_trace
*bt
= q
->blk_trace
;
846 struct blk_io_trace_remap r
;
851 r
.device_from
= cpu_to_be32(dev
);
852 r
.device_to
= cpu_to_be32(bio
->bi_bdev
->bd_dev
);
853 r
.sector_from
= cpu_to_be64(from
);
855 __blk_add_trace(bt
, bio
->bi_sector
, bio
->bi_size
, bio
->bi_rw
,
856 BLK_TA_REMAP
, !bio_flagged(bio
, BIO_UPTODATE
),
861 * blk_add_trace_rq_remap - Add a trace for a request-remap operation
862 * @q: queue the io is for
863 * @rq: the source request
864 * @dev: target device
865 * @from: source sector
868 * Device mapper remaps request to other devices.
869 * Add a trace for that action.
872 static void blk_add_trace_rq_remap(struct request_queue
*q
,
873 struct request
*rq
, dev_t dev
,
876 struct blk_trace
*bt
= q
->blk_trace
;
877 struct blk_io_trace_remap r
;
882 r
.device_from
= cpu_to_be32(dev
);
883 r
.device_to
= cpu_to_be32(disk_devt(rq
->rq_disk
));
884 r
.sector_from
= cpu_to_be64(from
);
886 __blk_add_trace(bt
, blk_rq_pos(rq
), blk_rq_bytes(rq
),
887 rq_data_dir(rq
), BLK_TA_REMAP
, !!rq
->errors
,
892 * blk_add_driver_data - Add binary message with driver-specific data
893 * @q: queue the io is for
895 * @data: driver-specific data
896 * @len: length of driver-specific data
899 * Some drivers might want to write driver-specific data per request.
902 void blk_add_driver_data(struct request_queue
*q
,
904 void *data
, size_t len
)
906 struct blk_trace
*bt
= q
->blk_trace
;
911 if (blk_pc_request(rq
))
912 __blk_add_trace(bt
, 0, blk_rq_bytes(rq
), 0,
913 BLK_TA_DRV_DATA
, rq
->errors
, len
, data
);
915 __blk_add_trace(bt
, blk_rq_pos(rq
), blk_rq_bytes(rq
), 0,
916 BLK_TA_DRV_DATA
, rq
->errors
, len
, data
);
918 EXPORT_SYMBOL_GPL(blk_add_driver_data
);
920 static void blk_register_tracepoints(void)
924 ret
= register_trace_block_rq_abort(blk_add_trace_rq_abort
);
926 ret
= register_trace_block_rq_insert(blk_add_trace_rq_insert
);
928 ret
= register_trace_block_rq_issue(blk_add_trace_rq_issue
);
930 ret
= register_trace_block_rq_requeue(blk_add_trace_rq_requeue
);
932 ret
= register_trace_block_rq_complete(blk_add_trace_rq_complete
);
934 ret
= register_trace_block_bio_bounce(blk_add_trace_bio_bounce
);
936 ret
= register_trace_block_bio_complete(blk_add_trace_bio_complete
);
938 ret
= register_trace_block_bio_backmerge(blk_add_trace_bio_backmerge
);
940 ret
= register_trace_block_bio_frontmerge(blk_add_trace_bio_frontmerge
);
942 ret
= register_trace_block_bio_queue(blk_add_trace_bio_queue
);
944 ret
= register_trace_block_getrq(blk_add_trace_getrq
);
946 ret
= register_trace_block_sleeprq(blk_add_trace_sleeprq
);
948 ret
= register_trace_block_plug(blk_add_trace_plug
);
950 ret
= register_trace_block_unplug_timer(blk_add_trace_unplug_timer
);
952 ret
= register_trace_block_unplug_io(blk_add_trace_unplug_io
);
954 ret
= register_trace_block_split(blk_add_trace_split
);
956 ret
= register_trace_block_remap(blk_add_trace_remap
);
958 ret
= register_trace_block_rq_remap(blk_add_trace_rq_remap
);
962 static void blk_unregister_tracepoints(void)
964 unregister_trace_block_rq_remap(blk_add_trace_rq_remap
);
965 unregister_trace_block_remap(blk_add_trace_remap
);
966 unregister_trace_block_split(blk_add_trace_split
);
967 unregister_trace_block_unplug_io(blk_add_trace_unplug_io
);
968 unregister_trace_block_unplug_timer(blk_add_trace_unplug_timer
);
969 unregister_trace_block_plug(blk_add_trace_plug
);
970 unregister_trace_block_sleeprq(blk_add_trace_sleeprq
);
971 unregister_trace_block_getrq(blk_add_trace_getrq
);
972 unregister_trace_block_bio_queue(blk_add_trace_bio_queue
);
973 unregister_trace_block_bio_frontmerge(blk_add_trace_bio_frontmerge
);
974 unregister_trace_block_bio_backmerge(blk_add_trace_bio_backmerge
);
975 unregister_trace_block_bio_complete(blk_add_trace_bio_complete
);
976 unregister_trace_block_bio_bounce(blk_add_trace_bio_bounce
);
977 unregister_trace_block_rq_complete(blk_add_trace_rq_complete
);
978 unregister_trace_block_rq_requeue(blk_add_trace_rq_requeue
);
979 unregister_trace_block_rq_issue(blk_add_trace_rq_issue
);
980 unregister_trace_block_rq_insert(blk_add_trace_rq_insert
);
981 unregister_trace_block_rq_abort(blk_add_trace_rq_abort
);
983 tracepoint_synchronize_unregister();
987 * struct blk_io_tracer formatting routines
990 static void fill_rwbs(char *rwbs
, const struct blk_io_trace
*t
)
993 int tc
= t
->action
>> BLK_TC_SHIFT
;
995 if (t
->action
== BLK_TN_MESSAGE
) {
1000 if (tc
& BLK_TC_DISCARD
)
1002 else if (tc
& BLK_TC_WRITE
)
1009 if (tc
& BLK_TC_AHEAD
)
1011 if (tc
& BLK_TC_BARRIER
)
1013 if (tc
& BLK_TC_SYNC
)
1015 if (tc
& BLK_TC_META
)
1022 const struct blk_io_trace
*te_blk_io_trace(const struct trace_entry
*ent
)
1024 return (const struct blk_io_trace
*)ent
;
1027 static inline const void *pdu_start(const struct trace_entry
*ent
)
1029 return te_blk_io_trace(ent
) + 1;
1032 static inline u32
t_action(const struct trace_entry
*ent
)
1034 return te_blk_io_trace(ent
)->action
;
1037 static inline u32
t_bytes(const struct trace_entry
*ent
)
1039 return te_blk_io_trace(ent
)->bytes
;
1042 static inline u32
t_sec(const struct trace_entry
*ent
)
1044 return te_blk_io_trace(ent
)->bytes
>> 9;
1047 static inline unsigned long long t_sector(const struct trace_entry
*ent
)
1049 return te_blk_io_trace(ent
)->sector
;
1052 static inline __u16
t_error(const struct trace_entry
*ent
)
1054 return te_blk_io_trace(ent
)->error
;
1057 static __u64
get_pdu_int(const struct trace_entry
*ent
)
1059 const __u64
*val
= pdu_start(ent
);
1060 return be64_to_cpu(*val
);
1063 static void get_pdu_remap(const struct trace_entry
*ent
,
1064 struct blk_io_trace_remap
*r
)
1066 const struct blk_io_trace_remap
*__r
= pdu_start(ent
);
1067 __u64 sector_from
= __r
->sector_from
;
1069 r
->device_from
= be32_to_cpu(__r
->device_from
);
1070 r
->device_to
= be32_to_cpu(__r
->device_to
);
1071 r
->sector_from
= be64_to_cpu(sector_from
);
1074 typedef int (blk_log_action_t
) (struct trace_iterator
*iter
, const char *act
);
1076 static int blk_log_action_classic(struct trace_iterator
*iter
, const char *act
)
1079 unsigned long long ts
= iter
->ts
;
1080 unsigned long nsec_rem
= do_div(ts
, NSEC_PER_SEC
);
1081 unsigned secs
= (unsigned long)ts
;
1082 const struct blk_io_trace
*t
= te_blk_io_trace(iter
->ent
);
1086 return trace_seq_printf(&iter
->seq
,
1087 "%3d,%-3d %2d %5d.%09lu %5u %2s %3s ",
1088 MAJOR(t
->device
), MINOR(t
->device
), iter
->cpu
,
1089 secs
, nsec_rem
, iter
->ent
->pid
, act
, rwbs
);
1092 static int blk_log_action(struct trace_iterator
*iter
, const char *act
)
1095 const struct blk_io_trace
*t
= te_blk_io_trace(iter
->ent
);
1098 return trace_seq_printf(&iter
->seq
, "%3d,%-3d %2s %3s ",
1099 MAJOR(t
->device
), MINOR(t
->device
), act
, rwbs
);
1102 static int blk_log_dump_pdu(struct trace_seq
*s
, const struct trace_entry
*ent
)
1104 const unsigned char *pdu_buf
;
1108 pdu_buf
= pdu_start(ent
);
1109 pdu_len
= te_blk_io_trace(ent
)->pdu_len
;
1114 /* find the last zero that needs to be printed */
1115 for (end
= pdu_len
- 1; end
>= 0; end
--)
1120 if (!trace_seq_putc(s
, '('))
1123 for (i
= 0; i
< pdu_len
; i
++) {
1125 ret
= trace_seq_printf(s
, "%s%02x",
1126 i
== 0 ? "" : " ", pdu_buf
[i
]);
1131 * stop when the rest is just zeroes and indicate so
1132 * with a ".." appended
1134 if (i
== end
&& end
!= pdu_len
- 1)
1135 return trace_seq_puts(s
, " ..) ");
1138 return trace_seq_puts(s
, ") ");
1141 static int blk_log_generic(struct trace_seq
*s
, const struct trace_entry
*ent
)
1143 char cmd
[TASK_COMM_LEN
];
1145 trace_find_cmdline(ent
->pid
, cmd
);
1147 if (t_action(ent
) & BLK_TC_ACT(BLK_TC_PC
)) {
1150 ret
= trace_seq_printf(s
, "%u ", t_bytes(ent
));
1153 ret
= blk_log_dump_pdu(s
, ent
);
1156 return trace_seq_printf(s
, "[%s]\n", cmd
);
1159 return trace_seq_printf(s
, "%llu + %u [%s]\n",
1160 t_sector(ent
), t_sec(ent
), cmd
);
1161 return trace_seq_printf(s
, "[%s]\n", cmd
);
1165 static int blk_log_with_error(struct trace_seq
*s
,
1166 const struct trace_entry
*ent
)
1168 if (t_action(ent
) & BLK_TC_ACT(BLK_TC_PC
)) {
1171 ret
= blk_log_dump_pdu(s
, ent
);
1173 return trace_seq_printf(s
, "[%d]\n", t_error(ent
));
1177 return trace_seq_printf(s
, "%llu + %u [%d]\n",
1179 t_sec(ent
), t_error(ent
));
1180 return trace_seq_printf(s
, "%llu [%d]\n",
1181 t_sector(ent
), t_error(ent
));
1185 static int blk_log_remap(struct trace_seq
*s
, const struct trace_entry
*ent
)
1187 struct blk_io_trace_remap r
= { .device_from
= 0, };
1189 get_pdu_remap(ent
, &r
);
1190 return trace_seq_printf(s
, "%llu + %u <- (%d,%d) %llu\n",
1191 t_sector(ent
), t_sec(ent
),
1192 MAJOR(r
.device_from
), MINOR(r
.device_from
),
1193 (unsigned long long)r
.sector_from
);
1196 static int blk_log_plug(struct trace_seq
*s
, const struct trace_entry
*ent
)
1198 char cmd
[TASK_COMM_LEN
];
1200 trace_find_cmdline(ent
->pid
, cmd
);
1202 return trace_seq_printf(s
, "[%s]\n", cmd
);
1205 static int blk_log_unplug(struct trace_seq
*s
, const struct trace_entry
*ent
)
1207 char cmd
[TASK_COMM_LEN
];
1209 trace_find_cmdline(ent
->pid
, cmd
);
1211 return trace_seq_printf(s
, "[%s] %llu\n", cmd
, get_pdu_int(ent
));
1214 static int blk_log_split(struct trace_seq
*s
, const struct trace_entry
*ent
)
1216 char cmd
[TASK_COMM_LEN
];
1218 trace_find_cmdline(ent
->pid
, cmd
);
1220 return trace_seq_printf(s
, "%llu / %llu [%s]\n", t_sector(ent
),
1221 get_pdu_int(ent
), cmd
);
1224 static int blk_log_msg(struct trace_seq
*s
, const struct trace_entry
*ent
)
1227 const struct blk_io_trace
*t
= te_blk_io_trace(ent
);
1229 ret
= trace_seq_putmem(s
, t
+ 1, t
->pdu_len
);
1231 return trace_seq_putc(s
, '\n');
1236 * struct tracer operations
1239 static void blk_tracer_print_header(struct seq_file
*m
)
1241 if (!(blk_tracer_flags
.val
& TRACE_BLK_OPT_CLASSIC
))
1243 seq_puts(m
, "# DEV CPU TIMESTAMP PID ACT FLG\n"
1247 static void blk_tracer_start(struct trace_array
*tr
)
1249 blk_tracer_enabled
= true;
1252 static int blk_tracer_init(struct trace_array
*tr
)
1255 blk_tracer_start(tr
);
1259 static void blk_tracer_stop(struct trace_array
*tr
)
1261 blk_tracer_enabled
= false;
1264 static void blk_tracer_reset(struct trace_array
*tr
)
1266 blk_tracer_stop(tr
);
1269 static const struct {
1271 int (*print
)(struct trace_seq
*s
, const struct trace_entry
*ent
);
1273 [__BLK_TA_QUEUE
] = {{ "Q", "queue" }, blk_log_generic
},
1274 [__BLK_TA_BACKMERGE
] = {{ "M", "backmerge" }, blk_log_generic
},
1275 [__BLK_TA_FRONTMERGE
] = {{ "F", "frontmerge" }, blk_log_generic
},
1276 [__BLK_TA_GETRQ
] = {{ "G", "getrq" }, blk_log_generic
},
1277 [__BLK_TA_SLEEPRQ
] = {{ "S", "sleeprq" }, blk_log_generic
},
1278 [__BLK_TA_REQUEUE
] = {{ "R", "requeue" }, blk_log_with_error
},
1279 [__BLK_TA_ISSUE
] = {{ "D", "issue" }, blk_log_generic
},
1280 [__BLK_TA_COMPLETE
] = {{ "C", "complete" }, blk_log_with_error
},
1281 [__BLK_TA_PLUG
] = {{ "P", "plug" }, blk_log_plug
},
1282 [__BLK_TA_UNPLUG_IO
] = {{ "U", "unplug_io" }, blk_log_unplug
},
1283 [__BLK_TA_UNPLUG_TIMER
] = {{ "UT", "unplug_timer" }, blk_log_unplug
},
1284 [__BLK_TA_INSERT
] = {{ "I", "insert" }, blk_log_generic
},
1285 [__BLK_TA_SPLIT
] = {{ "X", "split" }, blk_log_split
},
1286 [__BLK_TA_BOUNCE
] = {{ "B", "bounce" }, blk_log_generic
},
1287 [__BLK_TA_REMAP
] = {{ "A", "remap" }, blk_log_remap
},
1290 static enum print_line_t
print_one_line(struct trace_iterator
*iter
,
1293 struct trace_seq
*s
= &iter
->seq
;
1294 const struct blk_io_trace
*t
;
1298 blk_log_action_t
*log_action
;
1300 t
= te_blk_io_trace(iter
->ent
);
1301 what
= t
->action
& ((1 << BLK_TC_SHIFT
) - 1);
1302 long_act
= !!(trace_flags
& TRACE_ITER_VERBOSE
);
1303 log_action
= classic
? &blk_log_action_classic
: &blk_log_action
;
1305 if (t
->action
== BLK_TN_MESSAGE
) {
1306 ret
= log_action(iter
, long_act
? "message" : "m");
1308 ret
= blk_log_msg(s
, iter
->ent
);
1312 if (unlikely(what
== 0 || what
>= ARRAY_SIZE(what2act
)))
1313 ret
= trace_seq_printf(s
, "Unknown action %x\n", what
);
1315 ret
= log_action(iter
, what2act
[what
].act
[long_act
]);
1317 ret
= what2act
[what
].print(s
, iter
->ent
);
1320 return ret
? TRACE_TYPE_HANDLED
: TRACE_TYPE_PARTIAL_LINE
;
1323 static enum print_line_t
blk_trace_event_print(struct trace_iterator
*iter
,
1326 return print_one_line(iter
, false);
1329 static int blk_trace_synthesize_old_trace(struct trace_iterator
*iter
)
1331 struct trace_seq
*s
= &iter
->seq
;
1332 struct blk_io_trace
*t
= (struct blk_io_trace
*)iter
->ent
;
1333 const int offset
= offsetof(struct blk_io_trace
, sector
);
1334 struct blk_io_trace old
= {
1335 .magic
= BLK_IO_TRACE_MAGIC
| BLK_IO_TRACE_VERSION
,
1339 if (!trace_seq_putmem(s
, &old
, offset
))
1341 return trace_seq_putmem(s
, &t
->sector
,
1342 sizeof(old
) - offset
+ t
->pdu_len
);
1345 static enum print_line_t
1346 blk_trace_event_print_binary(struct trace_iterator
*iter
, int flags
)
1348 return blk_trace_synthesize_old_trace(iter
) ?
1349 TRACE_TYPE_HANDLED
: TRACE_TYPE_PARTIAL_LINE
;
1352 static enum print_line_t
blk_tracer_print_line(struct trace_iterator
*iter
)
1354 if (!(blk_tracer_flags
.val
& TRACE_BLK_OPT_CLASSIC
))
1355 return TRACE_TYPE_UNHANDLED
;
1357 return print_one_line(iter
, true);
1360 static int blk_tracer_set_flag(u32 old_flags
, u32 bit
, int set
)
1362 /* don't output context-info for blk_classic output */
1363 if (bit
== TRACE_BLK_OPT_CLASSIC
) {
1365 trace_flags
&= ~TRACE_ITER_CONTEXT_INFO
;
1367 trace_flags
|= TRACE_ITER_CONTEXT_INFO
;
1372 static struct tracer blk_tracer __read_mostly
= {
1374 .init
= blk_tracer_init
,
1375 .reset
= blk_tracer_reset
,
1376 .start
= blk_tracer_start
,
1377 .stop
= blk_tracer_stop
,
1378 .print_header
= blk_tracer_print_header
,
1379 .print_line
= blk_tracer_print_line
,
1380 .flags
= &blk_tracer_flags
,
1381 .set_flag
= blk_tracer_set_flag
,
1384 static struct trace_event trace_blk_event
= {
1386 .trace
= blk_trace_event_print
,
1387 .binary
= blk_trace_event_print_binary
,
1390 static int __init
init_blk_tracer(void)
1392 if (!register_ftrace_event(&trace_blk_event
)) {
1393 pr_warning("Warning: could not register block events\n");
1397 if (register_tracer(&blk_tracer
) != 0) {
1398 pr_warning("Warning: could not register the block tracer\n");
1399 unregister_ftrace_event(&trace_blk_event
);
1406 device_initcall(init_blk_tracer
);
1408 static int blk_trace_remove_queue(struct request_queue
*q
)
1410 struct blk_trace
*bt
;
1412 bt
= xchg(&q
->blk_trace
, NULL
);
1416 if (atomic_dec_and_test(&blk_probes_ref
))
1417 blk_unregister_tracepoints();
1424 * Setup everything required to start tracing
1426 static int blk_trace_setup_queue(struct request_queue
*q
,
1427 struct block_device
*bdev
)
1429 struct blk_trace
*old_bt
, *bt
= NULL
;
1432 bt
= kzalloc(sizeof(*bt
), GFP_KERNEL
);
1436 bt
->msg_data
= __alloc_percpu(BLK_TN_MAX_MSG
, __alignof__(char));
1440 bt
->dev
= bdev
->bd_dev
;
1441 bt
->act_mask
= (u16
)-1;
1443 blk_trace_setup_lba(bt
, bdev
);
1445 old_bt
= xchg(&q
->blk_trace
, bt
);
1446 if (old_bt
!= NULL
) {
1447 (void)xchg(&q
->blk_trace
, old_bt
);
1452 if (atomic_inc_return(&blk_probes_ref
) == 1)
1453 blk_register_tracepoints();
1462 * sysfs interface to enable and configure tracing
1465 static ssize_t
sysfs_blk_trace_attr_show(struct device
*dev
,
1466 struct device_attribute
*attr
,
1468 static ssize_t
sysfs_blk_trace_attr_store(struct device
*dev
,
1469 struct device_attribute
*attr
,
1470 const char *buf
, size_t count
);
1471 #define BLK_TRACE_DEVICE_ATTR(_name) \
1472 DEVICE_ATTR(_name, S_IRUGO | S_IWUSR, \
1473 sysfs_blk_trace_attr_show, \
1474 sysfs_blk_trace_attr_store)
1476 static BLK_TRACE_DEVICE_ATTR(enable
);
1477 static BLK_TRACE_DEVICE_ATTR(act_mask
);
1478 static BLK_TRACE_DEVICE_ATTR(pid
);
1479 static BLK_TRACE_DEVICE_ATTR(start_lba
);
1480 static BLK_TRACE_DEVICE_ATTR(end_lba
);
1482 static struct attribute
*blk_trace_attrs
[] = {
1483 &dev_attr_enable
.attr
,
1484 &dev_attr_act_mask
.attr
,
1486 &dev_attr_start_lba
.attr
,
1487 &dev_attr_end_lba
.attr
,
1491 struct attribute_group blk_trace_attr_group
= {
1493 .attrs
= blk_trace_attrs
,
1496 static const struct {
1500 { BLK_TC_READ
, "read" },
1501 { BLK_TC_WRITE
, "write" },
1502 { BLK_TC_BARRIER
, "barrier" },
1503 { BLK_TC_SYNC
, "sync" },
1504 { BLK_TC_QUEUE
, "queue" },
1505 { BLK_TC_REQUEUE
, "requeue" },
1506 { BLK_TC_ISSUE
, "issue" },
1507 { BLK_TC_COMPLETE
, "complete" },
1508 { BLK_TC_FS
, "fs" },
1509 { BLK_TC_PC
, "pc" },
1510 { BLK_TC_AHEAD
, "ahead" },
1511 { BLK_TC_META
, "meta" },
1512 { BLK_TC_DISCARD
, "discard" },
1513 { BLK_TC_DRV_DATA
, "drv_data" },
1516 static int blk_trace_str2mask(const char *str
)
1520 char *buf
, *s
, *token
;
1522 buf
= kstrdup(str
, GFP_KERNEL
);
1528 token
= strsep(&s
, ",");
1535 for (i
= 0; i
< ARRAY_SIZE(mask_maps
); i
++) {
1536 if (strcasecmp(token
, mask_maps
[i
].str
) == 0) {
1537 mask
|= mask_maps
[i
].mask
;
1541 if (i
== ARRAY_SIZE(mask_maps
)) {
1551 static ssize_t
blk_trace_mask2str(char *buf
, int mask
)
1556 for (i
= 0; i
< ARRAY_SIZE(mask_maps
); i
++) {
1557 if (mask
& mask_maps
[i
].mask
) {
1558 p
+= sprintf(p
, "%s%s",
1559 (p
== buf
) ? "" : ",", mask_maps
[i
].str
);
1567 static struct request_queue
*blk_trace_get_queue(struct block_device
*bdev
)
1569 if (bdev
->bd_disk
== NULL
)
1572 return bdev_get_queue(bdev
);
1575 static ssize_t
sysfs_blk_trace_attr_show(struct device
*dev
,
1576 struct device_attribute
*attr
,
1579 struct hd_struct
*p
= dev_to_part(dev
);
1580 struct request_queue
*q
;
1581 struct block_device
*bdev
;
1582 ssize_t ret
= -ENXIO
;
1585 bdev
= bdget(part_devt(p
));
1587 goto out_unlock_kernel
;
1589 q
= blk_trace_get_queue(bdev
);
1593 mutex_lock(&bdev
->bd_mutex
);
1595 if (attr
== &dev_attr_enable
) {
1596 ret
= sprintf(buf
, "%u\n", !!q
->blk_trace
);
1597 goto out_unlock_bdev
;
1600 if (q
->blk_trace
== NULL
)
1601 ret
= sprintf(buf
, "disabled\n");
1602 else if (attr
== &dev_attr_act_mask
)
1603 ret
= blk_trace_mask2str(buf
, q
->blk_trace
->act_mask
);
1604 else if (attr
== &dev_attr_pid
)
1605 ret
= sprintf(buf
, "%u\n", q
->blk_trace
->pid
);
1606 else if (attr
== &dev_attr_start_lba
)
1607 ret
= sprintf(buf
, "%llu\n", q
->blk_trace
->start_lba
);
1608 else if (attr
== &dev_attr_end_lba
)
1609 ret
= sprintf(buf
, "%llu\n", q
->blk_trace
->end_lba
);
1612 mutex_unlock(&bdev
->bd_mutex
);
1620 static ssize_t
sysfs_blk_trace_attr_store(struct device
*dev
,
1621 struct device_attribute
*attr
,
1622 const char *buf
, size_t count
)
1624 struct block_device
*bdev
;
1625 struct request_queue
*q
;
1626 struct hd_struct
*p
;
1628 ssize_t ret
= -EINVAL
;
1633 if (attr
== &dev_attr_act_mask
) {
1634 if (sscanf(buf
, "%llx", &value
) != 1) {
1635 /* Assume it is a list of trace category names */
1636 ret
= blk_trace_str2mask(buf
);
1641 } else if (sscanf(buf
, "%llu", &value
) != 1)
1647 p
= dev_to_part(dev
);
1648 bdev
= bdget(part_devt(p
));
1650 goto out_unlock_kernel
;
1652 q
= blk_trace_get_queue(bdev
);
1656 mutex_lock(&bdev
->bd_mutex
);
1658 if (attr
== &dev_attr_enable
) {
1660 ret
= blk_trace_setup_queue(q
, bdev
);
1662 ret
= blk_trace_remove_queue(q
);
1663 goto out_unlock_bdev
;
1667 if (q
->blk_trace
== NULL
)
1668 ret
= blk_trace_setup_queue(q
, bdev
);
1671 if (attr
== &dev_attr_act_mask
)
1672 q
->blk_trace
->act_mask
= value
;
1673 else if (attr
== &dev_attr_pid
)
1674 q
->blk_trace
->pid
= value
;
1675 else if (attr
== &dev_attr_start_lba
)
1676 q
->blk_trace
->start_lba
= value
;
1677 else if (attr
== &dev_attr_end_lba
)
1678 q
->blk_trace
->end_lba
= value
;
1682 mutex_unlock(&bdev
->bd_mutex
);
1688 return ret
? ret
: count
;
1691 int blk_trace_init_sysfs(struct device
*dev
)
1693 return sysfs_create_group(&dev
->kobj
, &blk_trace_attr_group
);
1696 void blk_trace_remove_sysfs(struct device
*dev
)
1698 sysfs_remove_group(&dev
->kobj
, &blk_trace_attr_group
);
1701 #endif /* CONFIG_BLK_DEV_IO_TRACE */
1703 #ifdef CONFIG_EVENT_TRACING
1705 void blk_dump_cmd(char *buf
, struct request
*rq
)
1708 int len
= rq
->cmd_len
;
1709 unsigned char *cmd
= rq
->cmd
;
1711 if (!blk_pc_request(rq
)) {
1716 for (end
= len
- 1; end
>= 0; end
--)
1721 for (i
= 0; i
< len
; i
++) {
1722 buf
+= sprintf(buf
, "%s%02x", i
== 0 ? "" : " ", cmd
[i
]);
1723 if (i
== end
&& end
!= len
- 1) {
1724 sprintf(buf
, " ..");
1730 void blk_fill_rwbs(char *rwbs
, u32 rw
, int bytes
)
1736 else if (rw
& 1 << BIO_RW_DISCARD
)
1743 if (rw
& 1 << BIO_RW_AHEAD
)
1745 if (rw
& 1 << BIO_RW_BARRIER
)
1747 if (rw
& 1 << BIO_RW_SYNCIO
)
1749 if (rw
& 1 << BIO_RW_META
)
1755 void blk_fill_rwbs_rq(char *rwbs
, struct request
*rq
)
1757 int rw
= rq
->cmd_flags
& 0x03;
1760 if (blk_discard_rq(rq
))
1761 rw
|= (1 << BIO_RW_DISCARD
);
1763 bytes
= blk_rq_bytes(rq
);
1765 blk_fill_rwbs(rwbs
, rw
, bytes
);
1768 #endif /* CONFIG_EVENT_TRACING */