1
2#ifndef __LINUX_BACKING_DEV_DEFS_H
3#define __LINUX_BACKING_DEV_DEFS_H
4
5#include <linux/list.h>
6#include <linux/radix-tree.h>
7#include <linux/rbtree.h>
8#include <linux/spinlock.h>
9#include <linux/percpu_counter.h>
10#include <linux/percpu-refcount.h>
11#include <linux/flex_proportions.h>
12#include <linux/timer.h>
13#include <linux/workqueue.h>
14#include <linux/kref.h>
15
16struct page;
17struct device;
18struct dentry;
19
20
21
22
23enum wb_state {
24 WB_registered,
25 WB_writeback_running,
26 WB_has_dirty_io,
27 WB_start_all,
28};
29
30enum wb_congested_state {
31 WB_async_congested,
32 WB_sync_congested,
33};
34
35typedef int (congested_fn)(void *, int);
36
37enum wb_stat_item {
38 WB_RECLAIMABLE,
39 WB_WRITEBACK,
40 WB_DIRTIED,
41 WB_WRITTEN,
42 NR_WB_STAT_ITEMS
43};
44
45#define WB_STAT_BATCH (8*(1+ilog2(nr_cpu_ids)))
46
47
48
49
50enum wb_reason {
51 WB_REASON_BACKGROUND,
52 WB_REASON_VMSCAN,
53 WB_REASON_SYNC,
54 WB_REASON_PERIODIC,
55 WB_REASON_LAPTOP_TIMER,
56 WB_REASON_FREE_MORE_MEM,
57 WB_REASON_FS_FREE_SPACE,
58
59
60
61
62
63
64 WB_REASON_FORKER_THREAD,
65
66 WB_REASON_MAX,
67};
68
69
70
71
72
73
74
75
76struct bdi_writeback_congested {
77 unsigned long state;
78 atomic_t refcnt;
79
80#ifdef CONFIG_CGROUP_WRITEBACK
81 struct backing_dev_info *__bdi;
82
83
84 int blkcg_id;
85 struct rb_node rb_node;
86#endif
87};
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108struct bdi_writeback {
109 struct backing_dev_info *bdi;
110
111 unsigned long state;
112 unsigned long last_old_flush;
113
114 struct list_head b_dirty;
115 struct list_head b_io;
116 struct list_head b_more_io;
117 struct list_head b_dirty_time;
118 spinlock_t list_lock;
119
120 struct percpu_counter stat[NR_WB_STAT_ITEMS];
121
122 struct bdi_writeback_congested *congested;
123
124 unsigned long bw_time_stamp;
125 unsigned long dirtied_stamp;
126 unsigned long written_stamp;
127 unsigned long write_bandwidth;
128 unsigned long avg_write_bandwidth;
129
130
131
132
133
134
135
136 unsigned long dirty_ratelimit;
137 unsigned long balanced_dirty_ratelimit;
138
139 struct fprop_local_percpu completions;
140 int dirty_exceeded;
141 enum wb_reason start_all_reason;
142
143 spinlock_t work_lock;
144 struct list_head work_list;
145 struct delayed_work dwork;
146
147 unsigned long dirty_sleep;
148
149 struct list_head bdi_node;
150
151#ifdef CONFIG_CGROUP_WRITEBACK
152 struct percpu_ref refcnt;
153 struct fprop_local_percpu memcg_completions;
154 struct cgroup_subsys_state *memcg_css;
155 struct cgroup_subsys_state *blkcg_css;
156 struct list_head memcg_node;
157 struct list_head blkcg_node;
158
159 union {
160 struct work_struct release_work;
161 struct rcu_head rcu;
162 };
163#endif
164};
165
166struct backing_dev_info {
167 struct list_head bdi_list;
168 unsigned long ra_pages;
169 unsigned long io_pages;
170 congested_fn *congested_fn;
171 void *congested_data;
172
173 const char *name;
174
175 struct kref refcnt;
176 unsigned int capabilities;
177 unsigned int min_ratio;
178 unsigned int max_ratio, max_prop_frac;
179
180
181
182
183
184 atomic_long_t tot_write_bandwidth;
185
186 struct bdi_writeback wb;
187 struct list_head wb_list;
188#ifdef CONFIG_CGROUP_WRITEBACK
189 struct radix_tree_root cgwb_tree;
190 struct rb_root cgwb_congested_tree;
191 struct mutex cgwb_release_mutex;
192#else
193 struct bdi_writeback_congested *wb_congested;
194#endif
195 wait_queue_head_t wb_waitq;
196
197 struct device *dev;
198 struct device *owner;
199
200 struct timer_list laptop_mode_wb_timer;
201
202#ifdef CONFIG_DEBUG_FS
203 struct dentry *debug_dir;
204 struct dentry *debug_stats;
205#endif
206};
207
208enum {
209 BLK_RW_ASYNC = 0,
210 BLK_RW_SYNC = 1,
211};
212
213void clear_wb_congested(struct bdi_writeback_congested *congested, int sync);
214void set_wb_congested(struct bdi_writeback_congested *congested, int sync);
215
216static inline void clear_bdi_congested(struct backing_dev_info *bdi, int sync)
217{
218 clear_wb_congested(bdi->wb.congested, sync);
219}
220
221static inline void set_bdi_congested(struct backing_dev_info *bdi, int sync)
222{
223 set_wb_congested(bdi->wb.congested, sync);
224}
225
226struct wb_lock_cookie {
227 bool locked;
228 unsigned long flags;
229};
230
231#ifdef CONFIG_CGROUP_WRITEBACK
232
233
234
235
236
237static inline bool wb_tryget(struct bdi_writeback *wb)
238{
239 if (wb != &wb->bdi->wb)
240 return percpu_ref_tryget(&wb->refcnt);
241 return true;
242}
243
244
245
246
247
248static inline void wb_get(struct bdi_writeback *wb)
249{
250 if (wb != &wb->bdi->wb)
251 percpu_ref_get(&wb->refcnt);
252}
253
254
255
256
257
258static inline void wb_put(struct bdi_writeback *wb)
259{
260 if (wb != &wb->bdi->wb)
261 percpu_ref_put(&wb->refcnt);
262}
263
264
265
266
267
268
269
270static inline bool wb_dying(struct bdi_writeback *wb)
271{
272 return percpu_ref_is_dying(&wb->refcnt);
273}
274
275#else
276
277static inline bool wb_tryget(struct bdi_writeback *wb)
278{
279 return true;
280}
281
282static inline void wb_get(struct bdi_writeback *wb)
283{
284}
285
286static inline void wb_put(struct bdi_writeback *wb)
287{
288}
289
290static inline bool wb_dying(struct bdi_writeback *wb)
291{
292 return false;
293}
294
295#endif
296
297#endif
298