blob: bf6cf9518c89c64ef7572d2716105a49f8e8df50 [file] [log] [blame]
Kent Overstreetcafe5632013-03-23 16:11:31 -07001/*
2 * bcache stats code
3 *
4 * Copyright 2012 Google, Inc.
5 */
6
7#include "bcache.h"
8#include "stats.h"
9#include "btree.h"
10#include "request.h"
11#include "sysfs.h"
12
13/*
14 * We keep absolute totals of various statistics, and addionally a set of three
15 * rolling averages.
16 *
17 * Every so often, a timer goes off and rescales the rolling averages.
18 * accounting_rescale[] is how many times the timer has to go off before we
19 * rescale each set of numbers; that gets us half lives of 5 minutes, one hour,
20 * and one day.
21 *
22 * accounting_delay is how often the timer goes off - 22 times in 5 minutes,
23 * and accounting_weight is what we use to rescale:
24 *
25 * pow(31 / 32, 22) ~= 1/2
26 *
27 * So that we don't have to increment each set of numbers every time we (say)
28 * get a cache hit, we increment a single atomic_t in acc->collector, and when
29 * the rescale function runs it resets the atomic counter to 0 and adds its
30 * old value to each of the exported numbers.
31 *
32 * To reduce rounding error, the numbers in struct cache_stats are all
33 * stored left shifted by 16, and scaled back in the sysfs show() function.
34 */
35
36static const unsigned DAY_RESCALE = 288;
37static const unsigned HOUR_RESCALE = 12;
38static const unsigned FIVE_MINUTE_RESCALE = 1;
39static const unsigned accounting_delay = (HZ * 300) / 22;
40static const unsigned accounting_weight = 32;
41
42/* sysfs reading/writing */
43
44read_attribute(cache_hits);
45read_attribute(cache_misses);
46read_attribute(cache_bypass_hits);
47read_attribute(cache_bypass_misses);
48read_attribute(cache_hit_ratio);
49read_attribute(cache_readaheads);
50read_attribute(cache_miss_collisions);
51read_attribute(bypassed);
52
53SHOW(bch_stats)
54{
55 struct cache_stats *s =
56 container_of(kobj, struct cache_stats, kobj);
57#define var(stat) (s->stat >> 16)
58 var_print(cache_hits);
59 var_print(cache_misses);
60 var_print(cache_bypass_hits);
61 var_print(cache_bypass_misses);
62
63 sysfs_print(cache_hit_ratio,
64 DIV_SAFE(var(cache_hits) * 100,
65 var(cache_hits) + var(cache_misses)));
66
67 var_print(cache_readaheads);
68 var_print(cache_miss_collisions);
69 sysfs_hprint(bypassed, var(sectors_bypassed) << 9);
70#undef var
71 return 0;
72}
73
74STORE(bch_stats)
75{
76 return size;
77}
78
79static void bch_stats_release(struct kobject *k)
80{
81}
82
83static struct attribute *bch_stats_files[] = {
84 &sysfs_cache_hits,
85 &sysfs_cache_misses,
86 &sysfs_cache_bypass_hits,
87 &sysfs_cache_bypass_misses,
88 &sysfs_cache_hit_ratio,
89 &sysfs_cache_readaheads,
90 &sysfs_cache_miss_collisions,
91 &sysfs_bypassed,
92 NULL
93};
94static KTYPE(bch_stats);
95
96static void scale_accounting(unsigned long data);
97
98void bch_cache_accounting_init(struct cache_accounting *acc, struct closure *parent)
99{
100 kobject_init(&acc->total.kobj, &bch_stats_ktype);
101 kobject_init(&acc->five_minute.kobj, &bch_stats_ktype);
102 kobject_init(&acc->hour.kobj, &bch_stats_ktype);
103 kobject_init(&acc->day.kobj, &bch_stats_ktype);
104
105 closure_init(&acc->cl, parent);
106 init_timer(&acc->timer);
107 acc->timer.expires = jiffies + accounting_delay;
108 acc->timer.data = (unsigned long) acc;
109 acc->timer.function = scale_accounting;
110 add_timer(&acc->timer);
111}
112
113int bch_cache_accounting_add_kobjs(struct cache_accounting *acc,
114 struct kobject *parent)
115{
116 int ret = kobject_add(&acc->total.kobj, parent,
117 "stats_total");
118 ret = ret ?: kobject_add(&acc->five_minute.kobj, parent,
119 "stats_five_minute");
120 ret = ret ?: kobject_add(&acc->hour.kobj, parent,
121 "stats_hour");
122 ret = ret ?: kobject_add(&acc->day.kobj, parent,
123 "stats_day");
124 return ret;
125}
126
127void bch_cache_accounting_clear(struct cache_accounting *acc)
128{
129 memset(&acc->total.cache_hits,
130 0,
131 sizeof(unsigned long) * 7);
132}
133
134void bch_cache_accounting_destroy(struct cache_accounting *acc)
135{
136 kobject_put(&acc->total.kobj);
137 kobject_put(&acc->five_minute.kobj);
138 kobject_put(&acc->hour.kobj);
139 kobject_put(&acc->day.kobj);
140
141 atomic_set(&acc->closing, 1);
142 if (del_timer_sync(&acc->timer))
143 closure_return(&acc->cl);
144}
145
146/* EWMA scaling */
147
148static void scale_stat(unsigned long *stat)
149{
150 *stat = ewma_add(*stat, 0, accounting_weight, 0);
151}
152
153static void scale_stats(struct cache_stats *stats, unsigned long rescale_at)
154{
155 if (++stats->rescale == rescale_at) {
156 stats->rescale = 0;
157 scale_stat(&stats->cache_hits);
158 scale_stat(&stats->cache_misses);
159 scale_stat(&stats->cache_bypass_hits);
160 scale_stat(&stats->cache_bypass_misses);
161 scale_stat(&stats->cache_readaheads);
162 scale_stat(&stats->cache_miss_collisions);
163 scale_stat(&stats->sectors_bypassed);
164 }
165}
166
167static void scale_accounting(unsigned long data)
168{
169 struct cache_accounting *acc = (struct cache_accounting *) data;
170
171#define move_stat(name) do { \
172 unsigned t = atomic_xchg(&acc->collector.name, 0); \
173 t <<= 16; \
174 acc->five_minute.name += t; \
175 acc->hour.name += t; \
176 acc->day.name += t; \
177 acc->total.name += t; \
178} while (0)
179
180 move_stat(cache_hits);
181 move_stat(cache_misses);
182 move_stat(cache_bypass_hits);
183 move_stat(cache_bypass_misses);
184 move_stat(cache_readaheads);
185 move_stat(cache_miss_collisions);
186 move_stat(sectors_bypassed);
187
188 scale_stats(&acc->total, 0);
189 scale_stats(&acc->day, DAY_RESCALE);
190 scale_stats(&acc->hour, HOUR_RESCALE);
191 scale_stats(&acc->five_minute, FIVE_MINUTE_RESCALE);
192
193 acc->timer.expires += accounting_delay;
194
195 if (!atomic_read(&acc->closing))
196 add_timer(&acc->timer);
197 else
198 closure_return(&acc->cl);
199}
200
201static void mark_cache_stats(struct cache_stat_collector *stats,
202 bool hit, bool bypass)
203{
204 if (!bypass)
205 if (hit)
206 atomic_inc(&stats->cache_hits);
207 else
208 atomic_inc(&stats->cache_misses);
209 else
210 if (hit)
211 atomic_inc(&stats->cache_bypass_hits);
212 else
213 atomic_inc(&stats->cache_bypass_misses);
214}
215
216void bch_mark_cache_accounting(struct search *s, bool hit, bool bypass)
217{
218 struct cached_dev *dc = container_of(s->d, struct cached_dev, disk);
219 mark_cache_stats(&dc->accounting.collector, hit, bypass);
220 mark_cache_stats(&s->op.c->accounting.collector, hit, bypass);
221#ifdef CONFIG_CGROUP_BCACHE
222 mark_cache_stats(&(bch_bio_to_cgroup(s->orig_bio)->stats), hit, bypass);
223#endif
224}
225
226void bch_mark_cache_readahead(struct search *s)
227{
228 struct cached_dev *dc = container_of(s->d, struct cached_dev, disk);
229 atomic_inc(&dc->accounting.collector.cache_readaheads);
230 atomic_inc(&s->op.c->accounting.collector.cache_readaheads);
231}
232
233void bch_mark_cache_miss_collision(struct search *s)
234{
235 struct cached_dev *dc = container_of(s->d, struct cached_dev, disk);
236 atomic_inc(&dc->accounting.collector.cache_miss_collisions);
237 atomic_inc(&s->op.c->accounting.collector.cache_miss_collisions);
238}
239
240void bch_mark_sectors_bypassed(struct search *s, int sectors)
241{
242 struct cached_dev *dc = container_of(s->d, struct cached_dev, disk);
243 atomic_add(sectors, &dc->accounting.collector.sectors_bypassed);
244 atomic_add(sectors, &s->op.c->accounting.collector.sectors_bypassed);
245}