blob: 9ae2889096b695cbeb7dfbc086ed4bb7484c1c40 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/linux/backing-dev.h
3 *
4 * low-level device information and state which is propagated up through
5 * to high-level code.
6 */
7
8#ifndef _LINUX_BACKING_DEV_H
9#define _LINUX_BACKING_DEV_H
10
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070011#include <linux/percpu_counter.h>
12#include <linux/log2.h>
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -070013#include <linux/proportions.h>
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070014#include <linux/kernel.h>
Miklos Szeredie4ad08f2008-04-30 00:54:37 -070015#include <linux/fs.h>
Jens Axboe03ba3782009-09-09 09:08:54 +020016#include <linux/sched.h>
Matthew Garrett31373d02010-04-06 14:25:14 +020017#include <linux/timer.h>
Jens Axboe03ba3782009-09-09 09:08:54 +020018#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/atomic.h>
20
Andrew Morton3fcfab12006-10-19 23:28:16 -070021struct page;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070022struct device;
Miklos Szeredi76f14182008-04-30 00:54:36 -070023struct dentry;
Andrew Morton3fcfab12006-10-19 23:28:16 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025/*
26 * Bits in backing_dev_info.state
27 */
28enum bdi_state {
Jens Axboe03ba3782009-09-09 09:08:54 +020029 BDI_pending, /* On its way to being activated */
30 BDI_wb_alloc, /* Default embedded wb allocated */
Jens Axboe1faa16d2009-04-06 14:48:01 +020031 BDI_async_congested, /* The async (write) queue is getting full */
32 BDI_sync_congested, /* The sync queue is getting full */
Jens Axboe500b0672009-09-09 09:10:25 +020033 BDI_registered, /* bdi_register() was done */
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 BDI_unused, /* Available bits start here */
35};
36
37typedef int (congested_fn)(void *, int);
38
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070039enum bdi_stat_item {
Peter Zijlstrac9e51e42007-10-16 23:25:47 -070040 BDI_RECLAIMABLE,
Peter Zijlstra69cb51d2007-10-16 23:25:48 -070041 BDI_WRITEBACK,
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070042 NR_BDI_STAT_ITEMS
43};
44
45#define BDI_STAT_BATCH (8*(1+ilog2(nr_cpu_ids)))
46
Jens Axboe03ba3782009-09-09 09:08:54 +020047struct bdi_writeback {
48 struct list_head list; /* hangs off the bdi */
49
50 struct backing_dev_info *bdi; /* our parent bdi */
51 unsigned int nr;
52
53 unsigned long last_old_flush; /* last old data flush */
54
55 struct task_struct *task; /* writeback task */
56 struct list_head b_dirty; /* dirty inodes */
57 struct list_head b_io; /* parked for writeback */
58 struct list_head b_more_io; /* parked for more writeback */
59};
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061struct backing_dev_info {
Jens Axboe66f3b8e2009-09-02 09:19:46 +020062 struct list_head bdi_list;
Jens Axboecfc4ba52009-09-14 13:12:40 +020063 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 unsigned long ra_pages; /* max readahead in PAGE_CACHE_SIZE units */
65 unsigned long state; /* Always use atomic bitops on this */
66 unsigned int capabilities; /* Device capabilities */
67 congested_fn *congested_fn; /* Function pointer if device is md/dm */
68 void *congested_data; /* Pointer to aux data for congested func */
69 void (*unplug_io_fn)(struct backing_dev_info *, struct page *);
70 void *unplug_io_data;
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070071
Jens Axboed9938312009-06-12 14:45:52 +020072 char *name;
73
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070074 struct percpu_counter bdi_stat[NR_BDI_STAT_ITEMS];
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -070075
76 struct prop_local_percpu completions;
77 int dirty_exceeded;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070078
Peter Zijlstra189d3c42008-04-30 00:54:35 -070079 unsigned int min_ratio;
Peter Zijlstraa42dde02008-04-30 00:54:36 -070080 unsigned int max_ratio, max_prop_frac;
Peter Zijlstra189d3c42008-04-30 00:54:35 -070081
Jens Axboe03ba3782009-09-09 09:08:54 +020082 struct bdi_writeback wb; /* default writeback info for this bdi */
83 spinlock_t wb_lock; /* protects update side of wb_list */
84 struct list_head wb_list; /* the flusher threads hanging off this bdi */
85 unsigned long wb_mask; /* bitmask of registered tasks */
86 unsigned int wb_cnt; /* number of registered tasks */
Miklos Szeredi76f14182008-04-30 00:54:36 -070087
Jens Axboe03ba3782009-09-09 09:08:54 +020088 struct list_head work_list;
89
90 struct device *dev;
Jens Axboe66f3b8e2009-09-02 09:19:46 +020091
Matthew Garrett31373d02010-04-06 14:25:14 +020092 struct timer_list laptop_mode_wb_timer;
93
Miklos Szeredi76f14182008-04-30 00:54:36 -070094#ifdef CONFIG_DEBUG_FS
95 struct dentry *debug_dir;
96 struct dentry *debug_stats;
97#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070098};
99
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700100int bdi_init(struct backing_dev_info *bdi);
101void bdi_destroy(struct backing_dev_info *bdi);
102
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700103int bdi_register(struct backing_dev_info *bdi, struct device *parent,
104 const char *fmt, ...);
105int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev);
106void bdi_unregister(struct backing_dev_info *bdi);
Jens Axboec3c53202010-04-22 11:37:01 +0200107int bdi_setup_and_register(struct backing_dev_info *, char *, unsigned int);
Christoph Hellwigc5444192010-06-08 18:15:15 +0200108void bdi_start_writeback(struct backing_dev_info *bdi, long nr_pages);
109void bdi_start_background_writeback(struct backing_dev_info *bdi);
Jens Axboe03ba3782009-09-09 09:08:54 +0200110int bdi_writeback_task(struct bdi_writeback *wb);
111int bdi_has_dirty_io(struct backing_dev_info *bdi);
Jens Axboe64231042010-05-21 20:00:35 +0200112void bdi_arm_supers_timer(void);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700113
Jens Axboe03ba3782009-09-09 09:08:54 +0200114extern spinlock_t bdi_lock;
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200115extern struct list_head bdi_list;
116
Jens Axboe03ba3782009-09-09 09:08:54 +0200117static inline int wb_has_dirty_io(struct bdi_writeback *wb)
118{
119 return !list_empty(&wb->b_dirty) ||
120 !list_empty(&wb->b_io) ||
121 !list_empty(&wb->b_more_io);
122}
123
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700124static inline void __add_bdi_stat(struct backing_dev_info *bdi,
125 enum bdi_stat_item item, s64 amount)
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700126{
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700127 __percpu_counter_add(&bdi->bdi_stat[item], amount, BDI_STAT_BATCH);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700128}
129
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700130static inline void __inc_bdi_stat(struct backing_dev_info *bdi,
131 enum bdi_stat_item item)
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700132{
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700133 __add_bdi_stat(bdi, item, 1);
134}
135
136static inline void inc_bdi_stat(struct backing_dev_info *bdi,
137 enum bdi_stat_item item)
138{
139 unsigned long flags;
140
141 local_irq_save(flags);
142 __inc_bdi_stat(bdi, item);
143 local_irq_restore(flags);
144}
145
146static inline void __dec_bdi_stat(struct backing_dev_info *bdi,
147 enum bdi_stat_item item)
148{
149 __add_bdi_stat(bdi, item, -1);
150}
151
152static inline void dec_bdi_stat(struct backing_dev_info *bdi,
153 enum bdi_stat_item item)
154{
155 unsigned long flags;
156
157 local_irq_save(flags);
158 __dec_bdi_stat(bdi, item);
159 local_irq_restore(flags);
160}
161
162static inline s64 bdi_stat(struct backing_dev_info *bdi,
163 enum bdi_stat_item item)
164{
165 return percpu_counter_read_positive(&bdi->bdi_stat[item]);
166}
167
168static inline s64 __bdi_stat_sum(struct backing_dev_info *bdi,
169 enum bdi_stat_item item)
170{
171 return percpu_counter_sum_positive(&bdi->bdi_stat[item]);
172}
173
174static inline s64 bdi_stat_sum(struct backing_dev_info *bdi,
175 enum bdi_stat_item item)
176{
177 s64 sum;
178 unsigned long flags;
179
180 local_irq_save(flags);
181 sum = __bdi_stat_sum(bdi, item);
182 local_irq_restore(flags);
183
184 return sum;
185}
186
Miklos Szeredidd5656e2008-04-30 00:54:37 -0700187extern void bdi_writeout_inc(struct backing_dev_info *bdi);
188
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700189/*
190 * maximal error of a stat counter.
191 */
192static inline unsigned long bdi_stat_error(struct backing_dev_info *bdi)
193{
194#ifdef CONFIG_SMP
195 return nr_cpu_ids * BDI_STAT_BATCH;
196#else
197 return 1;
198#endif
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700199}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700201int bdi_set_min_ratio(struct backing_dev_info *bdi, unsigned int min_ratio);
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700202int bdi_set_max_ratio(struct backing_dev_info *bdi, unsigned int max_ratio);
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204/*
205 * Flags in backing_dev_info::capability
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700206 *
207 * The first three flags control whether dirty pages will contribute to the
208 * VM's accounting and whether writepages() should be called for dirty pages
209 * (something that would not, for example, be appropriate for ramfs)
210 *
211 * WARNING: these flags are closely related and should not normally be
212 * used separately. The BDI_CAP_NO_ACCT_AND_WRITEBACK combines these
213 * three flags into a single convenience macro.
214 *
215 * BDI_CAP_NO_ACCT_DIRTY: Dirty pages shouldn't contribute to accounting
216 * BDI_CAP_NO_WRITEBACK: Don't write pages back
217 * BDI_CAP_NO_ACCT_WB: Don't automatically account writeback pages
218 *
219 * These flags let !MMU mmap() govern direct device mapping vs immediate
220 * copying more easily for MAP_PRIVATE, especially for ROM filesystems.
221 *
222 * BDI_CAP_MAP_COPY: Copy can be mapped (MAP_PRIVATE)
223 * BDI_CAP_MAP_DIRECT: Can be mapped directly (MAP_SHARED)
224 * BDI_CAP_READ_MAP: Can be mapped for reading
225 * BDI_CAP_WRITE_MAP: Can be mapped for writing
226 * BDI_CAP_EXEC_MAP: Can be mapped for execution
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700227 *
228 * BDI_CAP_SWAP_BACKED: Count shmem/tmpfs objects as swap-backed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 */
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700230#define BDI_CAP_NO_ACCT_DIRTY 0x00000001
231#define BDI_CAP_NO_WRITEBACK 0x00000002
232#define BDI_CAP_MAP_COPY 0x00000004
233#define BDI_CAP_MAP_DIRECT 0x00000008
234#define BDI_CAP_READ_MAP 0x00000010
235#define BDI_CAP_WRITE_MAP 0x00000020
236#define BDI_CAP_EXEC_MAP 0x00000040
237#define BDI_CAP_NO_ACCT_WB 0x00000080
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700238#define BDI_CAP_SWAP_BACKED 0x00000100
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240#define BDI_CAP_VMFLAGS \
241 (BDI_CAP_READ_MAP | BDI_CAP_WRITE_MAP | BDI_CAP_EXEC_MAP)
242
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700243#define BDI_CAP_NO_ACCT_AND_WRITEBACK \
244 (BDI_CAP_NO_WRITEBACK | BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_ACCT_WB)
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246#if defined(VM_MAYREAD) && \
247 (BDI_CAP_READ_MAP != VM_MAYREAD || \
248 BDI_CAP_WRITE_MAP != VM_MAYWRITE || \
249 BDI_CAP_EXEC_MAP != VM_MAYEXEC)
250#error please change backing_dev_info::capabilities flags
251#endif
252
253extern struct backing_dev_info default_backing_dev_info;
Jörn Engel5129a462010-04-25 08:54:42 +0200254extern struct backing_dev_info noop_backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255void default_unplug_io_fn(struct backing_dev_info *bdi, struct page *page);
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257int writeback_in_progress(struct backing_dev_info *bdi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259static inline int bdi_congested(struct backing_dev_info *bdi, int bdi_bits)
260{
261 if (bdi->congested_fn)
262 return bdi->congested_fn(bdi->congested_data, bdi_bits);
263 return (bdi->state & bdi_bits);
264}
265
266static inline int bdi_read_congested(struct backing_dev_info *bdi)
267{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200268 return bdi_congested(bdi, 1 << BDI_sync_congested);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271static inline int bdi_write_congested(struct backing_dev_info *bdi)
272{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200273 return bdi_congested(bdi, 1 << BDI_async_congested);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
276static inline int bdi_rw_congested(struct backing_dev_info *bdi)
277{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200278 return bdi_congested(bdi, (1 << BDI_sync_congested) |
279 (1 << BDI_async_congested));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
Trond Myklebust373c0a72009-07-11 10:06:54 -0400282enum {
283 BLK_RW_ASYNC = 0,
284 BLK_RW_SYNC = 1,
285};
286
Jens Axboe8aa7e842009-07-09 14:52:32 +0200287void clear_bdi_congested(struct backing_dev_info *bdi, int sync);
288void set_bdi_congested(struct backing_dev_info *bdi, int sync);
289long congestion_wait(int sync, long timeout);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700292static inline bool bdi_cap_writeback_dirty(struct backing_dev_info *bdi)
293{
294 return !(bdi->capabilities & BDI_CAP_NO_WRITEBACK);
295}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700297static inline bool bdi_cap_account_dirty(struct backing_dev_info *bdi)
298{
299 return !(bdi->capabilities & BDI_CAP_NO_ACCT_DIRTY);
300}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700302static inline bool bdi_cap_account_writeback(struct backing_dev_info *bdi)
303{
304 /* Paranoia: BDI_CAP_NO_WRITEBACK implies BDI_CAP_NO_ACCT_WB */
305 return !(bdi->capabilities & (BDI_CAP_NO_ACCT_WB |
306 BDI_CAP_NO_WRITEBACK));
307}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700309static inline bool bdi_cap_swap_backed(struct backing_dev_info *bdi)
310{
311 return bdi->capabilities & BDI_CAP_SWAP_BACKED;
312}
313
Jens Axboe03ba3782009-09-09 09:08:54 +0200314static inline bool bdi_cap_flush_forker(struct backing_dev_info *bdi)
315{
316 return bdi == &default_backing_dev_info;
317}
318
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700319static inline bool mapping_cap_writeback_dirty(struct address_space *mapping)
320{
321 return bdi_cap_writeback_dirty(mapping->backing_dev_info);
322}
323
324static inline bool mapping_cap_account_dirty(struct address_space *mapping)
325{
326 return bdi_cap_account_dirty(mapping->backing_dev_info);
327}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700329static inline bool mapping_cap_swap_backed(struct address_space *mapping)
330{
331 return bdi_cap_swap_backed(mapping->backing_dev_info);
332}
333
Jens Axboe03ba3782009-09-09 09:08:54 +0200334static inline int bdi_sched_wait(void *word)
335{
336 schedule();
337 return 0;
338}
339
Jens Axboeb9d128f2009-10-29 13:59:26 +0100340static inline void blk_run_backing_dev(struct backing_dev_info *bdi,
341 struct page *page)
342{
343 if (bdi && bdi->unplug_io_fn)
344 bdi->unplug_io_fn(bdi, page);
345}
346
347static inline void blk_run_address_space(struct address_space *mapping)
348{
349 if (mapping)
350 blk_run_backing_dev(mapping->backing_dev_info, NULL);
351}
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353#endif /* _LINUX_BACKING_DEV_H */