scsi: lpfc: NVME Target: Base modifications
[linux-2.6/btrfs-unstable.git] / include / trace / events / wbt.h
blob3c518e455680abdacbce8710f38014b75846224f
1 #undef TRACE_SYSTEM
2 #define TRACE_SYSTEM wbt
4 #if !defined(_TRACE_WBT_H) || defined(TRACE_HEADER_MULTI_READ)
5 #define _TRACE_WBT_H
7 #include <linux/tracepoint.h>
8 #include "../../../block/blk-wbt.h"
10 /**
11 * wbt_stat - trace stats for blk_wb
12 * @stat: array of read/write stats
14 TRACE_EVENT(wbt_stat,
16 TP_PROTO(struct backing_dev_info *bdi, struct blk_rq_stat *stat),
18 TP_ARGS(bdi, stat),
20 TP_STRUCT__entry(
21 __array(char, name, 32)
22 __field(s64, rmean)
23 __field(u64, rmin)
24 __field(u64, rmax)
25 __field(s64, rnr_samples)
26 __field(s64, rtime)
27 __field(s64, wmean)
28 __field(u64, wmin)
29 __field(u64, wmax)
30 __field(s64, wnr_samples)
31 __field(s64, wtime)
34 TP_fast_assign(
35 strncpy(__entry->name, dev_name(bdi->dev), 32);
36 __entry->rmean = stat[0].mean;
37 __entry->rmin = stat[0].min;
38 __entry->rmax = stat[0].max;
39 __entry->rnr_samples = stat[0].nr_samples;
40 __entry->wmean = stat[1].mean;
41 __entry->wmin = stat[1].min;
42 __entry->wmax = stat[1].max;
43 __entry->wnr_samples = stat[1].nr_samples;
46 TP_printk("%s: rmean=%llu, rmin=%llu, rmax=%llu, rsamples=%llu, "
47 "wmean=%llu, wmin=%llu, wmax=%llu, wsamples=%llu\n",
48 __entry->name, __entry->rmean, __entry->rmin, __entry->rmax,
49 __entry->rnr_samples, __entry->wmean, __entry->wmin,
50 __entry->wmax, __entry->wnr_samples)
53 /**
54 * wbt_lat - trace latency event
55 * @lat: latency trigger
57 TRACE_EVENT(wbt_lat,
59 TP_PROTO(struct backing_dev_info *bdi, unsigned long lat),
61 TP_ARGS(bdi, lat),
63 TP_STRUCT__entry(
64 __array(char, name, 32)
65 __field(unsigned long, lat)
68 TP_fast_assign(
69 strncpy(__entry->name, dev_name(bdi->dev), 32);
70 __entry->lat = div_u64(lat, 1000);
73 TP_printk("%s: latency %lluus\n", __entry->name,
74 (unsigned long long) __entry->lat)
77 /**
78 * wbt_step - trace wb event step
79 * @msg: context message
80 * @step: the current scale step count
81 * @window: the current monitoring window
82 * @bg: the current background queue limit
83 * @normal: the current normal writeback limit
84 * @max: the current max throughput writeback limit
86 TRACE_EVENT(wbt_step,
88 TP_PROTO(struct backing_dev_info *bdi, const char *msg,
89 int step, unsigned long window, unsigned int bg,
90 unsigned int normal, unsigned int max),
92 TP_ARGS(bdi, msg, step, window, bg, normal, max),
94 TP_STRUCT__entry(
95 __array(char, name, 32)
96 __field(const char *, msg)
97 __field(int, step)
98 __field(unsigned long, window)
99 __field(unsigned int, bg)
100 __field(unsigned int, normal)
101 __field(unsigned int, max)
104 TP_fast_assign(
105 strncpy(__entry->name, dev_name(bdi->dev), 32);
106 __entry->msg = msg;
107 __entry->step = step;
108 __entry->window = div_u64(window, 1000);
109 __entry->bg = bg;
110 __entry->normal = normal;
111 __entry->max = max;
114 TP_printk("%s: %s: step=%d, window=%luus, background=%u, normal=%u, max=%u\n",
115 __entry->name, __entry->msg, __entry->step, __entry->window,
116 __entry->bg, __entry->normal, __entry->max)
120 * wbt_timer - trace wb timer event
121 * @status: timer state status
122 * @step: the current scale step count
123 * @inflight: tracked writes inflight
125 TRACE_EVENT(wbt_timer,
127 TP_PROTO(struct backing_dev_info *bdi, unsigned int status,
128 int step, unsigned int inflight),
130 TP_ARGS(bdi, status, step, inflight),
132 TP_STRUCT__entry(
133 __array(char, name, 32)
134 __field(unsigned int, status)
135 __field(int, step)
136 __field(unsigned int, inflight)
139 TP_fast_assign(
140 strncpy(__entry->name, dev_name(bdi->dev), 32);
141 __entry->status = status;
142 __entry->step = step;
143 __entry->inflight = inflight;
146 TP_printk("%s: status=%u, step=%d, inflight=%u\n", __entry->name,
147 __entry->status, __entry->step, __entry->inflight)
150 #endif /* _TRACE_WBT_H */
152 /* This part must be outside protection */
153 #include <trace/define_trace.h>