blob: b1dc2d4b9cddc5ef2057ba49a26a9b084cbd0e94 [file] [log] [blame]
Andrew Morton3fcfab12006-10-19 23:28:16 -07001
2#include <linux/wait.h>
3#include <linux/backing-dev.h>
Jens Axboe03ba3782009-09-09 09:08:54 +02004#include <linux/kthread.h>
5#include <linux/freezer.h>
Andrew Morton3fcfab12006-10-19 23:28:16 -07006#include <linux/fs.h>
Jens Axboe26160152009-03-17 09:35:06 +01007#include <linux/pagemap.h>
Jens Axboe03ba3782009-09-09 09:08:54 +02008#include <linux/mm.h>
Andrew Morton3fcfab12006-10-19 23:28:16 -07009#include <linux/sched.h>
10#include <linux/module.h>
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070011#include <linux/writeback.h>
12#include <linux/device.h>
Dave Chinner455b2862010-07-07 13:24:06 +100013#include <trace/events/writeback.h>
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070014
Jens Axboec3c53202010-04-22 11:37:01 +020015static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
16
Jens Axboe26160152009-03-17 09:35:06 +010017void default_unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
18{
19}
20EXPORT_SYMBOL(default_unplug_io_fn);
21
22struct backing_dev_info default_backing_dev_info = {
Jens Axboed9938312009-06-12 14:45:52 +020023 .name = "default",
Jens Axboe26160152009-03-17 09:35:06 +010024 .ra_pages = VM_MAX_READAHEAD * 1024 / PAGE_CACHE_SIZE,
25 .state = 0,
26 .capabilities = BDI_CAP_MAP_COPY,
27 .unplug_io_fn = default_unplug_io_fn,
28};
29EXPORT_SYMBOL_GPL(default_backing_dev_info);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070030
Jörn Engel5129a462010-04-25 08:54:42 +020031struct backing_dev_info noop_backing_dev_info = {
32 .name = "noop",
33};
34EXPORT_SYMBOL_GPL(noop_backing_dev_info);
35
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070036static struct class *bdi_class;
Jens Axboecfc4ba52009-09-14 13:12:40 +020037
38/*
39 * bdi_lock protects updates to bdi_list and bdi_pending_list, as well as
40 * reader side protection for bdi_pending_list. bdi_list has RCU reader side
41 * locking.
42 */
Jens Axboe03ba3782009-09-09 09:08:54 +020043DEFINE_SPINLOCK(bdi_lock);
Jens Axboe66f3b8e2009-09-02 09:19:46 +020044LIST_HEAD(bdi_list);
Jens Axboe03ba3782009-09-09 09:08:54 +020045LIST_HEAD(bdi_pending_list);
46
47static struct task_struct *sync_supers_tsk;
48static struct timer_list sync_supers_timer;
49
50static int bdi_sync_supers(void *);
51static void sync_supers_timer_fn(unsigned long);
Jens Axboe03ba3782009-09-09 09:08:54 +020052
Artem Bityutskiy6f904ff2010-07-25 14:29:11 +030053static void bdi_add_default_flusher_thread(struct backing_dev_info *bdi);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070054
Miklos Szeredi76f14182008-04-30 00:54:36 -070055#ifdef CONFIG_DEBUG_FS
56#include <linux/debugfs.h>
57#include <linux/seq_file.h>
58
59static struct dentry *bdi_debug_root;
60
61static void bdi_debug_init(void)
62{
63 bdi_debug_root = debugfs_create_dir("bdi", NULL);
64}
65
66static int bdi_debug_stats_show(struct seq_file *m, void *v)
67{
68 struct backing_dev_info *bdi = m->private;
Christoph Hellwigc1955ce2010-06-19 23:08:06 +020069 struct bdi_writeback *wb = &bdi->wb;
David Rientjes364aeb22009-01-06 14:39:29 -080070 unsigned long background_thresh;
71 unsigned long dirty_thresh;
72 unsigned long bdi_thresh;
Jens Axboef09b00d2009-05-25 09:08:21 +020073 unsigned long nr_dirty, nr_io, nr_more_io, nr_wb;
74 struct inode *inode;
75
Jens Axboef09b00d2009-05-25 09:08:21 +020076 nr_wb = nr_dirty = nr_io = nr_more_io = 0;
77 spin_lock(&inode_lock);
Christoph Hellwigc1955ce2010-06-19 23:08:06 +020078 list_for_each_entry(inode, &wb->b_dirty, i_list)
79 nr_dirty++;
80 list_for_each_entry(inode, &wb->b_io, i_list)
81 nr_io++;
82 list_for_each_entry(inode, &wb->b_more_io, i_list)
83 nr_more_io++;
Jens Axboef09b00d2009-05-25 09:08:21 +020084 spin_unlock(&inode_lock);
Miklos Szeredi76f14182008-04-30 00:54:36 -070085
86 get_dirty_limits(&background_thresh, &dirty_thresh, &bdi_thresh, bdi);
87
88#define K(x) ((x) << (PAGE_SHIFT - 10))
89 seq_printf(m,
90 "BdiWriteback: %8lu kB\n"
91 "BdiReclaimable: %8lu kB\n"
92 "BdiDirtyThresh: %8lu kB\n"
93 "DirtyThresh: %8lu kB\n"
Jens Axboef09b00d2009-05-25 09:08:21 +020094 "BackgroundThresh: %8lu kB\n"
Jens Axboef09b00d2009-05-25 09:08:21 +020095 "b_dirty: %8lu\n"
96 "b_io: %8lu\n"
97 "b_more_io: %8lu\n"
98 "bdi_list: %8u\n"
Christoph Hellwigc1955ce2010-06-19 23:08:06 +020099 "state: %8lx\n",
Miklos Szeredi76f14182008-04-30 00:54:36 -0700100 (unsigned long) K(bdi_stat(bdi, BDI_WRITEBACK)),
101 (unsigned long) K(bdi_stat(bdi, BDI_RECLAIMABLE)),
Jens Axboef09b00d2009-05-25 09:08:21 +0200102 K(bdi_thresh), K(dirty_thresh),
Christoph Hellwigc1955ce2010-06-19 23:08:06 +0200103 K(background_thresh), nr_dirty, nr_io, nr_more_io,
104 !list_empty(&bdi->bdi_list), bdi->state);
Miklos Szeredi76f14182008-04-30 00:54:36 -0700105#undef K
106
107 return 0;
108}
109
110static int bdi_debug_stats_open(struct inode *inode, struct file *file)
111{
112 return single_open(file, bdi_debug_stats_show, inode->i_private);
113}
114
115static const struct file_operations bdi_debug_stats_fops = {
116 .open = bdi_debug_stats_open,
117 .read = seq_read,
118 .llseek = seq_lseek,
119 .release = single_release,
120};
121
122static void bdi_debug_register(struct backing_dev_info *bdi, const char *name)
123{
124 bdi->debug_dir = debugfs_create_dir(name, bdi_debug_root);
125 bdi->debug_stats = debugfs_create_file("stats", 0444, bdi->debug_dir,
126 bdi, &bdi_debug_stats_fops);
127}
128
129static void bdi_debug_unregister(struct backing_dev_info *bdi)
130{
131 debugfs_remove(bdi->debug_stats);
132 debugfs_remove(bdi->debug_dir);
133}
134#else
135static inline void bdi_debug_init(void)
136{
137}
138static inline void bdi_debug_register(struct backing_dev_info *bdi,
139 const char *name)
140{
141}
142static inline void bdi_debug_unregister(struct backing_dev_info *bdi)
143{
144}
145#endif
146
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700147static ssize_t read_ahead_kb_store(struct device *dev,
148 struct device_attribute *attr,
149 const char *buf, size_t count)
150{
151 struct backing_dev_info *bdi = dev_get_drvdata(dev);
152 char *end;
153 unsigned long read_ahead_kb;
154 ssize_t ret = -EINVAL;
155
156 read_ahead_kb = simple_strtoul(buf, &end, 10);
157 if (*buf && (end[0] == '\0' || (end[0] == '\n' && end[1] == '\0'))) {
158 bdi->ra_pages = read_ahead_kb >> (PAGE_SHIFT - 10);
159 ret = count;
160 }
161 return ret;
162}
163
164#define K(pages) ((pages) << (PAGE_SHIFT - 10))
165
166#define BDI_SHOW(name, expr) \
167static ssize_t name##_show(struct device *dev, \
168 struct device_attribute *attr, char *page) \
169{ \
170 struct backing_dev_info *bdi = dev_get_drvdata(dev); \
171 \
172 return snprintf(page, PAGE_SIZE-1, "%lld\n", (long long)expr); \
173}
174
175BDI_SHOW(read_ahead_kb, K(bdi->ra_pages))
176
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700177static ssize_t min_ratio_store(struct device *dev,
178 struct device_attribute *attr, const char *buf, size_t count)
179{
180 struct backing_dev_info *bdi = dev_get_drvdata(dev);
181 char *end;
182 unsigned int ratio;
183 ssize_t ret = -EINVAL;
184
185 ratio = simple_strtoul(buf, &end, 10);
186 if (*buf && (end[0] == '\0' || (end[0] == '\n' && end[1] == '\0'))) {
187 ret = bdi_set_min_ratio(bdi, ratio);
188 if (!ret)
189 ret = count;
190 }
191 return ret;
192}
193BDI_SHOW(min_ratio, bdi->min_ratio)
194
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700195static ssize_t max_ratio_store(struct device *dev,
196 struct device_attribute *attr, const char *buf, size_t count)
197{
198 struct backing_dev_info *bdi = dev_get_drvdata(dev);
199 char *end;
200 unsigned int ratio;
201 ssize_t ret = -EINVAL;
202
203 ratio = simple_strtoul(buf, &end, 10);
204 if (*buf && (end[0] == '\0' || (end[0] == '\n' && end[1] == '\0'))) {
205 ret = bdi_set_max_ratio(bdi, ratio);
206 if (!ret)
207 ret = count;
208 }
209 return ret;
210}
211BDI_SHOW(max_ratio, bdi->max_ratio)
212
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700213#define __ATTR_RW(attr) __ATTR(attr, 0644, attr##_show, attr##_store)
214
215static struct device_attribute bdi_dev_attrs[] = {
216 __ATTR_RW(read_ahead_kb),
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700217 __ATTR_RW(min_ratio),
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700218 __ATTR_RW(max_ratio),
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700219 __ATTR_NULL,
220};
221
222static __init int bdi_class_init(void)
223{
224 bdi_class = class_create(THIS_MODULE, "bdi");
Anton Blanchard14421452010-04-02 09:46:55 +0200225 if (IS_ERR(bdi_class))
226 return PTR_ERR(bdi_class);
227
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700228 bdi_class->dev_attrs = bdi_dev_attrs;
Miklos Szeredi76f14182008-04-30 00:54:36 -0700229 bdi_debug_init();
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700230 return 0;
231}
Miklos Szeredi76f14182008-04-30 00:54:36 -0700232postcore_initcall(bdi_class_init);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700233
Jens Axboe26160152009-03-17 09:35:06 +0100234static int __init default_bdi_init(void)
235{
236 int err;
237
Jens Axboe03ba3782009-09-09 09:08:54 +0200238 sync_supers_tsk = kthread_run(bdi_sync_supers, NULL, "sync_supers");
239 BUG_ON(IS_ERR(sync_supers_tsk));
240
241 init_timer(&sync_supers_timer);
242 setup_timer(&sync_supers_timer, sync_supers_timer_fn, 0);
Jens Axboe64231042010-05-21 20:00:35 +0200243 bdi_arm_supers_timer();
Jens Axboe03ba3782009-09-09 09:08:54 +0200244
Jens Axboe26160152009-03-17 09:35:06 +0100245 err = bdi_init(&default_backing_dev_info);
246 if (!err)
247 bdi_register(&default_backing_dev_info, NULL, "default");
248
249 return err;
250}
251subsys_initcall(default_bdi_init);
252
Jens Axboe03ba3782009-09-09 09:08:54 +0200253static void bdi_wb_init(struct bdi_writeback *wb, struct backing_dev_info *bdi)
254{
255 memset(wb, 0, sizeof(*wb));
256
257 wb->bdi = bdi;
258 wb->last_old_flush = jiffies;
259 INIT_LIST_HEAD(&wb->b_dirty);
260 INIT_LIST_HEAD(&wb->b_io);
261 INIT_LIST_HEAD(&wb->b_more_io);
262}
263
Jens Axboe03ba3782009-09-09 09:08:54 +0200264int bdi_has_dirty_io(struct backing_dev_info *bdi)
265{
266 return wb_has_dirty_io(&bdi->wb);
267}
268
269static void bdi_flush_io(struct backing_dev_info *bdi)
270{
271 struct writeback_control wbc = {
Jens Axboe03ba3782009-09-09 09:08:54 +0200272 .sync_mode = WB_SYNC_NONE,
273 .older_than_this = NULL,
274 .range_cyclic = 1,
275 .nr_to_write = 1024,
276 };
277
Christoph Hellwig9c3a8ee2010-06-10 12:07:27 +0200278 writeback_inodes_wb(&bdi->wb, &wbc);
Jens Axboe03ba3782009-09-09 09:08:54 +0200279}
280
281/*
Artem Bityutskiy6f904ff2010-07-25 14:29:11 +0300282 * kupdated() used to do this. We cannot do it from the bdi_forker_thread()
Jens Axboe03ba3782009-09-09 09:08:54 +0200283 * or we risk deadlocking on ->s_umount. The longer term solution would be
284 * to implement sync_supers_bdi() or similar and simply do it from the
Artem Bityutskiy6f904ff2010-07-25 14:29:11 +0300285 * bdi writeback thread individually.
Jens Axboe03ba3782009-09-09 09:08:54 +0200286 */
287static int bdi_sync_supers(void *unused)
288{
289 set_user_nice(current, 0);
290
291 while (!kthread_should_stop()) {
292 set_current_state(TASK_INTERRUPTIBLE);
293 schedule();
294
295 /*
296 * Do this periodically, like kupdated() did before.
297 */
298 sync_supers();
299 }
300
301 return 0;
302}
303
Jens Axboe64231042010-05-21 20:00:35 +0200304void bdi_arm_supers_timer(void)
Jens Axboe03ba3782009-09-09 09:08:54 +0200305{
306 unsigned long next;
307
Jens Axboe64231042010-05-21 20:00:35 +0200308 if (!dirty_writeback_interval)
309 return;
310
Jens Axboe03ba3782009-09-09 09:08:54 +0200311 next = msecs_to_jiffies(dirty_writeback_interval * 10) + jiffies;
312 mod_timer(&sync_supers_timer, round_jiffies_up(next));
313}
314
315static void sync_supers_timer_fn(unsigned long unused)
316{
317 wake_up_process(sync_supers_tsk);
Jens Axboe64231042010-05-21 20:00:35 +0200318 bdi_arm_supers_timer();
Jens Axboe03ba3782009-09-09 09:08:54 +0200319}
320
Artem Bityutskiy6f904ff2010-07-25 14:29:11 +0300321static int bdi_forker_thread(void *ptr)
Jens Axboe03ba3782009-09-09 09:08:54 +0200322{
323 struct bdi_writeback *me = ptr;
324
Christoph Hellwigc1955ce2010-06-19 23:08:06 +0200325 current->flags |= PF_FLUSHER | PF_SWAPWRITE;
326 set_freezable();
327
328 /*
329 * Our parent may run at a different priority, just set us to normal
330 */
331 set_user_nice(current, 0);
Jens Axboe03ba3782009-09-09 09:08:54 +0200332
333 for (;;) {
Artem Bityutskiy94eac5e2010-07-25 14:29:12 +0300334 struct task_struct *task;
Jens Axboe03ba3782009-09-09 09:08:54 +0200335 struct backing_dev_info *bdi, *tmp;
Jens Axboe03ba3782009-09-09 09:08:54 +0200336
337 /*
338 * Temporary measure, we want to make sure we don't see
339 * dirty data on the default backing_dev_info
340 */
341 if (wb_has_dirty_io(me) || !list_empty(&me->bdi->work_list))
342 wb_do_writeback(me, 0);
343
Jens Axboecfc4ba52009-09-14 13:12:40 +0200344 spin_lock_bh(&bdi_lock);
Artem Bityutskiyc5f7ad22010-07-25 14:29:13 +0300345 set_current_state(TASK_INTERRUPTIBLE);
Jens Axboe03ba3782009-09-09 09:08:54 +0200346
347 /*
348 * Check if any existing bdi's have dirty data without
349 * a thread registered. If so, set that up.
350 */
351 list_for_each_entry_safe(bdi, tmp, &bdi_list, bdi_list) {
352 if (bdi->wb.task)
353 continue;
354 if (list_empty(&bdi->work_list) &&
355 !bdi_has_dirty_io(bdi))
356 continue;
357
Artem Bityutskiy6f904ff2010-07-25 14:29:11 +0300358 bdi_add_default_flusher_thread(bdi);
Jens Axboe03ba3782009-09-09 09:08:54 +0200359 }
360
Jens Axboe03ba3782009-09-09 09:08:54 +0200361 if (list_empty(&bdi_pending_list)) {
362 unsigned long wait;
363
Jens Axboecfc4ba52009-09-14 13:12:40 +0200364 spin_unlock_bh(&bdi_lock);
Jens Axboe03ba3782009-09-09 09:08:54 +0200365 wait = msecs_to_jiffies(dirty_writeback_interval * 10);
Jens Axboe64231042010-05-21 20:00:35 +0200366 if (wait)
367 schedule_timeout(wait);
368 else
369 schedule();
Jens Axboe03ba3782009-09-09 09:08:54 +0200370 try_to_freeze();
371 continue;
372 }
373
374 __set_current_state(TASK_RUNNING);
375
376 /*
377 * This is our real job - check for pending entries in
Artem Bityutskiy6f904ff2010-07-25 14:29:11 +0300378 * bdi_pending_list, and create the threads that got added
Jens Axboe03ba3782009-09-09 09:08:54 +0200379 */
380 bdi = list_entry(bdi_pending_list.next, struct backing_dev_info,
381 bdi_list);
382 list_del_init(&bdi->bdi_list);
Jens Axboecfc4ba52009-09-14 13:12:40 +0200383 spin_unlock_bh(&bdi_lock);
Jens Axboe03ba3782009-09-09 09:08:54 +0200384
Artem Bityutskiy94eac5e2010-07-25 14:29:12 +0300385 task = kthread_run(bdi_writeback_thread, &bdi->wb, "flush-%s",
386 dev_name(bdi->dev));
387 if (IS_ERR(task)) {
Jens Axboe03ba3782009-09-09 09:08:54 +0200388 /*
Artem Bityutskiy94eac5e2010-07-25 14:29:12 +0300389 * If thread creation fails, then readd the bdi back to
390 * the list and force writeout of the bdi from this
391 * forker thread. That will free some memory and we can
392 * try again. Add it to the tail so we get a chance to
393 * flush other bdi's to free memory.
Jens Axboe03ba3782009-09-09 09:08:54 +0200394 */
Jens Axboecfc4ba52009-09-14 13:12:40 +0200395 spin_lock_bh(&bdi_lock);
Jens Axboe03ba3782009-09-09 09:08:54 +0200396 list_add_tail(&bdi->bdi_list, &bdi_pending_list);
Jens Axboecfc4ba52009-09-14 13:12:40 +0200397 spin_unlock_bh(&bdi_lock);
Jens Axboe03ba3782009-09-09 09:08:54 +0200398
399 bdi_flush_io(bdi);
Artem Bityutskiy94eac5e2010-07-25 14:29:12 +0300400 } else
401 bdi->wb.task = task;
Jens Axboe03ba3782009-09-09 09:08:54 +0200402 }
403
404 return 0;
405}
406
Jens Axboecfc4ba52009-09-14 13:12:40 +0200407static void bdi_add_to_pending(struct rcu_head *head)
408{
409 struct backing_dev_info *bdi;
410
411 bdi = container_of(head, struct backing_dev_info, rcu_head);
412 INIT_LIST_HEAD(&bdi->bdi_list);
413
414 spin_lock(&bdi_lock);
415 list_add_tail(&bdi->bdi_list, &bdi_pending_list);
416 spin_unlock(&bdi_lock);
417
418 /*
419 * We are now on the pending list, wake up bdi_forker_task()
420 * to finish the job and add us back to the active bdi_list
421 */
422 wake_up_process(default_backing_dev_info.wb.task);
423}
424
Jens Axboe03ba3782009-09-09 09:08:54 +0200425/*
Artem Bityutskiy6f904ff2010-07-25 14:29:11 +0300426 * Add the default flusher thread that gets created for any bdi
Jens Axboe03ba3782009-09-09 09:08:54 +0200427 * that has dirty data pending writeout
428 */
Artem Bityutskiy6f904ff2010-07-25 14:29:11 +0300429static void bdi_add_default_flusher_thread(struct backing_dev_info *bdi)
Jens Axboe03ba3782009-09-09 09:08:54 +0200430{
431 if (!bdi_cap_writeback_dirty(bdi))
432 return;
433
Jens Axboe500b0672009-09-09 09:10:25 +0200434 if (WARN_ON(!test_bit(BDI_registered, &bdi->state))) {
435 printk(KERN_ERR "bdi %p/%s is not registered!\n",
436 bdi, bdi->name);
437 return;
438 }
439
Jens Axboe03ba3782009-09-09 09:08:54 +0200440 /*
Artem Bityutskiy6f904ff2010-07-25 14:29:11 +0300441 * Check with the helper whether to proceed adding a thread. Will only
Jens Axboe03ba3782009-09-09 09:08:54 +0200442 * abort if we two or more simultanous calls to
Artem Bityutskiy6f904ff2010-07-25 14:29:11 +0300443 * bdi_add_default_flusher_thread() occured, further additions will
444 * block waiting for previous additions to finish.
Jens Axboe03ba3782009-09-09 09:08:54 +0200445 */
446 if (!test_and_set_bit(BDI_pending, &bdi->state)) {
Jens Axboecfc4ba52009-09-14 13:12:40 +0200447 list_del_rcu(&bdi->bdi_list);
Jens Axboe03ba3782009-09-09 09:08:54 +0200448
449 /*
Jens Axboecfc4ba52009-09-14 13:12:40 +0200450 * We must wait for the current RCU period to end before
451 * moving to the pending list. So schedule that operation
452 * from an RCU callback.
Jens Axboe03ba3782009-09-09 09:08:54 +0200453 */
Jens Axboecfc4ba52009-09-14 13:12:40 +0200454 call_rcu(&bdi->rcu_head, bdi_add_to_pending);
Jens Axboe03ba3782009-09-09 09:08:54 +0200455 }
456}
457
Jens Axboecfc4ba52009-09-14 13:12:40 +0200458/*
459 * Remove bdi from bdi_list, and ensure that it is no longer visible
460 */
461static void bdi_remove_from_list(struct backing_dev_info *bdi)
462{
463 spin_lock_bh(&bdi_lock);
464 list_del_rcu(&bdi->bdi_list);
465 spin_unlock_bh(&bdi_lock);
466
467 synchronize_rcu();
468}
469
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700470int bdi_register(struct backing_dev_info *bdi, struct device *parent,
471 const char *fmt, ...)
472{
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700473 va_list args;
474 int ret = 0;
475 struct device *dev;
476
Andrew Morton69fc2082008-12-09 13:14:06 -0800477 if (bdi->dev) /* The driver needs to use separate queues per device */
Kay Sieversf1d0b062008-12-02 10:31:50 -0800478 goto exit;
479
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700480 va_start(args, fmt);
Greg Kroah-Hartman19051c52008-05-15 13:44:08 -0700481 dev = device_create_vargs(bdi_class, parent, MKDEV(0, 0), bdi, fmt, args);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700482 va_end(args);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700483 if (IS_ERR(dev)) {
484 ret = PTR_ERR(dev);
485 goto exit;
486 }
487
Jens Axboecfc4ba52009-09-14 13:12:40 +0200488 spin_lock_bh(&bdi_lock);
489 list_add_tail_rcu(&bdi->bdi_list, &bdi_list);
490 spin_unlock_bh(&bdi_lock);
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200491
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700492 bdi->dev = dev;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700493
Jens Axboe03ba3782009-09-09 09:08:54 +0200494 /*
495 * Just start the forker thread for our default backing_dev_info,
496 * and add other bdi's to the list. They will get a thread created
497 * on-demand when they need it.
498 */
499 if (bdi_cap_flush_forker(bdi)) {
500 struct bdi_writeback *wb = &bdi->wb;
501
Artem Bityutskiy6f904ff2010-07-25 14:29:11 +0300502 wb->task = kthread_run(bdi_forker_thread, wb, "bdi-%s",
Jens Axboe03ba3782009-09-09 09:08:54 +0200503 dev_name(dev));
504 if (IS_ERR(wb->task)) {
505 wb->task = NULL;
506 ret = -ENOMEM;
507
Jens Axboecfc4ba52009-09-14 13:12:40 +0200508 bdi_remove_from_list(bdi);
Jens Axboe03ba3782009-09-09 09:08:54 +0200509 goto exit;
510 }
511 }
512
513 bdi_debug_register(bdi, dev_name(dev));
Jens Axboe500b0672009-09-09 09:10:25 +0200514 set_bit(BDI_registered, &bdi->state);
Dave Chinner455b2862010-07-07 13:24:06 +1000515 trace_writeback_bdi_register(bdi);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700516exit:
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700517 return ret;
518}
519EXPORT_SYMBOL(bdi_register);
520
521int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev)
522{
523 return bdi_register(bdi, NULL, "%u:%u", MAJOR(dev), MINOR(dev));
524}
525EXPORT_SYMBOL(bdi_register_dev);
526
Jens Axboe03ba3782009-09-09 09:08:54 +0200527/*
528 * Remove bdi from the global list and shutdown any threads we have running
529 */
530static void bdi_wb_shutdown(struct backing_dev_info *bdi)
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200531{
Jens Axboe03ba3782009-09-09 09:08:54 +0200532 if (!bdi_cap_writeback_dirty(bdi))
533 return;
534
535 /*
536 * If setup is pending, wait for that to complete first
537 */
538 wait_on_bit(&bdi->state, BDI_pending, bdi_sched_wait,
539 TASK_UNINTERRUPTIBLE);
540
541 /*
542 * Make sure nobody finds us on the bdi_list anymore
543 */
Jens Axboecfc4ba52009-09-14 13:12:40 +0200544 bdi_remove_from_list(bdi);
Jens Axboe03ba3782009-09-09 09:08:54 +0200545
546 /*
Christoph Hellwigc1955ce2010-06-19 23:08:06 +0200547 * Finally, kill the kernel thread. We don't need to be RCU
Romit Dasguptac62b17a2009-11-12 13:08:11 +0100548 * safe anymore, since the bdi is gone from visibility. Force
549 * unfreeze of the thread before calling kthread_stop(), otherwise
550 * it would never exet if it is currently stuck in the refrigerator.
Jens Axboe03ba3782009-09-09 09:08:54 +0200551 */
Christoph Hellwigc1955ce2010-06-19 23:08:06 +0200552 if (bdi->wb.task) {
553 thaw_process(bdi->wb.task);
554 kthread_stop(bdi->wb.task);
Romit Dasguptac62b17a2009-11-12 13:08:11 +0100555 }
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200556}
557
Jens Axboe592b09a2009-10-29 11:46:12 +0100558/*
559 * This bdi is going away now, make sure that no super_blocks point to it
560 */
561static void bdi_prune_sb(struct backing_dev_info *bdi)
562{
563 struct super_block *sb;
564
565 spin_lock(&sb_lock);
566 list_for_each_entry(sb, &super_blocks, s_list) {
567 if (sb->s_bdi == bdi)
568 sb->s_bdi = NULL;
569 }
570 spin_unlock(&sb_lock);
571}
572
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700573void bdi_unregister(struct backing_dev_info *bdi)
574{
575 if (bdi->dev) {
Dave Chinner455b2862010-07-07 13:24:06 +1000576 trace_writeback_bdi_unregister(bdi);
Jens Axboe8c4db332009-11-03 20:18:44 +0100577 bdi_prune_sb(bdi);
578
Jens Axboe03ba3782009-09-09 09:08:54 +0200579 if (!bdi_cap_flush_forker(bdi))
580 bdi_wb_shutdown(bdi);
Miklos Szeredi76f14182008-04-30 00:54:36 -0700581 bdi_debug_unregister(bdi);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700582 device_unregister(bdi->dev);
583 bdi->dev = NULL;
584 }
585}
586EXPORT_SYMBOL(bdi_unregister);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700587
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700588int bdi_init(struct backing_dev_info *bdi)
589{
Jens Axboe03ba3782009-09-09 09:08:54 +0200590 int i, err;
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700591
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700592 bdi->dev = NULL;
593
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700594 bdi->min_ratio = 0;
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700595 bdi->max_ratio = 100;
596 bdi->max_prop_frac = PROP_FRAC_BASE;
Jens Axboe03ba3782009-09-09 09:08:54 +0200597 spin_lock_init(&bdi->wb_lock);
Jens Axboecfc4ba52009-09-14 13:12:40 +0200598 INIT_RCU_HEAD(&bdi->rcu_head);
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200599 INIT_LIST_HEAD(&bdi->bdi_list);
Jens Axboe03ba3782009-09-09 09:08:54 +0200600 INIT_LIST_HEAD(&bdi->work_list);
601
602 bdi_wb_init(&bdi->wb, bdi);
603
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700604 for (i = 0; i < NR_BDI_STAT_ITEMS; i++) {
Peter Zijlstraea319512008-12-26 15:08:55 +0100605 err = percpu_counter_init(&bdi->bdi_stat[i], 0);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700606 if (err)
607 goto err;
608 }
609
610 bdi->dirty_exceeded = 0;
611 err = prop_local_init_percpu(&bdi->completions);
612
613 if (err) {
614err:
Denis Cheng4b01a0b2007-12-04 23:45:07 -0800615 while (i--)
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700616 percpu_counter_destroy(&bdi->bdi_stat[i]);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700617 }
618
619 return err;
620}
621EXPORT_SYMBOL(bdi_init);
622
623void bdi_destroy(struct backing_dev_info *bdi)
624{
625 int i;
626
Jens Axboece5f8e72009-09-14 12:57:56 +0200627 /*
628 * Splice our entries to the default_backing_dev_info, if this
629 * bdi disappears
630 */
631 if (bdi_has_dirty_io(bdi)) {
632 struct bdi_writeback *dst = &default_backing_dev_info.wb;
633
634 spin_lock(&inode_lock);
635 list_splice(&bdi->wb.b_dirty, &dst->b_dirty);
636 list_splice(&bdi->wb.b_io, &dst->b_io);
637 list_splice(&bdi->wb.b_more_io, &dst->b_more_io);
638 spin_unlock(&inode_lock);
639 }
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200640
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700641 bdi_unregister(bdi);
642
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700643 for (i = 0; i < NR_BDI_STAT_ITEMS; i++)
644 percpu_counter_destroy(&bdi->bdi_stat[i]);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700645
646 prop_local_destroy_percpu(&bdi->completions);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700647}
648EXPORT_SYMBOL(bdi_destroy);
649
Jens Axboec3c53202010-04-22 11:37:01 +0200650/*
651 * For use from filesystems to quickly init and register a bdi associated
652 * with dirty writeback
653 */
654int bdi_setup_and_register(struct backing_dev_info *bdi, char *name,
655 unsigned int cap)
656{
657 char tmp[32];
658 int err;
659
660 bdi->name = name;
661 bdi->capabilities = cap;
662 err = bdi_init(bdi);
663 if (err)
664 return err;
665
666 sprintf(tmp, "%.28s%s", name, "-%d");
667 err = bdi_register(bdi, NULL, tmp, atomic_long_inc_return(&bdi_seq));
668 if (err) {
669 bdi_destroy(bdi);
670 return err;
671 }
672
673 return 0;
674}
675EXPORT_SYMBOL(bdi_setup_and_register);
676
Andrew Morton3fcfab12006-10-19 23:28:16 -0700677static wait_queue_head_t congestion_wqh[2] = {
678 __WAIT_QUEUE_HEAD_INITIALIZER(congestion_wqh[0]),
679 __WAIT_QUEUE_HEAD_INITIALIZER(congestion_wqh[1])
680 };
681
Jens Axboe1faa16d2009-04-06 14:48:01 +0200682void clear_bdi_congested(struct backing_dev_info *bdi, int sync)
Andrew Morton3fcfab12006-10-19 23:28:16 -0700683{
684 enum bdi_state bit;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200685 wait_queue_head_t *wqh = &congestion_wqh[sync];
Andrew Morton3fcfab12006-10-19 23:28:16 -0700686
Jens Axboe1faa16d2009-04-06 14:48:01 +0200687 bit = sync ? BDI_sync_congested : BDI_async_congested;
Andrew Morton3fcfab12006-10-19 23:28:16 -0700688 clear_bit(bit, &bdi->state);
689 smp_mb__after_clear_bit();
690 if (waitqueue_active(wqh))
691 wake_up(wqh);
692}
693EXPORT_SYMBOL(clear_bdi_congested);
694
Jens Axboe1faa16d2009-04-06 14:48:01 +0200695void set_bdi_congested(struct backing_dev_info *bdi, int sync)
Andrew Morton3fcfab12006-10-19 23:28:16 -0700696{
697 enum bdi_state bit;
698
Jens Axboe1faa16d2009-04-06 14:48:01 +0200699 bit = sync ? BDI_sync_congested : BDI_async_congested;
Andrew Morton3fcfab12006-10-19 23:28:16 -0700700 set_bit(bit, &bdi->state);
701}
702EXPORT_SYMBOL(set_bdi_congested);
703
704/**
705 * congestion_wait - wait for a backing_dev to become uncongested
Jens Axboe8aa7e842009-07-09 14:52:32 +0200706 * @sync: SYNC or ASYNC IO
Andrew Morton3fcfab12006-10-19 23:28:16 -0700707 * @timeout: timeout in jiffies
708 *
709 * Waits for up to @timeout jiffies for a backing_dev (any backing_dev) to exit
710 * write congestion. If no backing_devs are congested then just wait for the
711 * next write to be completed.
712 */
Jens Axboe8aa7e842009-07-09 14:52:32 +0200713long congestion_wait(int sync, long timeout)
Andrew Morton3fcfab12006-10-19 23:28:16 -0700714{
715 long ret;
716 DEFINE_WAIT(wait);
Jens Axboe8aa7e842009-07-09 14:52:32 +0200717 wait_queue_head_t *wqh = &congestion_wqh[sync];
Andrew Morton3fcfab12006-10-19 23:28:16 -0700718
719 prepare_to_wait(wqh, &wait, TASK_UNINTERRUPTIBLE);
720 ret = io_schedule_timeout(timeout);
721 finish_wait(wqh, &wait);
722 return ret;
723}
724EXPORT_SYMBOL(congestion_wait);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700725