blob: 6c2a09c8922c1abdbaa49fca05387ee176120138 [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>
13
Jens Axboec3c53202010-04-22 11:37:01 +020014static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
15
Jens Axboe26160152009-03-17 09:35:06 +010016void default_unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
17{
18}
19EXPORT_SYMBOL(default_unplug_io_fn);
20
21struct backing_dev_info default_backing_dev_info = {
Jens Axboed9938312009-06-12 14:45:52 +020022 .name = "default",
Jens Axboe26160152009-03-17 09:35:06 +010023 .ra_pages = VM_MAX_READAHEAD * 1024 / PAGE_CACHE_SIZE,
24 .state = 0,
25 .capabilities = BDI_CAP_MAP_COPY,
26 .unplug_io_fn = default_unplug_io_fn,
27};
28EXPORT_SYMBOL_GPL(default_backing_dev_info);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070029
Jörn Engel5129a462010-04-25 08:54:42 +020030struct backing_dev_info noop_backing_dev_info = {
31 .name = "noop",
32};
33EXPORT_SYMBOL_GPL(noop_backing_dev_info);
34
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070035static struct class *bdi_class;
Jens Axboecfc4ba52009-09-14 13:12:40 +020036
37/*
38 * bdi_lock protects updates to bdi_list and bdi_pending_list, as well as
39 * reader side protection for bdi_pending_list. bdi_list has RCU reader side
40 * locking.
41 */
Jens Axboe03ba3782009-09-09 09:08:54 +020042DEFINE_SPINLOCK(bdi_lock);
Jens Axboe66f3b8e2009-09-02 09:19:46 +020043LIST_HEAD(bdi_list);
Jens Axboe03ba3782009-09-09 09:08:54 +020044LIST_HEAD(bdi_pending_list);
45
46static struct task_struct *sync_supers_tsk;
47static struct timer_list sync_supers_timer;
48
49static int bdi_sync_supers(void *);
50static void sync_supers_timer_fn(unsigned long);
Jens Axboe03ba3782009-09-09 09:08:54 +020051
52static void bdi_add_default_flusher_task(struct backing_dev_info *bdi);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070053
Miklos Szeredi76f14182008-04-30 00:54:36 -070054#ifdef CONFIG_DEBUG_FS
55#include <linux/debugfs.h>
56#include <linux/seq_file.h>
57
58static struct dentry *bdi_debug_root;
59
60static void bdi_debug_init(void)
61{
62 bdi_debug_root = debugfs_create_dir("bdi", NULL);
63}
64
65static int bdi_debug_stats_show(struct seq_file *m, void *v)
66{
67 struct backing_dev_info *bdi = m->private;
Christoph Hellwigc1955ce2010-06-19 23:08:06 +020068 struct bdi_writeback *wb = &bdi->wb;
David Rientjes364aeb22009-01-06 14:39:29 -080069 unsigned long background_thresh;
70 unsigned long dirty_thresh;
71 unsigned long bdi_thresh;
Jens Axboef09b00d2009-05-25 09:08:21 +020072 unsigned long nr_dirty, nr_io, nr_more_io, nr_wb;
73 struct inode *inode;
74
Jens Axboef09b00d2009-05-25 09:08:21 +020075 nr_wb = nr_dirty = nr_io = nr_more_io = 0;
76 spin_lock(&inode_lock);
Christoph Hellwigc1955ce2010-06-19 23:08:06 +020077 list_for_each_entry(inode, &wb->b_dirty, i_list)
78 nr_dirty++;
79 list_for_each_entry(inode, &wb->b_io, i_list)
80 nr_io++;
81 list_for_each_entry(inode, &wb->b_more_io, i_list)
82 nr_more_io++;
Jens Axboef09b00d2009-05-25 09:08:21 +020083 spin_unlock(&inode_lock);
Miklos Szeredi76f14182008-04-30 00:54:36 -070084
85 get_dirty_limits(&background_thresh, &dirty_thresh, &bdi_thresh, bdi);
86
87#define K(x) ((x) << (PAGE_SHIFT - 10))
88 seq_printf(m,
89 "BdiWriteback: %8lu kB\n"
90 "BdiReclaimable: %8lu kB\n"
91 "BdiDirtyThresh: %8lu kB\n"
92 "DirtyThresh: %8lu kB\n"
Jens Axboef09b00d2009-05-25 09:08:21 +020093 "BackgroundThresh: %8lu kB\n"
Jens Axboef09b00d2009-05-25 09:08:21 +020094 "b_dirty: %8lu\n"
95 "b_io: %8lu\n"
96 "b_more_io: %8lu\n"
97 "bdi_list: %8u\n"
Christoph Hellwigc1955ce2010-06-19 23:08:06 +020098 "state: %8lx\n",
Miklos Szeredi76f14182008-04-30 00:54:36 -070099 (unsigned long) K(bdi_stat(bdi, BDI_WRITEBACK)),
100 (unsigned long) K(bdi_stat(bdi, BDI_RECLAIMABLE)),
Jens Axboef09b00d2009-05-25 09:08:21 +0200101 K(bdi_thresh), K(dirty_thresh),
Christoph Hellwigc1955ce2010-06-19 23:08:06 +0200102 K(background_thresh), nr_dirty, nr_io, nr_more_io,
103 !list_empty(&bdi->bdi_list), bdi->state);
Miklos Szeredi76f14182008-04-30 00:54:36 -0700104#undef K
105
106 return 0;
107}
108
109static int bdi_debug_stats_open(struct inode *inode, struct file *file)
110{
111 return single_open(file, bdi_debug_stats_show, inode->i_private);
112}
113
114static const struct file_operations bdi_debug_stats_fops = {
115 .open = bdi_debug_stats_open,
116 .read = seq_read,
117 .llseek = seq_lseek,
118 .release = single_release,
119};
120
121static void bdi_debug_register(struct backing_dev_info *bdi, const char *name)
122{
123 bdi->debug_dir = debugfs_create_dir(name, bdi_debug_root);
124 bdi->debug_stats = debugfs_create_file("stats", 0444, bdi->debug_dir,
125 bdi, &bdi_debug_stats_fops);
126}
127
128static void bdi_debug_unregister(struct backing_dev_info *bdi)
129{
130 debugfs_remove(bdi->debug_stats);
131 debugfs_remove(bdi->debug_dir);
132}
133#else
134static inline void bdi_debug_init(void)
135{
136}
137static inline void bdi_debug_register(struct backing_dev_info *bdi,
138 const char *name)
139{
140}
141static inline void bdi_debug_unregister(struct backing_dev_info *bdi)
142{
143}
144#endif
145
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700146static ssize_t read_ahead_kb_store(struct device *dev,
147 struct device_attribute *attr,
148 const char *buf, size_t count)
149{
150 struct backing_dev_info *bdi = dev_get_drvdata(dev);
151 char *end;
152 unsigned long read_ahead_kb;
153 ssize_t ret = -EINVAL;
154
155 read_ahead_kb = simple_strtoul(buf, &end, 10);
156 if (*buf && (end[0] == '\0' || (end[0] == '\n' && end[1] == '\0'))) {
157 bdi->ra_pages = read_ahead_kb >> (PAGE_SHIFT - 10);
158 ret = count;
159 }
160 return ret;
161}
162
163#define K(pages) ((pages) << (PAGE_SHIFT - 10))
164
165#define BDI_SHOW(name, expr) \
166static ssize_t name##_show(struct device *dev, \
167 struct device_attribute *attr, char *page) \
168{ \
169 struct backing_dev_info *bdi = dev_get_drvdata(dev); \
170 \
171 return snprintf(page, PAGE_SIZE-1, "%lld\n", (long long)expr); \
172}
173
174BDI_SHOW(read_ahead_kb, K(bdi->ra_pages))
175
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700176static ssize_t min_ratio_store(struct device *dev,
177 struct device_attribute *attr, const char *buf, size_t count)
178{
179 struct backing_dev_info *bdi = dev_get_drvdata(dev);
180 char *end;
181 unsigned int ratio;
182 ssize_t ret = -EINVAL;
183
184 ratio = simple_strtoul(buf, &end, 10);
185 if (*buf && (end[0] == '\0' || (end[0] == '\n' && end[1] == '\0'))) {
186 ret = bdi_set_min_ratio(bdi, ratio);
187 if (!ret)
188 ret = count;
189 }
190 return ret;
191}
192BDI_SHOW(min_ratio, bdi->min_ratio)
193
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700194static ssize_t max_ratio_store(struct device *dev,
195 struct device_attribute *attr, const char *buf, size_t count)
196{
197 struct backing_dev_info *bdi = dev_get_drvdata(dev);
198 char *end;
199 unsigned int ratio;
200 ssize_t ret = -EINVAL;
201
202 ratio = simple_strtoul(buf, &end, 10);
203 if (*buf && (end[0] == '\0' || (end[0] == '\n' && end[1] == '\0'))) {
204 ret = bdi_set_max_ratio(bdi, ratio);
205 if (!ret)
206 ret = count;
207 }
208 return ret;
209}
210BDI_SHOW(max_ratio, bdi->max_ratio)
211
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700212#define __ATTR_RW(attr) __ATTR(attr, 0644, attr##_show, attr##_store)
213
214static struct device_attribute bdi_dev_attrs[] = {
215 __ATTR_RW(read_ahead_kb),
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700216 __ATTR_RW(min_ratio),
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700217 __ATTR_RW(max_ratio),
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700218 __ATTR_NULL,
219};
220
221static __init int bdi_class_init(void)
222{
223 bdi_class = class_create(THIS_MODULE, "bdi");
Anton Blanchard14421452010-04-02 09:46:55 +0200224 if (IS_ERR(bdi_class))
225 return PTR_ERR(bdi_class);
226
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700227 bdi_class->dev_attrs = bdi_dev_attrs;
Miklos Szeredi76f14182008-04-30 00:54:36 -0700228 bdi_debug_init();
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700229 return 0;
230}
Miklos Szeredi76f14182008-04-30 00:54:36 -0700231postcore_initcall(bdi_class_init);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700232
Jens Axboe26160152009-03-17 09:35:06 +0100233static int __init default_bdi_init(void)
234{
235 int err;
236
Jens Axboe03ba3782009-09-09 09:08:54 +0200237 sync_supers_tsk = kthread_run(bdi_sync_supers, NULL, "sync_supers");
238 BUG_ON(IS_ERR(sync_supers_tsk));
239
240 init_timer(&sync_supers_timer);
241 setup_timer(&sync_supers_timer, sync_supers_timer_fn, 0);
Jens Axboe64231042010-05-21 20:00:35 +0200242 bdi_arm_supers_timer();
Jens Axboe03ba3782009-09-09 09:08:54 +0200243
Jens Axboe26160152009-03-17 09:35:06 +0100244 err = bdi_init(&default_backing_dev_info);
245 if (!err)
246 bdi_register(&default_backing_dev_info, NULL, "default");
247
248 return err;
249}
250subsys_initcall(default_bdi_init);
251
Jens Axboe03ba3782009-09-09 09:08:54 +0200252static void bdi_wb_init(struct bdi_writeback *wb, struct backing_dev_info *bdi)
253{
254 memset(wb, 0, sizeof(*wb));
255
256 wb->bdi = bdi;
257 wb->last_old_flush = jiffies;
258 INIT_LIST_HEAD(&wb->b_dirty);
259 INIT_LIST_HEAD(&wb->b_io);
260 INIT_LIST_HEAD(&wb->b_more_io);
261}
262
Jens Axboe03ba3782009-09-09 09:08:54 +0200263static int bdi_start_fn(void *ptr)
264{
265 struct bdi_writeback *wb = ptr;
266 struct backing_dev_info *bdi = wb->bdi;
267 int ret;
268
269 /*
270 * Add us to the active bdi_list
271 */
Jens Axboecfc4ba52009-09-14 13:12:40 +0200272 spin_lock_bh(&bdi_lock);
273 list_add_rcu(&bdi->bdi_list, &bdi_list);
274 spin_unlock_bh(&bdi_lock);
Jens Axboe03ba3782009-09-09 09:08:54 +0200275
Christoph Hellwigc1955ce2010-06-19 23:08:06 +0200276 current->flags |= PF_FLUSHER | PF_SWAPWRITE;
277 set_freezable();
278
279 /*
280 * Our parent may run at a different priority, just set us to normal
281 */
282 set_user_nice(current, 0);
Jens Axboe03ba3782009-09-09 09:08:54 +0200283
284 /*
285 * Clear pending bit and wakeup anybody waiting to tear us down
286 */
287 clear_bit(BDI_pending, &bdi->state);
288 smp_mb__after_clear_bit();
289 wake_up_bit(&bdi->state, BDI_pending);
290
291 ret = bdi_writeback_task(wb);
292
Christoph Hellwigc1955ce2010-06-19 23:08:06 +0200293 wb->task = NULL;
Jens Axboe03ba3782009-09-09 09:08:54 +0200294
295 /*
296 * Flush any work that raced with us exiting. No new work
297 * will be added, since this bdi isn't discoverable anymore.
298 */
299 if (!list_empty(&bdi->work_list))
300 wb_do_writeback(wb, 1);
301
Jens Axboe03ba3782009-09-09 09:08:54 +0200302 return ret;
303}
304
305int bdi_has_dirty_io(struct backing_dev_info *bdi)
306{
307 return wb_has_dirty_io(&bdi->wb);
308}
309
310static void bdi_flush_io(struct backing_dev_info *bdi)
311{
312 struct writeback_control wbc = {
Jens Axboe03ba3782009-09-09 09:08:54 +0200313 .sync_mode = WB_SYNC_NONE,
314 .older_than_this = NULL,
315 .range_cyclic = 1,
316 .nr_to_write = 1024,
317 };
318
Christoph Hellwig9c3a8ee2010-06-10 12:07:27 +0200319 writeback_inodes_wb(&bdi->wb, &wbc);
Jens Axboe03ba3782009-09-09 09:08:54 +0200320}
321
322/*
323 * kupdated() used to do this. We cannot do it from the bdi_forker_task()
324 * or we risk deadlocking on ->s_umount. The longer term solution would be
325 * to implement sync_supers_bdi() or similar and simply do it from the
326 * bdi writeback tasks individually.
327 */
328static int bdi_sync_supers(void *unused)
329{
330 set_user_nice(current, 0);
331
332 while (!kthread_should_stop()) {
333 set_current_state(TASK_INTERRUPTIBLE);
334 schedule();
335
336 /*
337 * Do this periodically, like kupdated() did before.
338 */
339 sync_supers();
340 }
341
342 return 0;
343}
344
Jens Axboe64231042010-05-21 20:00:35 +0200345void bdi_arm_supers_timer(void)
Jens Axboe03ba3782009-09-09 09:08:54 +0200346{
347 unsigned long next;
348
Jens Axboe64231042010-05-21 20:00:35 +0200349 if (!dirty_writeback_interval)
350 return;
351
Jens Axboe03ba3782009-09-09 09:08:54 +0200352 next = msecs_to_jiffies(dirty_writeback_interval * 10) + jiffies;
353 mod_timer(&sync_supers_timer, round_jiffies_up(next));
354}
355
356static void sync_supers_timer_fn(unsigned long unused)
357{
358 wake_up_process(sync_supers_tsk);
Jens Axboe64231042010-05-21 20:00:35 +0200359 bdi_arm_supers_timer();
Jens Axboe03ba3782009-09-09 09:08:54 +0200360}
361
362static int bdi_forker_task(void *ptr)
363{
364 struct bdi_writeback *me = ptr;
365
Christoph Hellwigc1955ce2010-06-19 23:08:06 +0200366 current->flags |= PF_FLUSHER | PF_SWAPWRITE;
367 set_freezable();
368
369 /*
370 * Our parent may run at a different priority, just set us to normal
371 */
372 set_user_nice(current, 0);
Jens Axboe03ba3782009-09-09 09:08:54 +0200373
374 for (;;) {
375 struct backing_dev_info *bdi, *tmp;
376 struct bdi_writeback *wb;
377
378 /*
379 * Temporary measure, we want to make sure we don't see
380 * dirty data on the default backing_dev_info
381 */
382 if (wb_has_dirty_io(me) || !list_empty(&me->bdi->work_list))
383 wb_do_writeback(me, 0);
384
Jens Axboecfc4ba52009-09-14 13:12:40 +0200385 spin_lock_bh(&bdi_lock);
Jens Axboe03ba3782009-09-09 09:08:54 +0200386
387 /*
388 * Check if any existing bdi's have dirty data without
389 * a thread registered. If so, set that up.
390 */
391 list_for_each_entry_safe(bdi, tmp, &bdi_list, bdi_list) {
392 if (bdi->wb.task)
393 continue;
394 if (list_empty(&bdi->work_list) &&
395 !bdi_has_dirty_io(bdi))
396 continue;
397
398 bdi_add_default_flusher_task(bdi);
399 }
400
401 set_current_state(TASK_INTERRUPTIBLE);
402
403 if (list_empty(&bdi_pending_list)) {
404 unsigned long wait;
405
Jens Axboecfc4ba52009-09-14 13:12:40 +0200406 spin_unlock_bh(&bdi_lock);
Jens Axboe03ba3782009-09-09 09:08:54 +0200407 wait = msecs_to_jiffies(dirty_writeback_interval * 10);
Jens Axboe64231042010-05-21 20:00:35 +0200408 if (wait)
409 schedule_timeout(wait);
410 else
411 schedule();
Jens Axboe03ba3782009-09-09 09:08:54 +0200412 try_to_freeze();
413 continue;
414 }
415
416 __set_current_state(TASK_RUNNING);
417
418 /*
419 * This is our real job - check for pending entries in
420 * bdi_pending_list, and create the tasks that got added
421 */
422 bdi = list_entry(bdi_pending_list.next, struct backing_dev_info,
423 bdi_list);
424 list_del_init(&bdi->bdi_list);
Jens Axboecfc4ba52009-09-14 13:12:40 +0200425 spin_unlock_bh(&bdi_lock);
Jens Axboe03ba3782009-09-09 09:08:54 +0200426
427 wb = &bdi->wb;
428 wb->task = kthread_run(bdi_start_fn, wb, "flush-%s",
429 dev_name(bdi->dev));
430 /*
431 * If task creation fails, then readd the bdi to
432 * the pending list and force writeout of the bdi
433 * from this forker thread. That will free some memory
434 * and we can try again.
435 */
436 if (IS_ERR(wb->task)) {
437 wb->task = NULL;
438
439 /*
440 * Add this 'bdi' to the back, so we get
441 * a chance to flush other bdi's to free
442 * memory.
443 */
Jens Axboecfc4ba52009-09-14 13:12:40 +0200444 spin_lock_bh(&bdi_lock);
Jens Axboe03ba3782009-09-09 09:08:54 +0200445 list_add_tail(&bdi->bdi_list, &bdi_pending_list);
Jens Axboecfc4ba52009-09-14 13:12:40 +0200446 spin_unlock_bh(&bdi_lock);
Jens Axboe03ba3782009-09-09 09:08:54 +0200447
448 bdi_flush_io(bdi);
449 }
450 }
451
452 return 0;
453}
454
Jens Axboecfc4ba52009-09-14 13:12:40 +0200455static void bdi_add_to_pending(struct rcu_head *head)
456{
457 struct backing_dev_info *bdi;
458
459 bdi = container_of(head, struct backing_dev_info, rcu_head);
460 INIT_LIST_HEAD(&bdi->bdi_list);
461
462 spin_lock(&bdi_lock);
463 list_add_tail(&bdi->bdi_list, &bdi_pending_list);
464 spin_unlock(&bdi_lock);
465
466 /*
467 * We are now on the pending list, wake up bdi_forker_task()
468 * to finish the job and add us back to the active bdi_list
469 */
470 wake_up_process(default_backing_dev_info.wb.task);
471}
472
Jens Axboe03ba3782009-09-09 09:08:54 +0200473/*
474 * Add the default flusher task that gets created for any bdi
475 * that has dirty data pending writeout
476 */
477void static bdi_add_default_flusher_task(struct backing_dev_info *bdi)
478{
479 if (!bdi_cap_writeback_dirty(bdi))
480 return;
481
Jens Axboe500b0672009-09-09 09:10:25 +0200482 if (WARN_ON(!test_bit(BDI_registered, &bdi->state))) {
483 printk(KERN_ERR "bdi %p/%s is not registered!\n",
484 bdi, bdi->name);
485 return;
486 }
487
Jens Axboe03ba3782009-09-09 09:08:54 +0200488 /*
489 * Check with the helper whether to proceed adding a task. Will only
490 * abort if we two or more simultanous calls to
491 * bdi_add_default_flusher_task() occured, further additions will block
492 * waiting for previous additions to finish.
493 */
494 if (!test_and_set_bit(BDI_pending, &bdi->state)) {
Jens Axboecfc4ba52009-09-14 13:12:40 +0200495 list_del_rcu(&bdi->bdi_list);
Jens Axboe03ba3782009-09-09 09:08:54 +0200496
497 /*
Jens Axboecfc4ba52009-09-14 13:12:40 +0200498 * We must wait for the current RCU period to end before
499 * moving to the pending list. So schedule that operation
500 * from an RCU callback.
Jens Axboe03ba3782009-09-09 09:08:54 +0200501 */
Jens Axboecfc4ba52009-09-14 13:12:40 +0200502 call_rcu(&bdi->rcu_head, bdi_add_to_pending);
Jens Axboe03ba3782009-09-09 09:08:54 +0200503 }
504}
505
Jens Axboecfc4ba52009-09-14 13:12:40 +0200506/*
507 * Remove bdi from bdi_list, and ensure that it is no longer visible
508 */
509static void bdi_remove_from_list(struct backing_dev_info *bdi)
510{
511 spin_lock_bh(&bdi_lock);
512 list_del_rcu(&bdi->bdi_list);
513 spin_unlock_bh(&bdi_lock);
514
515 synchronize_rcu();
516}
517
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700518int bdi_register(struct backing_dev_info *bdi, struct device *parent,
519 const char *fmt, ...)
520{
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700521 va_list args;
522 int ret = 0;
523 struct device *dev;
524
Andrew Morton69fc2082008-12-09 13:14:06 -0800525 if (bdi->dev) /* The driver needs to use separate queues per device */
Kay Sieversf1d0b062008-12-02 10:31:50 -0800526 goto exit;
527
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700528 va_start(args, fmt);
Greg Kroah-Hartman19051c52008-05-15 13:44:08 -0700529 dev = device_create_vargs(bdi_class, parent, MKDEV(0, 0), bdi, fmt, args);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700530 va_end(args);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700531 if (IS_ERR(dev)) {
532 ret = PTR_ERR(dev);
533 goto exit;
534 }
535
Jens Axboecfc4ba52009-09-14 13:12:40 +0200536 spin_lock_bh(&bdi_lock);
537 list_add_tail_rcu(&bdi->bdi_list, &bdi_list);
538 spin_unlock_bh(&bdi_lock);
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200539
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700540 bdi->dev = dev;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700541
Jens Axboe03ba3782009-09-09 09:08:54 +0200542 /*
543 * Just start the forker thread for our default backing_dev_info,
544 * and add other bdi's to the list. They will get a thread created
545 * on-demand when they need it.
546 */
547 if (bdi_cap_flush_forker(bdi)) {
548 struct bdi_writeback *wb = &bdi->wb;
549
550 wb->task = kthread_run(bdi_forker_task, wb, "bdi-%s",
551 dev_name(dev));
552 if (IS_ERR(wb->task)) {
553 wb->task = NULL;
554 ret = -ENOMEM;
555
Jens Axboecfc4ba52009-09-14 13:12:40 +0200556 bdi_remove_from_list(bdi);
Jens Axboe03ba3782009-09-09 09:08:54 +0200557 goto exit;
558 }
559 }
560
561 bdi_debug_register(bdi, dev_name(dev));
Jens Axboe500b0672009-09-09 09:10:25 +0200562 set_bit(BDI_registered, &bdi->state);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700563exit:
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700564 return ret;
565}
566EXPORT_SYMBOL(bdi_register);
567
568int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev)
569{
570 return bdi_register(bdi, NULL, "%u:%u", MAJOR(dev), MINOR(dev));
571}
572EXPORT_SYMBOL(bdi_register_dev);
573
Jens Axboe03ba3782009-09-09 09:08:54 +0200574/*
575 * Remove bdi from the global list and shutdown any threads we have running
576 */
577static void bdi_wb_shutdown(struct backing_dev_info *bdi)
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200578{
Jens Axboe03ba3782009-09-09 09:08:54 +0200579 if (!bdi_cap_writeback_dirty(bdi))
580 return;
581
582 /*
583 * If setup is pending, wait for that to complete first
584 */
585 wait_on_bit(&bdi->state, BDI_pending, bdi_sched_wait,
586 TASK_UNINTERRUPTIBLE);
587
588 /*
589 * Make sure nobody finds us on the bdi_list anymore
590 */
Jens Axboecfc4ba52009-09-14 13:12:40 +0200591 bdi_remove_from_list(bdi);
Jens Axboe03ba3782009-09-09 09:08:54 +0200592
593 /*
Christoph Hellwigc1955ce2010-06-19 23:08:06 +0200594 * Finally, kill the kernel thread. We don't need to be RCU
Romit Dasguptac62b17a2009-11-12 13:08:11 +0100595 * safe anymore, since the bdi is gone from visibility. Force
596 * unfreeze of the thread before calling kthread_stop(), otherwise
597 * it would never exet if it is currently stuck in the refrigerator.
Jens Axboe03ba3782009-09-09 09:08:54 +0200598 */
Christoph Hellwigc1955ce2010-06-19 23:08:06 +0200599 if (bdi->wb.task) {
600 thaw_process(bdi->wb.task);
601 kthread_stop(bdi->wb.task);
Romit Dasguptac62b17a2009-11-12 13:08:11 +0100602 }
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200603}
604
Jens Axboe592b09a2009-10-29 11:46:12 +0100605/*
606 * This bdi is going away now, make sure that no super_blocks point to it
607 */
608static void bdi_prune_sb(struct backing_dev_info *bdi)
609{
610 struct super_block *sb;
611
612 spin_lock(&sb_lock);
613 list_for_each_entry(sb, &super_blocks, s_list) {
614 if (sb->s_bdi == bdi)
615 sb->s_bdi = NULL;
616 }
617 spin_unlock(&sb_lock);
618}
619
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700620void bdi_unregister(struct backing_dev_info *bdi)
621{
622 if (bdi->dev) {
Jens Axboe8c4db332009-11-03 20:18:44 +0100623 bdi_prune_sb(bdi);
624
Jens Axboe03ba3782009-09-09 09:08:54 +0200625 if (!bdi_cap_flush_forker(bdi))
626 bdi_wb_shutdown(bdi);
Miklos Szeredi76f14182008-04-30 00:54:36 -0700627 bdi_debug_unregister(bdi);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700628 device_unregister(bdi->dev);
629 bdi->dev = NULL;
630 }
631}
632EXPORT_SYMBOL(bdi_unregister);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700633
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700634int bdi_init(struct backing_dev_info *bdi)
635{
Jens Axboe03ba3782009-09-09 09:08:54 +0200636 int i, err;
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700637
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700638 bdi->dev = NULL;
639
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700640 bdi->min_ratio = 0;
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700641 bdi->max_ratio = 100;
642 bdi->max_prop_frac = PROP_FRAC_BASE;
Jens Axboe03ba3782009-09-09 09:08:54 +0200643 spin_lock_init(&bdi->wb_lock);
Jens Axboecfc4ba52009-09-14 13:12:40 +0200644 INIT_RCU_HEAD(&bdi->rcu_head);
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200645 INIT_LIST_HEAD(&bdi->bdi_list);
Jens Axboe03ba3782009-09-09 09:08:54 +0200646 INIT_LIST_HEAD(&bdi->work_list);
647
648 bdi_wb_init(&bdi->wb, bdi);
649
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700650 for (i = 0; i < NR_BDI_STAT_ITEMS; i++) {
Peter Zijlstraea319512008-12-26 15:08:55 +0100651 err = percpu_counter_init(&bdi->bdi_stat[i], 0);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700652 if (err)
653 goto err;
654 }
655
656 bdi->dirty_exceeded = 0;
657 err = prop_local_init_percpu(&bdi->completions);
658
659 if (err) {
660err:
Denis Cheng4b01a0b2007-12-04 23:45:07 -0800661 while (i--)
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700662 percpu_counter_destroy(&bdi->bdi_stat[i]);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700663 }
664
665 return err;
666}
667EXPORT_SYMBOL(bdi_init);
668
669void bdi_destroy(struct backing_dev_info *bdi)
670{
671 int i;
672
Jens Axboece5f8e72009-09-14 12:57:56 +0200673 /*
674 * Splice our entries to the default_backing_dev_info, if this
675 * bdi disappears
676 */
677 if (bdi_has_dirty_io(bdi)) {
678 struct bdi_writeback *dst = &default_backing_dev_info.wb;
679
680 spin_lock(&inode_lock);
681 list_splice(&bdi->wb.b_dirty, &dst->b_dirty);
682 list_splice(&bdi->wb.b_io, &dst->b_io);
683 list_splice(&bdi->wb.b_more_io, &dst->b_more_io);
684 spin_unlock(&inode_lock);
685 }
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200686
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700687 bdi_unregister(bdi);
688
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700689 for (i = 0; i < NR_BDI_STAT_ITEMS; i++)
690 percpu_counter_destroy(&bdi->bdi_stat[i]);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700691
692 prop_local_destroy_percpu(&bdi->completions);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700693}
694EXPORT_SYMBOL(bdi_destroy);
695
Jens Axboec3c53202010-04-22 11:37:01 +0200696/*
697 * For use from filesystems to quickly init and register a bdi associated
698 * with dirty writeback
699 */
700int bdi_setup_and_register(struct backing_dev_info *bdi, char *name,
701 unsigned int cap)
702{
703 char tmp[32];
704 int err;
705
706 bdi->name = name;
707 bdi->capabilities = cap;
708 err = bdi_init(bdi);
709 if (err)
710 return err;
711
712 sprintf(tmp, "%.28s%s", name, "-%d");
713 err = bdi_register(bdi, NULL, tmp, atomic_long_inc_return(&bdi_seq));
714 if (err) {
715 bdi_destroy(bdi);
716 return err;
717 }
718
719 return 0;
720}
721EXPORT_SYMBOL(bdi_setup_and_register);
722
Andrew Morton3fcfab12006-10-19 23:28:16 -0700723static wait_queue_head_t congestion_wqh[2] = {
724 __WAIT_QUEUE_HEAD_INITIALIZER(congestion_wqh[0]),
725 __WAIT_QUEUE_HEAD_INITIALIZER(congestion_wqh[1])
726 };
727
Jens Axboe1faa16d2009-04-06 14:48:01 +0200728void clear_bdi_congested(struct backing_dev_info *bdi, int sync)
Andrew Morton3fcfab12006-10-19 23:28:16 -0700729{
730 enum bdi_state bit;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200731 wait_queue_head_t *wqh = &congestion_wqh[sync];
Andrew Morton3fcfab12006-10-19 23:28:16 -0700732
Jens Axboe1faa16d2009-04-06 14:48:01 +0200733 bit = sync ? BDI_sync_congested : BDI_async_congested;
Andrew Morton3fcfab12006-10-19 23:28:16 -0700734 clear_bit(bit, &bdi->state);
735 smp_mb__after_clear_bit();
736 if (waitqueue_active(wqh))
737 wake_up(wqh);
738}
739EXPORT_SYMBOL(clear_bdi_congested);
740
Jens Axboe1faa16d2009-04-06 14:48:01 +0200741void set_bdi_congested(struct backing_dev_info *bdi, int sync)
Andrew Morton3fcfab12006-10-19 23:28:16 -0700742{
743 enum bdi_state bit;
744
Jens Axboe1faa16d2009-04-06 14:48:01 +0200745 bit = sync ? BDI_sync_congested : BDI_async_congested;
Andrew Morton3fcfab12006-10-19 23:28:16 -0700746 set_bit(bit, &bdi->state);
747}
748EXPORT_SYMBOL(set_bdi_congested);
749
750/**
751 * congestion_wait - wait for a backing_dev to become uncongested
Jens Axboe8aa7e842009-07-09 14:52:32 +0200752 * @sync: SYNC or ASYNC IO
Andrew Morton3fcfab12006-10-19 23:28:16 -0700753 * @timeout: timeout in jiffies
754 *
755 * Waits for up to @timeout jiffies for a backing_dev (any backing_dev) to exit
756 * write congestion. If no backing_devs are congested then just wait for the
757 * next write to be completed.
758 */
Jens Axboe8aa7e842009-07-09 14:52:32 +0200759long congestion_wait(int sync, long timeout)
Andrew Morton3fcfab12006-10-19 23:28:16 -0700760{
761 long ret;
762 DEFINE_WAIT(wait);
Jens Axboe8aa7e842009-07-09 14:52:32 +0200763 wait_queue_head_t *wqh = &congestion_wqh[sync];
Andrew Morton3fcfab12006-10-19 23:28:16 -0700764
765 prepare_to_wait(wqh, &wait, TASK_UNINTERRUPTIBLE);
766 ret = io_schedule_timeout(timeout);
767 finish_wait(wqh, &wait);
768 return ret;
769}
770EXPORT_SYMBOL(congestion_wait);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700771