blob: e19c677f219c14b78bf8d5fed4e891afad1c8a87 [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>
17#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/atomic.h>
19
Andrew Morton3fcfab12006-10-19 23:28:16 -070020struct page;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070021struct device;
Miklos Szeredi76f14182008-04-30 00:54:36 -070022struct dentry;
Andrew Morton3fcfab12006-10-19 23:28:16 -070023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024/*
25 * Bits in backing_dev_info.state
26 */
27enum bdi_state {
Jens Axboe03ba3782009-09-09 09:08:54 +020028 BDI_pending, /* On its way to being activated */
29 BDI_wb_alloc, /* Default embedded wb allocated */
Jens Axboe1faa16d2009-04-06 14:48:01 +020030 BDI_async_congested, /* The async (write) queue is getting full */
31 BDI_sync_congested, /* The sync queue is getting full */
Jens Axboe500b0672009-09-09 09:10:25 +020032 BDI_registered, /* bdi_register() was done */
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 BDI_unused, /* Available bits start here */
34};
35
36typedef int (congested_fn)(void *, int);
37
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070038enum bdi_stat_item {
Peter Zijlstrac9e51e42007-10-16 23:25:47 -070039 BDI_RECLAIMABLE,
Peter Zijlstra69cb51d2007-10-16 23:25:48 -070040 BDI_WRITEBACK,
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070041 NR_BDI_STAT_ITEMS
42};
43
44#define BDI_STAT_BATCH (8*(1+ilog2(nr_cpu_ids)))
45
Jens Axboe03ba3782009-09-09 09:08:54 +020046struct bdi_writeback {
47 struct list_head list; /* hangs off the bdi */
48
49 struct backing_dev_info *bdi; /* our parent bdi */
50 unsigned int nr;
51
52 unsigned long last_old_flush; /* last old data flush */
53
54 struct task_struct *task; /* writeback task */
55 struct list_head b_dirty; /* dirty inodes */
56 struct list_head b_io; /* parked for writeback */
57 struct list_head b_more_io; /* parked for more writeback */
58};
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060struct backing_dev_info {
Jens Axboe66f3b8e2009-09-02 09:19:46 +020061 struct list_head bdi_list;
Jens Axboecfc4ba52009-09-14 13:12:40 +020062 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 unsigned long ra_pages; /* max readahead in PAGE_CACHE_SIZE units */
64 unsigned long state; /* Always use atomic bitops on this */
65 unsigned int capabilities; /* Device capabilities */
66 congested_fn *congested_fn; /* Function pointer if device is md/dm */
67 void *congested_data; /* Pointer to aux data for congested func */
68 void (*unplug_io_fn)(struct backing_dev_info *, struct page *);
69 void *unplug_io_data;
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070070
Jens Axboed9938312009-06-12 14:45:52 +020071 char *name;
72
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070073 struct percpu_counter bdi_stat[NR_BDI_STAT_ITEMS];
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -070074
75 struct prop_local_percpu completions;
76 int dirty_exceeded;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070077
Peter Zijlstra189d3c42008-04-30 00:54:35 -070078 unsigned int min_ratio;
Peter Zijlstraa42dde02008-04-30 00:54:36 -070079 unsigned int max_ratio, max_prop_frac;
Peter Zijlstra189d3c42008-04-30 00:54:35 -070080
Jens Axboe03ba3782009-09-09 09:08:54 +020081 struct bdi_writeback wb; /* default writeback info for this bdi */
82 spinlock_t wb_lock; /* protects update side of wb_list */
83 struct list_head wb_list; /* the flusher threads hanging off this bdi */
84 unsigned long wb_mask; /* bitmask of registered tasks */
85 unsigned int wb_cnt; /* number of registered tasks */
Miklos Szeredi76f14182008-04-30 00:54:36 -070086
Jens Axboe03ba3782009-09-09 09:08:54 +020087 struct list_head work_list;
88
89 struct device *dev;
Jens Axboe66f3b8e2009-09-02 09:19:46 +020090
Miklos Szeredi76f14182008-04-30 00:54:36 -070091#ifdef CONFIG_DEBUG_FS
92 struct dentry *debug_dir;
93 struct dentry *debug_stats;
94#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070095};
96
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070097int bdi_init(struct backing_dev_info *bdi);
98void bdi_destroy(struct backing_dev_info *bdi);
99
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700100int bdi_register(struct backing_dev_info *bdi, struct device *parent,
101 const char *fmt, ...);
102int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev);
103void bdi_unregister(struct backing_dev_info *bdi);
Jens Axboec3c53202010-04-22 11:37:01 +0200104int bdi_setup_and_register(struct backing_dev_info *, char *, unsigned int);
Jens Axboea72bfd42009-09-26 00:07:46 +0200105void bdi_start_writeback(struct backing_dev_info *bdi, struct super_block *sb,
106 long nr_pages);
Jens Axboe03ba3782009-09-09 09:08:54 +0200107int bdi_writeback_task(struct bdi_writeback *wb);
108int bdi_has_dirty_io(struct backing_dev_info *bdi);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700109
Jens Axboe03ba3782009-09-09 09:08:54 +0200110extern spinlock_t bdi_lock;
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200111extern struct list_head bdi_list;
112
Jens Axboe03ba3782009-09-09 09:08:54 +0200113static inline int wb_has_dirty_io(struct bdi_writeback *wb)
114{
115 return !list_empty(&wb->b_dirty) ||
116 !list_empty(&wb->b_io) ||
117 !list_empty(&wb->b_more_io);
118}
119
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700120static inline void __add_bdi_stat(struct backing_dev_info *bdi,
121 enum bdi_stat_item item, s64 amount)
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700122{
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700123 __percpu_counter_add(&bdi->bdi_stat[item], amount, BDI_STAT_BATCH);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700124}
125
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700126static inline void __inc_bdi_stat(struct backing_dev_info *bdi,
127 enum bdi_stat_item item)
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700128{
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700129 __add_bdi_stat(bdi, item, 1);
130}
131
132static inline void inc_bdi_stat(struct backing_dev_info *bdi,
133 enum bdi_stat_item item)
134{
135 unsigned long flags;
136
137 local_irq_save(flags);
138 __inc_bdi_stat(bdi, item);
139 local_irq_restore(flags);
140}
141
142static inline void __dec_bdi_stat(struct backing_dev_info *bdi,
143 enum bdi_stat_item item)
144{
145 __add_bdi_stat(bdi, item, -1);
146}
147
148static inline void dec_bdi_stat(struct backing_dev_info *bdi,
149 enum bdi_stat_item item)
150{
151 unsigned long flags;
152
153 local_irq_save(flags);
154 __dec_bdi_stat(bdi, item);
155 local_irq_restore(flags);
156}
157
158static inline s64 bdi_stat(struct backing_dev_info *bdi,
159 enum bdi_stat_item item)
160{
161 return percpu_counter_read_positive(&bdi->bdi_stat[item]);
162}
163
164static inline s64 __bdi_stat_sum(struct backing_dev_info *bdi,
165 enum bdi_stat_item item)
166{
167 return percpu_counter_sum_positive(&bdi->bdi_stat[item]);
168}
169
170static inline s64 bdi_stat_sum(struct backing_dev_info *bdi,
171 enum bdi_stat_item item)
172{
173 s64 sum;
174 unsigned long flags;
175
176 local_irq_save(flags);
177 sum = __bdi_stat_sum(bdi, item);
178 local_irq_restore(flags);
179
180 return sum;
181}
182
Miklos Szeredidd5656e2008-04-30 00:54:37 -0700183extern void bdi_writeout_inc(struct backing_dev_info *bdi);
184
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700185/*
186 * maximal error of a stat counter.
187 */
188static inline unsigned long bdi_stat_error(struct backing_dev_info *bdi)
189{
190#ifdef CONFIG_SMP
191 return nr_cpu_ids * BDI_STAT_BATCH;
192#else
193 return 1;
194#endif
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700195}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700197int bdi_set_min_ratio(struct backing_dev_info *bdi, unsigned int min_ratio);
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700198int bdi_set_max_ratio(struct backing_dev_info *bdi, unsigned int max_ratio);
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200/*
201 * Flags in backing_dev_info::capability
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700202 *
203 * The first three flags control whether dirty pages will contribute to the
204 * VM's accounting and whether writepages() should be called for dirty pages
205 * (something that would not, for example, be appropriate for ramfs)
206 *
207 * WARNING: these flags are closely related and should not normally be
208 * used separately. The BDI_CAP_NO_ACCT_AND_WRITEBACK combines these
209 * three flags into a single convenience macro.
210 *
211 * BDI_CAP_NO_ACCT_DIRTY: Dirty pages shouldn't contribute to accounting
212 * BDI_CAP_NO_WRITEBACK: Don't write pages back
213 * BDI_CAP_NO_ACCT_WB: Don't automatically account writeback pages
214 *
215 * These flags let !MMU mmap() govern direct device mapping vs immediate
216 * copying more easily for MAP_PRIVATE, especially for ROM filesystems.
217 *
218 * BDI_CAP_MAP_COPY: Copy can be mapped (MAP_PRIVATE)
219 * BDI_CAP_MAP_DIRECT: Can be mapped directly (MAP_SHARED)
220 * BDI_CAP_READ_MAP: Can be mapped for reading
221 * BDI_CAP_WRITE_MAP: Can be mapped for writing
222 * BDI_CAP_EXEC_MAP: Can be mapped for execution
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700223 *
224 * BDI_CAP_SWAP_BACKED: Count shmem/tmpfs objects as swap-backed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 */
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700226#define BDI_CAP_NO_ACCT_DIRTY 0x00000001
227#define BDI_CAP_NO_WRITEBACK 0x00000002
228#define BDI_CAP_MAP_COPY 0x00000004
229#define BDI_CAP_MAP_DIRECT 0x00000008
230#define BDI_CAP_READ_MAP 0x00000010
231#define BDI_CAP_WRITE_MAP 0x00000020
232#define BDI_CAP_EXEC_MAP 0x00000040
233#define BDI_CAP_NO_ACCT_WB 0x00000080
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700234#define BDI_CAP_SWAP_BACKED 0x00000100
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236#define BDI_CAP_VMFLAGS \
237 (BDI_CAP_READ_MAP | BDI_CAP_WRITE_MAP | BDI_CAP_EXEC_MAP)
238
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700239#define BDI_CAP_NO_ACCT_AND_WRITEBACK \
240 (BDI_CAP_NO_WRITEBACK | BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_ACCT_WB)
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242#if defined(VM_MAYREAD) && \
243 (BDI_CAP_READ_MAP != VM_MAYREAD || \
244 BDI_CAP_WRITE_MAP != VM_MAYWRITE || \
245 BDI_CAP_EXEC_MAP != VM_MAYEXEC)
246#error please change backing_dev_info::capabilities flags
247#endif
248
249extern struct backing_dev_info default_backing_dev_info;
250void default_unplug_io_fn(struct backing_dev_info *bdi, struct page *page);
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252int writeback_in_progress(struct backing_dev_info *bdi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254static inline int bdi_congested(struct backing_dev_info *bdi, int bdi_bits)
255{
256 if (bdi->congested_fn)
257 return bdi->congested_fn(bdi->congested_data, bdi_bits);
258 return (bdi->state & bdi_bits);
259}
260
261static inline int bdi_read_congested(struct backing_dev_info *bdi)
262{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200263 return bdi_congested(bdi, 1 << BDI_sync_congested);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
266static inline int bdi_write_congested(struct backing_dev_info *bdi)
267{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200268 return bdi_congested(bdi, 1 << BDI_async_congested);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271static inline int bdi_rw_congested(struct backing_dev_info *bdi)
272{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200273 return bdi_congested(bdi, (1 << BDI_sync_congested) |
274 (1 << BDI_async_congested));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
Trond Myklebust373c0a72009-07-11 10:06:54 -0400277enum {
278 BLK_RW_ASYNC = 0,
279 BLK_RW_SYNC = 1,
280};
281
Jens Axboe8aa7e842009-07-09 14:52:32 +0200282void clear_bdi_congested(struct backing_dev_info *bdi, int sync);
283void set_bdi_congested(struct backing_dev_info *bdi, int sync);
284long congestion_wait(int sync, long timeout);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700287static inline bool bdi_cap_writeback_dirty(struct backing_dev_info *bdi)
288{
289 return !(bdi->capabilities & BDI_CAP_NO_WRITEBACK);
290}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700292static inline bool bdi_cap_account_dirty(struct backing_dev_info *bdi)
293{
294 return !(bdi->capabilities & BDI_CAP_NO_ACCT_DIRTY);
295}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700297static inline bool bdi_cap_account_writeback(struct backing_dev_info *bdi)
298{
299 /* Paranoia: BDI_CAP_NO_WRITEBACK implies BDI_CAP_NO_ACCT_WB */
300 return !(bdi->capabilities & (BDI_CAP_NO_ACCT_WB |
301 BDI_CAP_NO_WRITEBACK));
302}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700304static inline bool bdi_cap_swap_backed(struct backing_dev_info *bdi)
305{
306 return bdi->capabilities & BDI_CAP_SWAP_BACKED;
307}
308
Jens Axboe03ba3782009-09-09 09:08:54 +0200309static inline bool bdi_cap_flush_forker(struct backing_dev_info *bdi)
310{
311 return bdi == &default_backing_dev_info;
312}
313
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700314static inline bool mapping_cap_writeback_dirty(struct address_space *mapping)
315{
316 return bdi_cap_writeback_dirty(mapping->backing_dev_info);
317}
318
319static inline bool mapping_cap_account_dirty(struct address_space *mapping)
320{
321 return bdi_cap_account_dirty(mapping->backing_dev_info);
322}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700324static inline bool mapping_cap_swap_backed(struct address_space *mapping)
325{
326 return bdi_cap_swap_backed(mapping->backing_dev_info);
327}
328
Jens Axboe03ba3782009-09-09 09:08:54 +0200329static inline int bdi_sched_wait(void *word)
330{
331 schedule();
332 return 0;
333}
334
Jens Axboeb9d128f2009-10-29 13:59:26 +0100335static inline void blk_run_backing_dev(struct backing_dev_info *bdi,
336 struct page *page)
337{
338 if (bdi && bdi->unplug_io_fn)
339 bdi->unplug_io_fn(bdi, page);
340}
341
342static inline void blk_run_address_space(struct address_space *mapping)
343{
344 if (mapping)
345 blk_run_backing_dev(mapping->backing_dev_info, NULL);
346}
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348#endif /* _LINUX_BACKING_DEV_H */