blob: fd93566345b6ade36f527c14c2bdc0c6f60d243b [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 Axboe26160152009-03-17 09:35:06 +010014void default_unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
15{
16}
17EXPORT_SYMBOL(default_unplug_io_fn);
18
19struct backing_dev_info default_backing_dev_info = {
Jens Axboed9938312009-06-12 14:45:52 +020020 .name = "default",
Jens Axboe26160152009-03-17 09:35:06 +010021 .ra_pages = VM_MAX_READAHEAD * 1024 / PAGE_CACHE_SIZE,
22 .state = 0,
23 .capabilities = BDI_CAP_MAP_COPY,
24 .unplug_io_fn = default_unplug_io_fn,
25};
26EXPORT_SYMBOL_GPL(default_backing_dev_info);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070027
28static struct class *bdi_class;
Jens Axboecfc4ba52009-09-14 13:12:40 +020029
30/*
31 * bdi_lock protects updates to bdi_list and bdi_pending_list, as well as
32 * reader side protection for bdi_pending_list. bdi_list has RCU reader side
33 * locking.
34 */
Jens Axboe03ba3782009-09-09 09:08:54 +020035DEFINE_SPINLOCK(bdi_lock);
Jens Axboe66f3b8e2009-09-02 09:19:46 +020036LIST_HEAD(bdi_list);
Jens Axboe03ba3782009-09-09 09:08:54 +020037LIST_HEAD(bdi_pending_list);
38
39static struct task_struct *sync_supers_tsk;
40static struct timer_list sync_supers_timer;
41
42static int bdi_sync_supers(void *);
43static void sync_supers_timer_fn(unsigned long);
44static void arm_supers_timer(void);
45
46static void bdi_add_default_flusher_task(struct backing_dev_info *bdi);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070047
Miklos Szeredi76f14182008-04-30 00:54:36 -070048#ifdef CONFIG_DEBUG_FS
49#include <linux/debugfs.h>
50#include <linux/seq_file.h>
51
52static struct dentry *bdi_debug_root;
53
54static void bdi_debug_init(void)
55{
56 bdi_debug_root = debugfs_create_dir("bdi", NULL);
57}
58
59static int bdi_debug_stats_show(struct seq_file *m, void *v)
60{
61 struct backing_dev_info *bdi = m->private;
Jens Axboef09b00d2009-05-25 09:08:21 +020062 struct bdi_writeback *wb;
David Rientjes364aeb22009-01-06 14:39:29 -080063 unsigned long background_thresh;
64 unsigned long dirty_thresh;
65 unsigned long bdi_thresh;
Jens Axboef09b00d2009-05-25 09:08:21 +020066 unsigned long nr_dirty, nr_io, nr_more_io, nr_wb;
67 struct inode *inode;
68
69 /*
70 * inode lock is enough here, the bdi->wb_list is protected by
71 * RCU on the reader side
72 */
73 nr_wb = nr_dirty = nr_io = nr_more_io = 0;
74 spin_lock(&inode_lock);
75 list_for_each_entry(wb, &bdi->wb_list, list) {
76 nr_wb++;
77 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++;
83 }
84 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"
95 "WriteBack threads:%8lu\n"
96 "b_dirty: %8lu\n"
97 "b_io: %8lu\n"
98 "b_more_io: %8lu\n"
99 "bdi_list: %8u\n"
100 "state: %8lx\n"
101 "wb_mask: %8lx\n"
102 "wb_list: %8u\n"
103 "wb_cnt: %8u\n",
Miklos Szeredi76f14182008-04-30 00:54:36 -0700104 (unsigned long) K(bdi_stat(bdi, BDI_WRITEBACK)),
105 (unsigned long) K(bdi_stat(bdi, BDI_RECLAIMABLE)),
Jens Axboef09b00d2009-05-25 09:08:21 +0200106 K(bdi_thresh), K(dirty_thresh),
107 K(background_thresh), nr_wb, nr_dirty, nr_io, nr_more_io,
108 !list_empty(&bdi->bdi_list), bdi->state, bdi->wb_mask,
109 !list_empty(&bdi->wb_list), bdi->wb_cnt);
Miklos Szeredi76f14182008-04-30 00:54:36 -0700110#undef K
111
112 return 0;
113}
114
115static int bdi_debug_stats_open(struct inode *inode, struct file *file)
116{
117 return single_open(file, bdi_debug_stats_show, inode->i_private);
118}
119
120static const struct file_operations bdi_debug_stats_fops = {
121 .open = bdi_debug_stats_open,
122 .read = seq_read,
123 .llseek = seq_lseek,
124 .release = single_release,
125};
126
127static void bdi_debug_register(struct backing_dev_info *bdi, const char *name)
128{
129 bdi->debug_dir = debugfs_create_dir(name, bdi_debug_root);
130 bdi->debug_stats = debugfs_create_file("stats", 0444, bdi->debug_dir,
131 bdi, &bdi_debug_stats_fops);
132}
133
134static void bdi_debug_unregister(struct backing_dev_info *bdi)
135{
136 debugfs_remove(bdi->debug_stats);
137 debugfs_remove(bdi->debug_dir);
138}
139#else
140static inline void bdi_debug_init(void)
141{
142}
143static inline void bdi_debug_register(struct backing_dev_info *bdi,
144 const char *name)
145{
146}
147static inline void bdi_debug_unregister(struct backing_dev_info *bdi)
148{
149}
150#endif
151
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700152static ssize_t read_ahead_kb_store(struct device *dev,
153 struct device_attribute *attr,
154 const char *buf, size_t count)
155{
156 struct backing_dev_info *bdi = dev_get_drvdata(dev);
157 char *end;
158 unsigned long read_ahead_kb;
159 ssize_t ret = -EINVAL;
160
161 read_ahead_kb = simple_strtoul(buf, &end, 10);
162 if (*buf && (end[0] == '\0' || (end[0] == '\n' && end[1] == '\0'))) {
163 bdi->ra_pages = read_ahead_kb >> (PAGE_SHIFT - 10);
164 ret = count;
165 }
166 return ret;
167}
168
169#define K(pages) ((pages) << (PAGE_SHIFT - 10))
170
171#define BDI_SHOW(name, expr) \
172static ssize_t name##_show(struct device *dev, \
173 struct device_attribute *attr, char *page) \
174{ \
175 struct backing_dev_info *bdi = dev_get_drvdata(dev); \
176 \
177 return snprintf(page, PAGE_SIZE-1, "%lld\n", (long long)expr); \
178}
179
180BDI_SHOW(read_ahead_kb, K(bdi->ra_pages))
181
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700182static ssize_t min_ratio_store(struct device *dev,
183 struct device_attribute *attr, const char *buf, size_t count)
184{
185 struct backing_dev_info *bdi = dev_get_drvdata(dev);
186 char *end;
187 unsigned int ratio;
188 ssize_t ret = -EINVAL;
189
190 ratio = simple_strtoul(buf, &end, 10);
191 if (*buf && (end[0] == '\0' || (end[0] == '\n' && end[1] == '\0'))) {
192 ret = bdi_set_min_ratio(bdi, ratio);
193 if (!ret)
194 ret = count;
195 }
196 return ret;
197}
198BDI_SHOW(min_ratio, bdi->min_ratio)
199
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700200static ssize_t max_ratio_store(struct device *dev,
201 struct device_attribute *attr, const char *buf, size_t count)
202{
203 struct backing_dev_info *bdi = dev_get_drvdata(dev);
204 char *end;
205 unsigned int ratio;
206 ssize_t ret = -EINVAL;
207
208 ratio = simple_strtoul(buf, &end, 10);
209 if (*buf && (end[0] == '\0' || (end[0] == '\n' && end[1] == '\0'))) {
210 ret = bdi_set_max_ratio(bdi, ratio);
211 if (!ret)
212 ret = count;
213 }
214 return ret;
215}
216BDI_SHOW(max_ratio, bdi->max_ratio)
217
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700218#define __ATTR_RW(attr) __ATTR(attr, 0644, attr##_show, attr##_store)
219
220static struct device_attribute bdi_dev_attrs[] = {
221 __ATTR_RW(read_ahead_kb),
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700222 __ATTR_RW(min_ratio),
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700223 __ATTR_RW(max_ratio),
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700224 __ATTR_NULL,
225};
226
227static __init int bdi_class_init(void)
228{
229 bdi_class = class_create(THIS_MODULE, "bdi");
230 bdi_class->dev_attrs = bdi_dev_attrs;
Miklos Szeredi76f14182008-04-30 00:54:36 -0700231 bdi_debug_init();
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700232 return 0;
233}
Miklos Szeredi76f14182008-04-30 00:54:36 -0700234postcore_initcall(bdi_class_init);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700235
Jens Axboe26160152009-03-17 09:35:06 +0100236static int __init default_bdi_init(void)
237{
238 int err;
239
Jens Axboe03ba3782009-09-09 09:08:54 +0200240 sync_supers_tsk = kthread_run(bdi_sync_supers, NULL, "sync_supers");
241 BUG_ON(IS_ERR(sync_supers_tsk));
242
243 init_timer(&sync_supers_timer);
244 setup_timer(&sync_supers_timer, sync_supers_timer_fn, 0);
245 arm_supers_timer();
246
Jens Axboe26160152009-03-17 09:35:06 +0100247 err = bdi_init(&default_backing_dev_info);
248 if (!err)
249 bdi_register(&default_backing_dev_info, NULL, "default");
250
251 return err;
252}
253subsys_initcall(default_bdi_init);
254
Jens Axboe03ba3782009-09-09 09:08:54 +0200255static void bdi_wb_init(struct bdi_writeback *wb, struct backing_dev_info *bdi)
256{
257 memset(wb, 0, sizeof(*wb));
258
259 wb->bdi = bdi;
260 wb->last_old_flush = jiffies;
261 INIT_LIST_HEAD(&wb->b_dirty);
262 INIT_LIST_HEAD(&wb->b_io);
263 INIT_LIST_HEAD(&wb->b_more_io);
264}
265
266static void bdi_task_init(struct backing_dev_info *bdi,
267 struct bdi_writeback *wb)
268{
269 struct task_struct *tsk = current;
270
271 spin_lock(&bdi->wb_lock);
272 list_add_tail_rcu(&wb->list, &bdi->wb_list);
273 spin_unlock(&bdi->wb_lock);
274
275 tsk->flags |= PF_FLUSHER | PF_SWAPWRITE;
276 set_freezable();
277
278 /*
279 * Our parent may run at a different priority, just set us to normal
280 */
281 set_user_nice(tsk, 0);
282}
283
284static int bdi_start_fn(void *ptr)
285{
286 struct bdi_writeback *wb = ptr;
287 struct backing_dev_info *bdi = wb->bdi;
288 int ret;
289
290 /*
291 * Add us to the active bdi_list
292 */
Jens Axboecfc4ba52009-09-14 13:12:40 +0200293 spin_lock_bh(&bdi_lock);
294 list_add_rcu(&bdi->bdi_list, &bdi_list);
295 spin_unlock_bh(&bdi_lock);
Jens Axboe03ba3782009-09-09 09:08:54 +0200296
297 bdi_task_init(bdi, wb);
298
299 /*
300 * Clear pending bit and wakeup anybody waiting to tear us down
301 */
302 clear_bit(BDI_pending, &bdi->state);
303 smp_mb__after_clear_bit();
304 wake_up_bit(&bdi->state, BDI_pending);
305
306 ret = bdi_writeback_task(wb);
307
308 /*
309 * Remove us from the list
310 */
311 spin_lock(&bdi->wb_lock);
312 list_del_rcu(&wb->list);
313 spin_unlock(&bdi->wb_lock);
314
315 /*
316 * Flush any work that raced with us exiting. No new work
317 * will be added, since this bdi isn't discoverable anymore.
318 */
319 if (!list_empty(&bdi->work_list))
320 wb_do_writeback(wb, 1);
321
322 wb->task = NULL;
323 return ret;
324}
325
326int bdi_has_dirty_io(struct backing_dev_info *bdi)
327{
328 return wb_has_dirty_io(&bdi->wb);
329}
330
331static void bdi_flush_io(struct backing_dev_info *bdi)
332{
333 struct writeback_control wbc = {
334 .bdi = bdi,
335 .sync_mode = WB_SYNC_NONE,
336 .older_than_this = NULL,
337 .range_cyclic = 1,
338 .nr_to_write = 1024,
339 };
340
341 writeback_inodes_wbc(&wbc);
342}
343
344/*
345 * kupdated() used to do this. We cannot do it from the bdi_forker_task()
346 * or we risk deadlocking on ->s_umount. The longer term solution would be
347 * to implement sync_supers_bdi() or similar and simply do it from the
348 * bdi writeback tasks individually.
349 */
350static int bdi_sync_supers(void *unused)
351{
352 set_user_nice(current, 0);
353
354 while (!kthread_should_stop()) {
355 set_current_state(TASK_INTERRUPTIBLE);
356 schedule();
357
358 /*
359 * Do this periodically, like kupdated() did before.
360 */
361 sync_supers();
362 }
363
364 return 0;
365}
366
367static void arm_supers_timer(void)
368{
369 unsigned long next;
370
371 next = msecs_to_jiffies(dirty_writeback_interval * 10) + jiffies;
372 mod_timer(&sync_supers_timer, round_jiffies_up(next));
373}
374
375static void sync_supers_timer_fn(unsigned long unused)
376{
377 wake_up_process(sync_supers_tsk);
378 arm_supers_timer();
379}
380
381static int bdi_forker_task(void *ptr)
382{
383 struct bdi_writeback *me = ptr;
384
385 bdi_task_init(me->bdi, me);
386
387 for (;;) {
388 struct backing_dev_info *bdi, *tmp;
389 struct bdi_writeback *wb;
390
391 /*
392 * Temporary measure, we want to make sure we don't see
393 * dirty data on the default backing_dev_info
394 */
395 if (wb_has_dirty_io(me) || !list_empty(&me->bdi->work_list))
396 wb_do_writeback(me, 0);
397
Jens Axboecfc4ba52009-09-14 13:12:40 +0200398 spin_lock_bh(&bdi_lock);
Jens Axboe03ba3782009-09-09 09:08:54 +0200399
400 /*
401 * Check if any existing bdi's have dirty data without
402 * a thread registered. If so, set that up.
403 */
404 list_for_each_entry_safe(bdi, tmp, &bdi_list, bdi_list) {
405 if (bdi->wb.task)
406 continue;
407 if (list_empty(&bdi->work_list) &&
408 !bdi_has_dirty_io(bdi))
409 continue;
410
411 bdi_add_default_flusher_task(bdi);
412 }
413
414 set_current_state(TASK_INTERRUPTIBLE);
415
416 if (list_empty(&bdi_pending_list)) {
417 unsigned long wait;
418
Jens Axboecfc4ba52009-09-14 13:12:40 +0200419 spin_unlock_bh(&bdi_lock);
Jens Axboe03ba3782009-09-09 09:08:54 +0200420 wait = msecs_to_jiffies(dirty_writeback_interval * 10);
421 schedule_timeout(wait);
422 try_to_freeze();
423 continue;
424 }
425
426 __set_current_state(TASK_RUNNING);
427
428 /*
429 * This is our real job - check for pending entries in
430 * bdi_pending_list, and create the tasks that got added
431 */
432 bdi = list_entry(bdi_pending_list.next, struct backing_dev_info,
433 bdi_list);
434 list_del_init(&bdi->bdi_list);
Jens Axboecfc4ba52009-09-14 13:12:40 +0200435 spin_unlock_bh(&bdi_lock);
Jens Axboe03ba3782009-09-09 09:08:54 +0200436
437 wb = &bdi->wb;
438 wb->task = kthread_run(bdi_start_fn, wb, "flush-%s",
439 dev_name(bdi->dev));
440 /*
441 * If task creation fails, then readd the bdi to
442 * the pending list and force writeout of the bdi
443 * from this forker thread. That will free some memory
444 * and we can try again.
445 */
446 if (IS_ERR(wb->task)) {
447 wb->task = NULL;
448
449 /*
450 * Add this 'bdi' to the back, so we get
451 * a chance to flush other bdi's to free
452 * memory.
453 */
Jens Axboecfc4ba52009-09-14 13:12:40 +0200454 spin_lock_bh(&bdi_lock);
Jens Axboe03ba3782009-09-09 09:08:54 +0200455 list_add_tail(&bdi->bdi_list, &bdi_pending_list);
Jens Axboecfc4ba52009-09-14 13:12:40 +0200456 spin_unlock_bh(&bdi_lock);
Jens Axboe03ba3782009-09-09 09:08:54 +0200457
458 bdi_flush_io(bdi);
459 }
460 }
461
462 return 0;
463}
464
Jens Axboecfc4ba52009-09-14 13:12:40 +0200465static void bdi_add_to_pending(struct rcu_head *head)
466{
467 struct backing_dev_info *bdi;
468
469 bdi = container_of(head, struct backing_dev_info, rcu_head);
470 INIT_LIST_HEAD(&bdi->bdi_list);
471
472 spin_lock(&bdi_lock);
473 list_add_tail(&bdi->bdi_list, &bdi_pending_list);
474 spin_unlock(&bdi_lock);
475
476 /*
477 * We are now on the pending list, wake up bdi_forker_task()
478 * to finish the job and add us back to the active bdi_list
479 */
480 wake_up_process(default_backing_dev_info.wb.task);
481}
482
Jens Axboe03ba3782009-09-09 09:08:54 +0200483/*
484 * Add the default flusher task that gets created for any bdi
485 * that has dirty data pending writeout
486 */
487void static bdi_add_default_flusher_task(struct backing_dev_info *bdi)
488{
489 if (!bdi_cap_writeback_dirty(bdi))
490 return;
491
Jens Axboe500b0672009-09-09 09:10:25 +0200492 if (WARN_ON(!test_bit(BDI_registered, &bdi->state))) {
493 printk(KERN_ERR "bdi %p/%s is not registered!\n",
494 bdi, bdi->name);
495 return;
496 }
497
Jens Axboe03ba3782009-09-09 09:08:54 +0200498 /*
499 * Check with the helper whether to proceed adding a task. Will only
500 * abort if we two or more simultanous calls to
501 * bdi_add_default_flusher_task() occured, further additions will block
502 * waiting for previous additions to finish.
503 */
504 if (!test_and_set_bit(BDI_pending, &bdi->state)) {
Jens Axboecfc4ba52009-09-14 13:12:40 +0200505 list_del_rcu(&bdi->bdi_list);
Jens Axboe03ba3782009-09-09 09:08:54 +0200506
507 /*
Jens Axboecfc4ba52009-09-14 13:12:40 +0200508 * We must wait for the current RCU period to end before
509 * moving to the pending list. So schedule that operation
510 * from an RCU callback.
Jens Axboe03ba3782009-09-09 09:08:54 +0200511 */
Jens Axboecfc4ba52009-09-14 13:12:40 +0200512 call_rcu(&bdi->rcu_head, bdi_add_to_pending);
Jens Axboe03ba3782009-09-09 09:08:54 +0200513 }
514}
515
Jens Axboecfc4ba52009-09-14 13:12:40 +0200516/*
517 * Remove bdi from bdi_list, and ensure that it is no longer visible
518 */
519static void bdi_remove_from_list(struct backing_dev_info *bdi)
520{
521 spin_lock_bh(&bdi_lock);
522 list_del_rcu(&bdi->bdi_list);
523 spin_unlock_bh(&bdi_lock);
524
525 synchronize_rcu();
526}
527
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700528int bdi_register(struct backing_dev_info *bdi, struct device *parent,
529 const char *fmt, ...)
530{
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700531 va_list args;
532 int ret = 0;
533 struct device *dev;
534
Andrew Morton69fc2082008-12-09 13:14:06 -0800535 if (bdi->dev) /* The driver needs to use separate queues per device */
Kay Sieversf1d0b062008-12-02 10:31:50 -0800536 goto exit;
537
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700538 va_start(args, fmt);
Greg Kroah-Hartman19051c52008-05-15 13:44:08 -0700539 dev = device_create_vargs(bdi_class, parent, MKDEV(0, 0), bdi, fmt, args);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700540 va_end(args);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700541 if (IS_ERR(dev)) {
542 ret = PTR_ERR(dev);
543 goto exit;
544 }
545
Jens Axboecfc4ba52009-09-14 13:12:40 +0200546 spin_lock_bh(&bdi_lock);
547 list_add_tail_rcu(&bdi->bdi_list, &bdi_list);
548 spin_unlock_bh(&bdi_lock);
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200549
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700550 bdi->dev = dev;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700551
Jens Axboe03ba3782009-09-09 09:08:54 +0200552 /*
553 * Just start the forker thread for our default backing_dev_info,
554 * and add other bdi's to the list. They will get a thread created
555 * on-demand when they need it.
556 */
557 if (bdi_cap_flush_forker(bdi)) {
558 struct bdi_writeback *wb = &bdi->wb;
559
560 wb->task = kthread_run(bdi_forker_task, wb, "bdi-%s",
561 dev_name(dev));
562 if (IS_ERR(wb->task)) {
563 wb->task = NULL;
564 ret = -ENOMEM;
565
Jens Axboecfc4ba52009-09-14 13:12:40 +0200566 bdi_remove_from_list(bdi);
Jens Axboe03ba3782009-09-09 09:08:54 +0200567 goto exit;
568 }
569 }
570
571 bdi_debug_register(bdi, dev_name(dev));
Jens Axboe500b0672009-09-09 09:10:25 +0200572 set_bit(BDI_registered, &bdi->state);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700573exit:
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700574 return ret;
575}
576EXPORT_SYMBOL(bdi_register);
577
578int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev)
579{
580 return bdi_register(bdi, NULL, "%u:%u", MAJOR(dev), MINOR(dev));
581}
582EXPORT_SYMBOL(bdi_register_dev);
583
Jens Axboe03ba3782009-09-09 09:08:54 +0200584/*
585 * Remove bdi from the global list and shutdown any threads we have running
586 */
587static void bdi_wb_shutdown(struct backing_dev_info *bdi)
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200588{
Jens Axboe03ba3782009-09-09 09:08:54 +0200589 struct bdi_writeback *wb;
590
591 if (!bdi_cap_writeback_dirty(bdi))
592 return;
593
594 /*
595 * If setup is pending, wait for that to complete first
596 */
597 wait_on_bit(&bdi->state, BDI_pending, bdi_sched_wait,
598 TASK_UNINTERRUPTIBLE);
599
600 /*
601 * Make sure nobody finds us on the bdi_list anymore
602 */
Jens Axboecfc4ba52009-09-14 13:12:40 +0200603 bdi_remove_from_list(bdi);
Jens Axboe03ba3782009-09-09 09:08:54 +0200604
605 /*
606 * Finally, kill the kernel threads. We don't need to be RCU
607 * safe anymore, since the bdi is gone from visibility.
608 */
609 list_for_each_entry(wb, &bdi->wb_list, list)
610 kthread_stop(wb->task);
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200611}
612
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700613void bdi_unregister(struct backing_dev_info *bdi)
614{
615 if (bdi->dev) {
Jens Axboe03ba3782009-09-09 09:08:54 +0200616 if (!bdi_cap_flush_forker(bdi))
617 bdi_wb_shutdown(bdi);
Miklos Szeredi76f14182008-04-30 00:54:36 -0700618 bdi_debug_unregister(bdi);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700619 device_unregister(bdi->dev);
620 bdi->dev = NULL;
621 }
622}
623EXPORT_SYMBOL(bdi_unregister);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700624
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700625int bdi_init(struct backing_dev_info *bdi)
626{
Jens Axboe03ba3782009-09-09 09:08:54 +0200627 int i, err;
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700628
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700629 bdi->dev = NULL;
630
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700631 bdi->min_ratio = 0;
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700632 bdi->max_ratio = 100;
633 bdi->max_prop_frac = PROP_FRAC_BASE;
Jens Axboe03ba3782009-09-09 09:08:54 +0200634 spin_lock_init(&bdi->wb_lock);
Jens Axboecfc4ba52009-09-14 13:12:40 +0200635 INIT_RCU_HEAD(&bdi->rcu_head);
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200636 INIT_LIST_HEAD(&bdi->bdi_list);
Jens Axboe03ba3782009-09-09 09:08:54 +0200637 INIT_LIST_HEAD(&bdi->wb_list);
638 INIT_LIST_HEAD(&bdi->work_list);
639
640 bdi_wb_init(&bdi->wb, bdi);
641
642 /*
643 * Just one thread support for now, hard code mask and count
644 */
645 bdi->wb_mask = 1;
646 bdi->wb_cnt = 1;
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700647
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700648 for (i = 0; i < NR_BDI_STAT_ITEMS; i++) {
Peter Zijlstraea319512008-12-26 15:08:55 +0100649 err = percpu_counter_init(&bdi->bdi_stat[i], 0);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700650 if (err)
651 goto err;
652 }
653
654 bdi->dirty_exceeded = 0;
655 err = prop_local_init_percpu(&bdi->completions);
656
657 if (err) {
658err:
Denis Cheng4b01a0b2007-12-04 23:45:07 -0800659 while (i--)
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700660 percpu_counter_destroy(&bdi->bdi_stat[i]);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700661 }
662
663 return err;
664}
665EXPORT_SYMBOL(bdi_init);
666
667void bdi_destroy(struct backing_dev_info *bdi)
668{
669 int i;
670
Jens Axboe03ba3782009-09-09 09:08:54 +0200671 WARN_ON(bdi_has_dirty_io(bdi));
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200672
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700673 bdi_unregister(bdi);
674
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700675 for (i = 0; i < NR_BDI_STAT_ITEMS; i++)
676 percpu_counter_destroy(&bdi->bdi_stat[i]);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700677
678 prop_local_destroy_percpu(&bdi->completions);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700679}
680EXPORT_SYMBOL(bdi_destroy);
681
Andrew Morton3fcfab12006-10-19 23:28:16 -0700682static wait_queue_head_t congestion_wqh[2] = {
683 __WAIT_QUEUE_HEAD_INITIALIZER(congestion_wqh[0]),
684 __WAIT_QUEUE_HEAD_INITIALIZER(congestion_wqh[1])
685 };
686
Jens Axboe1faa16d2009-04-06 14:48:01 +0200687void clear_bdi_congested(struct backing_dev_info *bdi, int sync)
Andrew Morton3fcfab12006-10-19 23:28:16 -0700688{
689 enum bdi_state bit;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200690 wait_queue_head_t *wqh = &congestion_wqh[sync];
Andrew Morton3fcfab12006-10-19 23:28:16 -0700691
Jens Axboe1faa16d2009-04-06 14:48:01 +0200692 bit = sync ? BDI_sync_congested : BDI_async_congested;
Andrew Morton3fcfab12006-10-19 23:28:16 -0700693 clear_bit(bit, &bdi->state);
694 smp_mb__after_clear_bit();
695 if (waitqueue_active(wqh))
696 wake_up(wqh);
697}
698EXPORT_SYMBOL(clear_bdi_congested);
699
Jens Axboe1faa16d2009-04-06 14:48:01 +0200700void set_bdi_congested(struct backing_dev_info *bdi, int sync)
Andrew Morton3fcfab12006-10-19 23:28:16 -0700701{
702 enum bdi_state bit;
703
Jens Axboe1faa16d2009-04-06 14:48:01 +0200704 bit = sync ? BDI_sync_congested : BDI_async_congested;
Andrew Morton3fcfab12006-10-19 23:28:16 -0700705 set_bit(bit, &bdi->state);
706}
707EXPORT_SYMBOL(set_bdi_congested);
708
709/**
710 * congestion_wait - wait for a backing_dev to become uncongested
Jens Axboe8aa7e842009-07-09 14:52:32 +0200711 * @sync: SYNC or ASYNC IO
Andrew Morton3fcfab12006-10-19 23:28:16 -0700712 * @timeout: timeout in jiffies
713 *
714 * Waits for up to @timeout jiffies for a backing_dev (any backing_dev) to exit
715 * write congestion. If no backing_devs are congested then just wait for the
716 * next write to be completed.
717 */
Jens Axboe8aa7e842009-07-09 14:52:32 +0200718long congestion_wait(int sync, long timeout)
Andrew Morton3fcfab12006-10-19 23:28:16 -0700719{
720 long ret;
721 DEFINE_WAIT(wait);
Jens Axboe8aa7e842009-07-09 14:52:32 +0200722 wait_queue_head_t *wqh = &congestion_wqh[sync];
Andrew Morton3fcfab12006-10-19 23:28:16 -0700723
724 prepare_to_wait(wqh, &wait, TASK_UNINTERRUPTIBLE);
725 ret = io_schedule_timeout(timeout);
726 finish_wait(wqh, &wait);
727 return ret;
728}
729EXPORT_SYMBOL(congestion_wait);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700730