blk-mq: fix iteration of busy bitmap
[linux-2.6-block.git] / include / linux / blktrace_api.h
CommitLineData
2056a782
JA
1#ifndef BLKTRACE_H
2#define BLKTRACE_H
3
2056a782
JA
4#include <linux/blkdev.h>
5#include <linux/relay.h>
62c2a7d9 6#include <linux/compat.h>
607ca46e 7#include <uapi/linux/blktrace_api.h>
a404d557 8#include <linux/list.h>
c0ddffa8 9
c0ddffa8 10#if defined(CONFIG_BLK_DEV_IO_TRACE)
157f9c00
ACM
11
12#include <linux/sysfs.h>
13
2056a782
JA
14struct blk_trace {
15 int trace_state;
16 struct rchan *rchan;
43cf38eb
TH
17 unsigned long __percpu *sequence;
18 unsigned char __percpu *msg_data;
2056a782
JA
19 u16 act_mask;
20 u64 start_lba;
21 u64 end_lba;
22 u32 pid;
23 u32 dev;
24 struct dentry *dir;
25 struct dentry *dropped_file;
02c62304 26 struct dentry *msg_file;
a404d557 27 struct list_head running_list;
2056a782
JA
28 atomic_t dropped;
29};
30
2056a782 31extern int blk_trace_ioctl(struct block_device *, unsigned, char __user *);
165125e1 32extern void blk_trace_shutdown(struct request_queue *);
d0deef5b
SD
33extern int do_blk_trace_setup(struct request_queue *q, char *name,
34 dev_t dev, struct block_device *bdev,
35 struct blk_user_trace_setup *buts);
b9075fa9 36extern __printf(2, 3)
08e8138a 37void __trace_note_message(struct blk_trace *, const char *fmt, ...);
171044d4 38
9d5f09a4
AB
39/**
40 * blk_add_trace_msg - Add a (simple) message to the blktrace stream
41 * @q: queue the io is for
42 * @fmt: format to print message in
43 * args... Variable argument list for format
44 *
45 * Description:
46 * Records a (simple) message onto the blktrace stream.
47 *
48 * NOTE: BLK_TN_MAX_MSG characters are output at most.
49 * NOTE: Can not use 'static inline' due to presence of var args...
50 *
51 **/
52#define blk_add_trace_msg(q, fmt, ...) \
53 do { \
54 struct blk_trace *bt = (q)->blk_trace; \
55 if (unlikely(bt)) \
56 __trace_note_message(bt, fmt, ##__VA_ARGS__); \
57 } while (0)
64565911 58#define BLK_TN_MAX_MSG 128
2056a782 59
5f3ea37c
ACM
60extern void blk_add_driver_data(struct request_queue *q, struct request *rq,
61 void *data, size_t len);
7da975a2 62extern int blk_trace_setup(struct request_queue *q, char *name, dev_t dev,
d0deef5b 63 struct block_device *bdev,
6da127ad 64 char __user *arg);
7da975a2
MP
65extern int blk_trace_startstop(struct request_queue *q, int start);
66extern int blk_trace_remove(struct request_queue *q);
48c0d4d4 67extern void blk_trace_remove_sysfs(struct device *dev);
1d54ad6d 68extern int blk_trace_init_sysfs(struct device *dev);
6da127ad 69
157f9c00
ACM
70extern struct attribute_group blk_trace_attr_group;
71
2056a782 72#else /* !CONFIG_BLK_DEV_IO_TRACE */
d0deef5b
SD
73# define blk_trace_ioctl(bdev, cmd, arg) (-ENOTTY)
74# define blk_trace_shutdown(q) do { } while (0)
75# define do_blk_trace_setup(q, name, dev, bdev, buts) (-ENOTTY)
76# define blk_add_driver_data(q, rq, data, len) do {} while (0)
77# define blk_trace_setup(q, name, dev, bdev, arg) (-ENOTTY)
78# define blk_trace_startstop(q, start) (-ENOTTY)
79# define blk_trace_remove(q) (-ENOTTY)
80# define blk_add_trace_msg(q, fmt, ...) do { } while (0)
b0da3f0d 81# define blk_trace_remove_sysfs(dev) do { } while (0)
1d54ad6d
LZ
82static inline int blk_trace_init_sysfs(struct device *dev)
83{
84 return 0;
85}
86
2056a782 87#endif /* CONFIG_BLK_DEV_IO_TRACE */
d0deef5b 88
2669b19f
SR
89#ifdef CONFIG_COMPAT
90
91struct compat_blk_user_trace_setup {
f8c5e944 92 char name[BLKTRACE_BDEV_SIZE];
2669b19f
SR
93 u16 act_mask;
94 u32 buf_size;
95 u32 buf_nr;
96 compat_u64 start_lba;
97 compat_u64 end_lba;
98 u32 pid;
99};
100#define BLKTRACESETUP32 _IOWR(0x12, 115, struct compat_blk_user_trace_setup)
101
102#endif
103
f1db457c 104#if defined(CONFIG_EVENT_TRACING) && defined(CONFIG_BLOCK)
55782138
LZ
105
106static inline int blk_cmd_buf_len(struct request *rq)
107{
33659ebb 108 return (rq->cmd_type == REQ_TYPE_BLOCK_PC) ? rq->cmd_len * 3 : 1;
55782138
LZ
109}
110
111extern void blk_dump_cmd(char *buf, struct request *rq);
112extern void blk_fill_rwbs(char *rwbs, u32 rw, int bytes);
55782138 113
f1db457c 114#endif /* CONFIG_EVENT_TRACING && CONFIG_BLOCK */
55782138 115
2056a782 116#endif