2 #define TRACE_SYSTEM wbt
4 #if !defined(_TRACE_WBT_H) || defined(TRACE_HEADER_MULTI_READ)
7 #include <linux/tracepoint.h>
8 #include "../../../block/blk-wbt.h"
11 * wbt_stat - trace stats for blk_wb
12 * @stat: array of read/write stats
16 TP_PROTO(struct backing_dev_info
*bdi
, struct blk_rq_stat
*stat
),
21 __array(char, name
, 32)
25 __field(s64
, rnr_samples
)
30 __field(s64
, wnr_samples
)
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
)
54 * wbt_lat - trace latency event
55 * @lat: latency trigger
59 TP_PROTO(struct backing_dev_info
*bdi
, unsigned long lat
),
64 __array(char, name
, 32)
65 __field(unsigned long, lat
)
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
)
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
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
),
95 __array(char, name
, 32)
96 __field(const char *, msg
)
98 __field(unsigned long, window
)
99 __field(unsigned int, bg
)
100 __field(unsigned int, normal
)
101 __field(unsigned int, max
)
105 strncpy(__entry
->name
, dev_name(bdi
->dev
), 32);
107 __entry
->step
= step
;
108 __entry
->window
= div_u64(window
, 1000);
110 __entry
->normal
= normal
;
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
),
133 __array(char, name
, 32)
134 __field(unsigned int, status
)
136 __field(unsigned int, inflight
)
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>