initial commit with v2.6.32.60
[linux-2.6.32.60-moxart.git] / mm / backing-dev.c
blobd824401081317968c442feeb9546c57a1e5f8632
2 #include <linux/wait.h>
3 #include <linux/backing-dev.h>
4 #include <linux/kthread.h>
5 #include <linux/freezer.h>
6 #include <linux/fs.h>
7 #include <linux/pagemap.h>
8 #include <linux/mm.h>
9 #include <linux/sched.h>
10 #include <linux/module.h>
11 #include <linux/writeback.h>
12 #include <linux/device.h>
14 void default_unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
17 EXPORT_SYMBOL(default_unplug_io_fn);
19 struct backing_dev_info default_backing_dev_info = {
20 .name = "default",
21 .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,
26 EXPORT_SYMBOL_GPL(default_backing_dev_info);
28 static struct class *bdi_class;
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.
35 DEFINE_SPINLOCK(bdi_lock);
36 LIST_HEAD(bdi_list);
37 LIST_HEAD(bdi_pending_list);
39 static struct task_struct *sync_supers_tsk;
40 static struct timer_list sync_supers_timer;
42 static int bdi_sync_supers(void *);
43 static void sync_supers_timer_fn(unsigned long);
45 static void bdi_add_default_flusher_task(struct backing_dev_info *bdi);
47 #ifdef CONFIG_DEBUG_FS
48 #include <linux/debugfs.h>
49 #include <linux/seq_file.h>
51 static struct dentry *bdi_debug_root;
53 static void bdi_debug_init(void)
55 bdi_debug_root = debugfs_create_dir("bdi", NULL);
58 static int bdi_debug_stats_show(struct seq_file *m, void *v)
60 struct backing_dev_info *bdi = m->private;
61 struct bdi_writeback *wb;
62 unsigned long background_thresh;
63 unsigned long dirty_thresh;
64 unsigned long bdi_thresh;
65 unsigned long nr_dirty, nr_io, nr_more_io, nr_wb;
66 struct inode *inode;
69 * inode lock is enough here, the bdi->wb_list is protected by
70 * RCU on the reader side
72 nr_wb = nr_dirty = nr_io = nr_more_io = 0;
73 spin_lock(&inode_lock);
74 list_for_each_entry(wb, &bdi->wb_list, list) {
75 nr_wb++;
76 list_for_each_entry(inode, &wb->b_dirty, i_list)
77 nr_dirty++;
78 list_for_each_entry(inode, &wb->b_io, i_list)
79 nr_io++;
80 list_for_each_entry(inode, &wb->b_more_io, i_list)
81 nr_more_io++;
83 spin_unlock(&inode_lock);
85 get_dirty_limits(&background_thresh, &dirty_thresh, &bdi_thresh, bdi);
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"
93 "BackgroundThresh: %8lu kB\n"
94 "WritebackThreads: %8lu\n"
95 "b_dirty: %8lu\n"
96 "b_io: %8lu\n"
97 "b_more_io: %8lu\n"
98 "bdi_list: %8u\n"
99 "state: %8lx\n"
100 "wb_mask: %8lx\n"
101 "wb_list: %8u\n"
102 "wb_cnt: %8u\n",
103 (unsigned long) K(bdi_stat(bdi, BDI_WRITEBACK)),
104 (unsigned long) K(bdi_stat(bdi, BDI_RECLAIMABLE)),
105 K(bdi_thresh), K(dirty_thresh),
106 K(background_thresh), nr_wb, nr_dirty, nr_io, nr_more_io,
107 !list_empty(&bdi->bdi_list), bdi->state, bdi->wb_mask,
108 !list_empty(&bdi->wb_list), bdi->wb_cnt);
109 #undef K
111 return 0;
114 static int bdi_debug_stats_open(struct inode *inode, struct file *file)
116 return single_open(file, bdi_debug_stats_show, inode->i_private);
119 static const struct file_operations bdi_debug_stats_fops = {
120 .open = bdi_debug_stats_open,
121 .read = seq_read,
122 .llseek = seq_lseek,
123 .release = single_release,
126 static void bdi_debug_register(struct backing_dev_info *bdi, const char *name)
128 bdi->debug_dir = debugfs_create_dir(name, bdi_debug_root);
129 bdi->debug_stats = debugfs_create_file("stats", 0444, bdi->debug_dir,
130 bdi, &bdi_debug_stats_fops);
133 static void bdi_debug_unregister(struct backing_dev_info *bdi)
135 debugfs_remove(bdi->debug_stats);
136 debugfs_remove(bdi->debug_dir);
138 #else
139 static inline void bdi_debug_init(void)
142 static inline void bdi_debug_register(struct backing_dev_info *bdi,
143 const char *name)
146 static inline void bdi_debug_unregister(struct backing_dev_info *bdi)
149 #endif
151 static ssize_t read_ahead_kb_store(struct device *dev,
152 struct device_attribute *attr,
153 const char *buf, size_t count)
155 struct backing_dev_info *bdi = dev_get_drvdata(dev);
156 char *end;
157 unsigned long read_ahead_kb;
158 ssize_t ret = -EINVAL;
160 read_ahead_kb = simple_strtoul(buf, &end, 10);
161 if (*buf && (end[0] == '\0' || (end[0] == '\n' && end[1] == '\0'))) {
162 bdi->ra_pages = read_ahead_kb >> (PAGE_SHIFT - 10);
163 ret = count;
165 return ret;
168 #define K(pages) ((pages) << (PAGE_SHIFT - 10))
170 #define BDI_SHOW(name, expr) \
171 static ssize_t name##_show(struct device *dev, \
172 struct device_attribute *attr, char *page) \
174 struct backing_dev_info *bdi = dev_get_drvdata(dev); \
176 return snprintf(page, PAGE_SIZE-1, "%lld\n", (long long)expr); \
179 BDI_SHOW(read_ahead_kb, K(bdi->ra_pages))
181 static ssize_t min_ratio_store(struct device *dev,
182 struct device_attribute *attr, const char *buf, size_t count)
184 struct backing_dev_info *bdi = dev_get_drvdata(dev);
185 char *end;
186 unsigned int ratio;
187 ssize_t ret = -EINVAL;
189 ratio = simple_strtoul(buf, &end, 10);
190 if (*buf && (end[0] == '\0' || (end[0] == '\n' && end[1] == '\0'))) {
191 ret = bdi_set_min_ratio(bdi, ratio);
192 if (!ret)
193 ret = count;
195 return ret;
197 BDI_SHOW(min_ratio, bdi->min_ratio)
199 static ssize_t max_ratio_store(struct device *dev,
200 struct device_attribute *attr, const char *buf, size_t count)
202 struct backing_dev_info *bdi = dev_get_drvdata(dev);
203 char *end;
204 unsigned int ratio;
205 ssize_t ret = -EINVAL;
207 ratio = simple_strtoul(buf, &end, 10);
208 if (*buf && (end[0] == '\0' || (end[0] == '\n' && end[1] == '\0'))) {
209 ret = bdi_set_max_ratio(bdi, ratio);
210 if (!ret)
211 ret = count;
213 return ret;
215 BDI_SHOW(max_ratio, bdi->max_ratio)
217 #define __ATTR_RW(attr) __ATTR(attr, 0644, attr##_show, attr##_store)
219 static struct device_attribute bdi_dev_attrs[] = {
220 __ATTR_RW(read_ahead_kb),
221 __ATTR_RW(min_ratio),
222 __ATTR_RW(max_ratio),
223 __ATTR_NULL,
226 static __init int bdi_class_init(void)
228 bdi_class = class_create(THIS_MODULE, "bdi");
229 bdi_class->dev_attrs = bdi_dev_attrs;
230 bdi_debug_init();
231 return 0;
233 postcore_initcall(bdi_class_init);
235 static int __init default_bdi_init(void)
237 int err;
239 sync_supers_tsk = kthread_run(bdi_sync_supers, NULL, "sync_supers");
240 BUG_ON(IS_ERR(sync_supers_tsk));
242 init_timer(&sync_supers_timer);
243 setup_timer(&sync_supers_timer, sync_supers_timer_fn, 0);
244 bdi_arm_supers_timer();
246 err = bdi_init(&default_backing_dev_info);
247 if (!err)
248 bdi_register(&default_backing_dev_info, NULL, "default");
250 return err;
252 subsys_initcall(default_bdi_init);
254 static void bdi_wb_init(struct bdi_writeback *wb, struct backing_dev_info *bdi)
256 memset(wb, 0, sizeof(*wb));
258 wb->bdi = bdi;
259 wb->last_old_flush = jiffies;
260 INIT_LIST_HEAD(&wb->b_dirty);
261 INIT_LIST_HEAD(&wb->b_io);
262 INIT_LIST_HEAD(&wb->b_more_io);
265 static void bdi_task_init(struct backing_dev_info *bdi,
266 struct bdi_writeback *wb)
268 struct task_struct *tsk = current;
270 spin_lock(&bdi->wb_lock);
271 list_add_tail_rcu(&wb->list, &bdi->wb_list);
272 spin_unlock(&bdi->wb_lock);
274 tsk->flags |= PF_FLUSHER | PF_SWAPWRITE;
275 set_freezable();
278 * Our parent may run at a different priority, just set us to normal
280 set_user_nice(tsk, 0);
283 static int bdi_start_fn(void *ptr)
285 struct bdi_writeback *wb = ptr;
286 struct backing_dev_info *bdi = wb->bdi;
287 int ret;
290 * Add us to the active bdi_list
292 spin_lock_bh(&bdi_lock);
293 list_add_rcu(&bdi->bdi_list, &bdi_list);
294 spin_unlock_bh(&bdi_lock);
296 bdi_task_init(bdi, wb);
299 * Clear pending bit and wakeup anybody waiting to tear us down
301 clear_bit(BDI_pending, &bdi->state);
302 smp_mb__after_clear_bit();
303 wake_up_bit(&bdi->state, BDI_pending);
305 ret = bdi_writeback_task(wb);
308 * Remove us from the list
310 spin_lock(&bdi->wb_lock);
311 list_del_rcu(&wb->list);
312 spin_unlock(&bdi->wb_lock);
315 * Flush any work that raced with us exiting. No new work
316 * will be added, since this bdi isn't discoverable anymore.
318 if (!list_empty(&bdi->work_list))
319 wb_do_writeback(wb, 1);
321 wb->task = NULL;
322 return ret;
325 int bdi_has_dirty_io(struct backing_dev_info *bdi)
327 return wb_has_dirty_io(&bdi->wb);
330 static void bdi_flush_io(struct backing_dev_info *bdi)
332 struct writeback_control wbc = {
333 .bdi = bdi,
334 .sync_mode = WB_SYNC_NONE,
335 .older_than_this = NULL,
336 .range_cyclic = 1,
337 .nr_to_write = 1024,
340 writeback_inodes_wbc(&wbc);
344 * kupdated() used to do this. We cannot do it from the bdi_forker_task()
345 * or we risk deadlocking on ->s_umount. The longer term solution would be
346 * to implement sync_supers_bdi() or similar and simply do it from the
347 * bdi writeback tasks individually.
349 static int bdi_sync_supers(void *unused)
351 set_user_nice(current, 0);
353 while (!kthread_should_stop()) {
354 set_current_state(TASK_INTERRUPTIBLE);
355 schedule();
358 * Do this periodically, like kupdated() did before.
360 sync_supers();
363 return 0;
366 void bdi_arm_supers_timer(void)
368 unsigned long next;
370 if (!dirty_writeback_interval)
371 return;
373 next = msecs_to_jiffies(dirty_writeback_interval * 10) + jiffies;
374 mod_timer(&sync_supers_timer, round_jiffies_up(next));
377 static void sync_supers_timer_fn(unsigned long unused)
379 wake_up_process(sync_supers_tsk);
380 bdi_arm_supers_timer();
383 static int bdi_forker_task(void *ptr)
385 struct bdi_writeback *me = ptr;
387 bdi_task_init(me->bdi, me);
389 for (;;) {
390 struct backing_dev_info *bdi, *tmp;
391 struct bdi_writeback *wb;
394 * Temporary measure, we want to make sure we don't see
395 * dirty data on the default backing_dev_info
397 if (wb_has_dirty_io(me) || !list_empty(&me->bdi->work_list))
398 wb_do_writeback(me, 0);
400 spin_lock_bh(&bdi_lock);
403 * Check if any existing bdi's have dirty data without
404 * a thread registered. If so, set that up.
406 list_for_each_entry_safe(bdi, tmp, &bdi_list, bdi_list) {
407 if (bdi->wb.task)
408 continue;
409 if (list_empty(&bdi->work_list) &&
410 !bdi_has_dirty_io(bdi))
411 continue;
413 bdi_add_default_flusher_task(bdi);
416 set_current_state(TASK_INTERRUPTIBLE);
418 if (list_empty(&bdi_pending_list)) {
419 unsigned long wait;
421 spin_unlock_bh(&bdi_lock);
422 wait = msecs_to_jiffies(dirty_writeback_interval * 10);
423 if (wait)
424 schedule_timeout(wait);
425 else
426 schedule();
427 try_to_freeze();
428 continue;
431 __set_current_state(TASK_RUNNING);
434 * This is our real job - check for pending entries in
435 * bdi_pending_list, and create the tasks that got added
437 bdi = list_entry(bdi_pending_list.next, struct backing_dev_info,
438 bdi_list);
439 list_del_init(&bdi->bdi_list);
440 spin_unlock_bh(&bdi_lock);
442 wb = &bdi->wb;
443 wb->task = kthread_run(bdi_start_fn, wb, "flush-%s",
444 dev_name(bdi->dev));
446 * If task creation fails, then readd the bdi to
447 * the pending list and force writeout of the bdi
448 * from this forker thread. That will free some memory
449 * and we can try again.
451 if (IS_ERR(wb->task)) {
452 wb->task = NULL;
455 * Add this 'bdi' to the back, so we get
456 * a chance to flush other bdi's to free
457 * memory.
459 spin_lock_bh(&bdi_lock);
460 list_add_tail(&bdi->bdi_list, &bdi_pending_list);
461 spin_unlock_bh(&bdi_lock);
463 bdi_flush_io(bdi);
467 return 0;
470 static void bdi_add_to_pending(struct rcu_head *head)
472 struct backing_dev_info *bdi;
474 bdi = container_of(head, struct backing_dev_info, rcu_head);
475 INIT_LIST_HEAD(&bdi->bdi_list);
477 spin_lock(&bdi_lock);
478 list_add_tail(&bdi->bdi_list, &bdi_pending_list);
479 spin_unlock(&bdi_lock);
482 * We are now on the pending list, wake up bdi_forker_task()
483 * to finish the job and add us back to the active bdi_list
485 wake_up_process(default_backing_dev_info.wb.task);
489 * Add the default flusher task that gets created for any bdi
490 * that has dirty data pending writeout
492 void static bdi_add_default_flusher_task(struct backing_dev_info *bdi)
494 if (!bdi_cap_writeback_dirty(bdi))
495 return;
497 if (WARN_ON(!test_bit(BDI_registered, &bdi->state))) {
498 printk(KERN_ERR "bdi %p/%s is not registered!\n",
499 bdi, bdi->name);
500 return;
504 * Check with the helper whether to proceed adding a task. Will only
505 * abort if we two or more simultanous calls to
506 * bdi_add_default_flusher_task() occured, further additions will block
507 * waiting for previous additions to finish.
509 if (!test_and_set_bit(BDI_pending, &bdi->state)) {
510 list_del_rcu(&bdi->bdi_list);
513 * We must wait for the current RCU period to end before
514 * moving to the pending list. So schedule that operation
515 * from an RCU callback.
517 call_rcu(&bdi->rcu_head, bdi_add_to_pending);
522 * Remove bdi from bdi_list, and ensure that it is no longer visible
524 static void bdi_remove_from_list(struct backing_dev_info *bdi)
526 spin_lock_bh(&bdi_lock);
527 list_del_rcu(&bdi->bdi_list);
528 spin_unlock_bh(&bdi_lock);
530 synchronize_rcu();
533 int bdi_register(struct backing_dev_info *bdi, struct device *parent,
534 const char *fmt, ...)
536 va_list args;
537 int ret = 0;
538 struct device *dev;
540 if (bdi->dev) /* The driver needs to use separate queues per device */
541 goto exit;
543 va_start(args, fmt);
544 dev = device_create_vargs(bdi_class, parent, MKDEV(0, 0), bdi, fmt, args);
545 va_end(args);
546 if (IS_ERR(dev)) {
547 ret = PTR_ERR(dev);
548 goto exit;
551 spin_lock_bh(&bdi_lock);
552 list_add_tail_rcu(&bdi->bdi_list, &bdi_list);
553 spin_unlock_bh(&bdi_lock);
555 bdi->dev = dev;
558 * Just start the forker thread for our default backing_dev_info,
559 * and add other bdi's to the list. They will get a thread created
560 * on-demand when they need it.
562 if (bdi_cap_flush_forker(bdi)) {
563 struct bdi_writeback *wb = &bdi->wb;
565 wb->task = kthread_run(bdi_forker_task, wb, "bdi-%s",
566 dev_name(dev));
567 if (IS_ERR(wb->task)) {
568 wb->task = NULL;
569 ret = -ENOMEM;
571 bdi_remove_from_list(bdi);
572 goto exit;
576 bdi_debug_register(bdi, dev_name(dev));
577 set_bit(BDI_registered, &bdi->state);
578 exit:
579 return ret;
581 EXPORT_SYMBOL(bdi_register);
583 int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev)
585 return bdi_register(bdi, NULL, "%u:%u", MAJOR(dev), MINOR(dev));
587 EXPORT_SYMBOL(bdi_register_dev);
590 * Remove bdi from the global list and shutdown any threads we have running
592 static void bdi_wb_shutdown(struct backing_dev_info *bdi)
594 struct bdi_writeback *wb;
596 if (!bdi_cap_writeback_dirty(bdi))
597 return;
600 * If setup is pending, wait for that to complete first
602 wait_on_bit(&bdi->state, BDI_pending, bdi_sched_wait,
603 TASK_UNINTERRUPTIBLE);
606 * Make sure nobody finds us on the bdi_list anymore
608 bdi_remove_from_list(bdi);
611 * Finally, kill the kernel threads. We don't need to be RCU
612 * safe anymore, since the bdi is gone from visibility. Force
613 * unfreeze of the thread before calling kthread_stop(), otherwise
614 * it would never exet if it is currently stuck in the refrigerator.
616 list_for_each_entry(wb, &bdi->wb_list, list) {
617 wb->task->flags &= ~PF_FROZEN;
618 kthread_stop(wb->task);
623 * This bdi is going away now, make sure that no super_blocks point to it
625 static void bdi_prune_sb(struct backing_dev_info *bdi)
627 struct super_block *sb;
629 spin_lock(&sb_lock);
630 list_for_each_entry(sb, &super_blocks, s_list) {
631 if (sb->s_bdi == bdi)
632 sb->s_bdi = NULL;
634 spin_unlock(&sb_lock);
637 void bdi_unregister(struct backing_dev_info *bdi)
639 if (bdi->dev) {
640 bdi_prune_sb(bdi);
642 if (!bdi_cap_flush_forker(bdi))
643 bdi_wb_shutdown(bdi);
644 bdi_debug_unregister(bdi);
645 device_unregister(bdi->dev);
646 bdi->dev = NULL;
649 EXPORT_SYMBOL(bdi_unregister);
651 int bdi_init(struct backing_dev_info *bdi)
653 int i, err;
655 bdi->dev = NULL;
657 bdi->min_ratio = 0;
658 bdi->max_ratio = 100;
659 bdi->max_prop_frac = PROP_FRAC_BASE;
660 spin_lock_init(&bdi->wb_lock);
661 INIT_RCU_HEAD(&bdi->rcu_head);
662 INIT_LIST_HEAD(&bdi->bdi_list);
663 INIT_LIST_HEAD(&bdi->wb_list);
664 INIT_LIST_HEAD(&bdi->work_list);
666 bdi_wb_init(&bdi->wb, bdi);
669 * Just one thread support for now, hard code mask and count
671 bdi->wb_mask = 1;
672 bdi->wb_cnt = 1;
674 for (i = 0; i < NR_BDI_STAT_ITEMS; i++) {
675 err = percpu_counter_init(&bdi->bdi_stat[i], 0);
676 if (err)
677 goto err;
680 bdi->dirty_exceeded = 0;
681 err = prop_local_init_percpu(&bdi->completions);
683 if (err) {
684 err:
685 while (i--)
686 percpu_counter_destroy(&bdi->bdi_stat[i]);
689 return err;
691 EXPORT_SYMBOL(bdi_init);
693 void bdi_destroy(struct backing_dev_info *bdi)
695 int i;
698 * Splice our entries to the default_backing_dev_info, if this
699 * bdi disappears
701 if (bdi_has_dirty_io(bdi)) {
702 struct bdi_writeback *dst = &default_backing_dev_info.wb;
704 spin_lock(&inode_lock);
705 list_splice(&bdi->wb.b_dirty, &dst->b_dirty);
706 list_splice(&bdi->wb.b_io, &dst->b_io);
707 list_splice(&bdi->wb.b_more_io, &dst->b_more_io);
708 spin_unlock(&inode_lock);
711 bdi_unregister(bdi);
713 for (i = 0; i < NR_BDI_STAT_ITEMS; i++)
714 percpu_counter_destroy(&bdi->bdi_stat[i]);
716 prop_local_destroy_percpu(&bdi->completions);
718 EXPORT_SYMBOL(bdi_destroy);
720 static wait_queue_head_t congestion_wqh[2] = {
721 __WAIT_QUEUE_HEAD_INITIALIZER(congestion_wqh[0]),
722 __WAIT_QUEUE_HEAD_INITIALIZER(congestion_wqh[1])
725 void clear_bdi_congested(struct backing_dev_info *bdi, int sync)
727 enum bdi_state bit;
728 wait_queue_head_t *wqh = &congestion_wqh[sync];
730 bit = sync ? BDI_sync_congested : BDI_async_congested;
731 clear_bit(bit, &bdi->state);
732 smp_mb__after_clear_bit();
733 if (waitqueue_active(wqh))
734 wake_up(wqh);
736 EXPORT_SYMBOL(clear_bdi_congested);
738 void set_bdi_congested(struct backing_dev_info *bdi, int sync)
740 enum bdi_state bit;
742 bit = sync ? BDI_sync_congested : BDI_async_congested;
743 set_bit(bit, &bdi->state);
745 EXPORT_SYMBOL(set_bdi_congested);
748 * congestion_wait - wait for a backing_dev to become uncongested
749 * @sync: SYNC or ASYNC IO
750 * @timeout: timeout in jiffies
752 * Waits for up to @timeout jiffies for a backing_dev (any backing_dev) to exit
753 * write congestion. If no backing_devs are congested then just wait for the
754 * next write to be completed.
756 long congestion_wait(int sync, long timeout)
758 long ret;
759 DEFINE_WAIT(wait);
760 wait_queue_head_t *wqh = &congestion_wqh[sync];
762 prepare_to_wait(wqh, &wait, TASK_UNINTERRUPTIBLE);
763 ret = io_schedule_timeout(timeout);
764 finish_wait(wqh, &wait);
765 return ret;
767 EXPORT_SYMBOL(congestion_wait);