2 #include <linux/wait.h>
3 #include <linux/backing-dev.h>
4 #include <linux/kthread.h>
5 #include <linux/freezer.h>
7 #include <linux/pagemap.h>
9 #include <linux/sched.h>
10 #include <linux/module.h>
11 #include <linux/writeback.h>
12 #include <linux/device.h>
14 static atomic_long_t bdi_seq
= ATOMIC_LONG_INIT(0);
16 void default_unplug_io_fn(struct backing_dev_info
*bdi
, struct page
*page
)
19 EXPORT_SYMBOL(default_unplug_io_fn
);
21 struct backing_dev_info default_backing_dev_info
= {
23 .ra_pages
= VM_MAX_READAHEAD
* 1024 / PAGE_CACHE_SIZE
,
25 .capabilities
= BDI_CAP_MAP_COPY
,
26 .unplug_io_fn
= default_unplug_io_fn
,
28 EXPORT_SYMBOL_GPL(default_backing_dev_info
);
30 struct backing_dev_info noop_backing_dev_info
= {
33 EXPORT_SYMBOL_GPL(noop_backing_dev_info
);
35 static struct class *bdi_class
;
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
42 DEFINE_SPINLOCK(bdi_lock
);
44 LIST_HEAD(bdi_pending_list
);
46 static struct task_struct
*sync_supers_tsk
;
47 static struct timer_list sync_supers_timer
;
49 static int bdi_sync_supers(void *);
50 static void sync_supers_timer_fn(unsigned long);
51 static void arm_supers_timer(void);
53 static void bdi_add_default_flusher_task(struct backing_dev_info
*bdi
);
55 #ifdef CONFIG_DEBUG_FS
56 #include <linux/debugfs.h>
57 #include <linux/seq_file.h>
59 static struct dentry
*bdi_debug_root
;
61 static void bdi_debug_init(void)
63 bdi_debug_root
= debugfs_create_dir("bdi", NULL
);
66 static int bdi_debug_stats_show(struct seq_file
*m
, void *v
)
68 struct backing_dev_info
*bdi
= m
->private;
69 struct bdi_writeback
*wb
;
70 unsigned long background_thresh
;
71 unsigned long dirty_thresh
;
72 unsigned long bdi_thresh
;
73 unsigned long nr_dirty
, nr_io
, nr_more_io
, nr_wb
;
77 * inode lock is enough here, the bdi->wb_list is protected by
78 * RCU on the reader side
80 nr_wb
= nr_dirty
= nr_io
= nr_more_io
= 0;
81 spin_lock(&inode_lock
);
82 list_for_each_entry(wb
, &bdi
->wb_list
, list
) {
84 list_for_each_entry(inode
, &wb
->b_dirty
, i_list
)
86 list_for_each_entry(inode
, &wb
->b_io
, i_list
)
88 list_for_each_entry(inode
, &wb
->b_more_io
, i_list
)
91 spin_unlock(&inode_lock
);
93 get_dirty_limits(&background_thresh
, &dirty_thresh
, &bdi_thresh
, bdi
);
95 #define K(x) ((x) << (PAGE_SHIFT - 10))
97 "BdiWriteback: %8lu kB\n"
98 "BdiReclaimable: %8lu kB\n"
99 "BdiDirtyThresh: %8lu kB\n"
100 "DirtyThresh: %8lu kB\n"
101 "BackgroundThresh: %8lu kB\n"
102 "WritebackThreads: %8lu\n"
111 (unsigned long) K(bdi_stat(bdi
, BDI_WRITEBACK
)),
112 (unsigned long) K(bdi_stat(bdi
, BDI_RECLAIMABLE
)),
113 K(bdi_thresh
), K(dirty_thresh
),
114 K(background_thresh
), nr_wb
, nr_dirty
, nr_io
, nr_more_io
,
115 !list_empty(&bdi
->bdi_list
), bdi
->state
, bdi
->wb_mask
,
116 !list_empty(&bdi
->wb_list
), bdi
->wb_cnt
);
122 static int bdi_debug_stats_open(struct inode
*inode
, struct file
*file
)
124 return single_open(file
, bdi_debug_stats_show
, inode
->i_private
);
127 static const struct file_operations bdi_debug_stats_fops
= {
128 .open
= bdi_debug_stats_open
,
131 .release
= single_release
,
134 static void bdi_debug_register(struct backing_dev_info
*bdi
, const char *name
)
136 bdi
->debug_dir
= debugfs_create_dir(name
, bdi_debug_root
);
137 bdi
->debug_stats
= debugfs_create_file("stats", 0444, bdi
->debug_dir
,
138 bdi
, &bdi_debug_stats_fops
);
141 static void bdi_debug_unregister(struct backing_dev_info
*bdi
)
143 debugfs_remove(bdi
->debug_stats
);
144 debugfs_remove(bdi
->debug_dir
);
147 static inline void bdi_debug_init(void)
150 static inline void bdi_debug_register(struct backing_dev_info
*bdi
,
154 static inline void bdi_debug_unregister(struct backing_dev_info
*bdi
)
159 static ssize_t
read_ahead_kb_store(struct device
*dev
,
160 struct device_attribute
*attr
,
161 const char *buf
, size_t count
)
163 struct backing_dev_info
*bdi
= dev_get_drvdata(dev
);
165 unsigned long read_ahead_kb
;
166 ssize_t ret
= -EINVAL
;
168 read_ahead_kb
= simple_strtoul(buf
, &end
, 10);
169 if (*buf
&& (end
[0] == '\0' || (end
[0] == '\n' && end
[1] == '\0'))) {
170 bdi
->ra_pages
= read_ahead_kb
>> (PAGE_SHIFT
- 10);
176 #define K(pages) ((pages) << (PAGE_SHIFT - 10))
178 #define BDI_SHOW(name, expr) \
179 static ssize_t name##_show(struct device *dev, \
180 struct device_attribute *attr, char *page) \
182 struct backing_dev_info *bdi = dev_get_drvdata(dev); \
184 return snprintf(page, PAGE_SIZE-1, "%lld\n", (long long)expr); \
187 BDI_SHOW(read_ahead_kb
, K(bdi
->ra_pages
))
189 static ssize_t
min_ratio_store(struct device
*dev
,
190 struct device_attribute
*attr
, const char *buf
, size_t count
)
192 struct backing_dev_info
*bdi
= dev_get_drvdata(dev
);
195 ssize_t ret
= -EINVAL
;
197 ratio
= simple_strtoul(buf
, &end
, 10);
198 if (*buf
&& (end
[0] == '\0' || (end
[0] == '\n' && end
[1] == '\0'))) {
199 ret
= bdi_set_min_ratio(bdi
, ratio
);
205 BDI_SHOW(min_ratio
, bdi
->min_ratio
)
207 static ssize_t
max_ratio_store(struct device
*dev
,
208 struct device_attribute
*attr
, const char *buf
, size_t count
)
210 struct backing_dev_info
*bdi
= dev_get_drvdata(dev
);
213 ssize_t ret
= -EINVAL
;
215 ratio
= simple_strtoul(buf
, &end
, 10);
216 if (*buf
&& (end
[0] == '\0' || (end
[0] == '\n' && end
[1] == '\0'))) {
217 ret
= bdi_set_max_ratio(bdi
, ratio
);
223 BDI_SHOW(max_ratio
, bdi
->max_ratio
)
225 #define __ATTR_RW(attr) __ATTR(attr, 0644, attr##_show, attr##_store)
227 static struct device_attribute bdi_dev_attrs
[] = {
228 __ATTR_RW(read_ahead_kb
),
229 __ATTR_RW(min_ratio
),
230 __ATTR_RW(max_ratio
),
234 static __init
int bdi_class_init(void)
236 bdi_class
= class_create(THIS_MODULE
, "bdi");
237 if (IS_ERR(bdi_class
))
238 return PTR_ERR(bdi_class
);
240 bdi_class
->dev_attrs
= bdi_dev_attrs
;
244 postcore_initcall(bdi_class_init
);
246 static int __init
default_bdi_init(void)
250 sync_supers_tsk
= kthread_run(bdi_sync_supers
, NULL
, "sync_supers");
251 BUG_ON(IS_ERR(sync_supers_tsk
));
253 init_timer(&sync_supers_timer
);
254 setup_timer(&sync_supers_timer
, sync_supers_timer_fn
, 0);
257 err
= bdi_init(&default_backing_dev_info
);
259 bdi_register(&default_backing_dev_info
, NULL
, "default");
263 subsys_initcall(default_bdi_init
);
265 static void bdi_wb_init(struct bdi_writeback
*wb
, struct backing_dev_info
*bdi
)
267 memset(wb
, 0, sizeof(*wb
));
270 wb
->last_old_flush
= jiffies
;
271 INIT_LIST_HEAD(&wb
->b_dirty
);
272 INIT_LIST_HEAD(&wb
->b_io
);
273 INIT_LIST_HEAD(&wb
->b_more_io
);
276 static void bdi_task_init(struct backing_dev_info
*bdi
,
277 struct bdi_writeback
*wb
)
279 struct task_struct
*tsk
= current
;
281 spin_lock(&bdi
->wb_lock
);
282 list_add_tail_rcu(&wb
->list
, &bdi
->wb_list
);
283 spin_unlock(&bdi
->wb_lock
);
285 tsk
->flags
|= PF_FLUSHER
| PF_SWAPWRITE
;
289 * Our parent may run at a different priority, just set us to normal
291 set_user_nice(tsk
, 0);
294 static int bdi_start_fn(void *ptr
)
296 struct bdi_writeback
*wb
= ptr
;
297 struct backing_dev_info
*bdi
= wb
->bdi
;
301 * Add us to the active bdi_list
303 spin_lock_bh(&bdi_lock
);
304 list_add_rcu(&bdi
->bdi_list
, &bdi_list
);
305 spin_unlock_bh(&bdi_lock
);
307 bdi_task_init(bdi
, wb
);
310 * Clear pending bit and wakeup anybody waiting to tear us down
312 clear_bit(BDI_pending
, &bdi
->state
);
313 smp_mb__after_clear_bit();
314 wake_up_bit(&bdi
->state
, BDI_pending
);
316 ret
= bdi_writeback_task(wb
);
319 * Remove us from the list
321 spin_lock(&bdi
->wb_lock
);
322 list_del_rcu(&wb
->list
);
323 spin_unlock(&bdi
->wb_lock
);
326 * Flush any work that raced with us exiting. No new work
327 * will be added, since this bdi isn't discoverable anymore.
329 if (!list_empty(&bdi
->work_list
))
330 wb_do_writeback(wb
, 1);
336 int bdi_has_dirty_io(struct backing_dev_info
*bdi
)
338 return wb_has_dirty_io(&bdi
->wb
);
341 static void bdi_flush_io(struct backing_dev_info
*bdi
)
343 struct writeback_control wbc
= {
345 .sync_mode
= WB_SYNC_NONE
,
346 .older_than_this
= NULL
,
351 writeback_inodes_wbc(&wbc
);
355 * kupdated() used to do this. We cannot do it from the bdi_forker_task()
356 * or we risk deadlocking on ->s_umount. The longer term solution would be
357 * to implement sync_supers_bdi() or similar and simply do it from the
358 * bdi writeback tasks individually.
360 static int bdi_sync_supers(void *unused
)
362 set_user_nice(current
, 0);
364 while (!kthread_should_stop()) {
365 set_current_state(TASK_INTERRUPTIBLE
);
369 * Do this periodically, like kupdated() did before.
377 static void arm_supers_timer(void)
381 next
= msecs_to_jiffies(dirty_writeback_interval
* 10) + jiffies
;
382 mod_timer(&sync_supers_timer
, round_jiffies_up(next
));
385 static void sync_supers_timer_fn(unsigned long unused
)
387 wake_up_process(sync_supers_tsk
);
391 static int bdi_forker_task(void *ptr
)
393 struct bdi_writeback
*me
= ptr
;
395 bdi_task_init(me
->bdi
, me
);
398 struct backing_dev_info
*bdi
, *tmp
;
399 struct bdi_writeback
*wb
;
402 * Temporary measure, we want to make sure we don't see
403 * dirty data on the default backing_dev_info
405 if (wb_has_dirty_io(me
) || !list_empty(&me
->bdi
->work_list
))
406 wb_do_writeback(me
, 0);
408 spin_lock_bh(&bdi_lock
);
411 * Check if any existing bdi's have dirty data without
412 * a thread registered. If so, set that up.
414 list_for_each_entry_safe(bdi
, tmp
, &bdi_list
, bdi_list
) {
417 if (list_empty(&bdi
->work_list
) &&
418 !bdi_has_dirty_io(bdi
))
421 bdi_add_default_flusher_task(bdi
);
424 set_current_state(TASK_INTERRUPTIBLE
);
426 if (list_empty(&bdi_pending_list
)) {
429 spin_unlock_bh(&bdi_lock
);
430 wait
= msecs_to_jiffies(dirty_writeback_interval
* 10);
431 schedule_timeout(wait
);
436 __set_current_state(TASK_RUNNING
);
439 * This is our real job - check for pending entries in
440 * bdi_pending_list, and create the tasks that got added
442 bdi
= list_entry(bdi_pending_list
.next
, struct backing_dev_info
,
444 list_del_init(&bdi
->bdi_list
);
445 spin_unlock_bh(&bdi_lock
);
448 wb
->task
= kthread_run(bdi_start_fn
, wb
, "flush-%s",
451 * If task creation fails, then readd the bdi to
452 * the pending list and force writeout of the bdi
453 * from this forker thread. That will free some memory
454 * and we can try again.
456 if (IS_ERR(wb
->task
)) {
460 * Add this 'bdi' to the back, so we get
461 * a chance to flush other bdi's to free
464 spin_lock_bh(&bdi_lock
);
465 list_add_tail(&bdi
->bdi_list
, &bdi_pending_list
);
466 spin_unlock_bh(&bdi_lock
);
475 static void bdi_add_to_pending(struct rcu_head
*head
)
477 struct backing_dev_info
*bdi
;
479 bdi
= container_of(head
, struct backing_dev_info
, rcu_head
);
480 INIT_LIST_HEAD(&bdi
->bdi_list
);
482 spin_lock(&bdi_lock
);
483 list_add_tail(&bdi
->bdi_list
, &bdi_pending_list
);
484 spin_unlock(&bdi_lock
);
487 * We are now on the pending list, wake up bdi_forker_task()
488 * to finish the job and add us back to the active bdi_list
490 wake_up_process(default_backing_dev_info
.wb
.task
);
494 * Add the default flusher task that gets created for any bdi
495 * that has dirty data pending writeout
497 void static bdi_add_default_flusher_task(struct backing_dev_info
*bdi
)
499 if (!bdi_cap_writeback_dirty(bdi
))
502 if (WARN_ON(!test_bit(BDI_registered
, &bdi
->state
))) {
503 printk(KERN_ERR
"bdi %p/%s is not registered!\n",
509 * Check with the helper whether to proceed adding a task. Will only
510 * abort if we two or more simultanous calls to
511 * bdi_add_default_flusher_task() occured, further additions will block
512 * waiting for previous additions to finish.
514 if (!test_and_set_bit(BDI_pending
, &bdi
->state
)) {
515 list_del_rcu(&bdi
->bdi_list
);
518 * We must wait for the current RCU period to end before
519 * moving to the pending list. So schedule that operation
520 * from an RCU callback.
522 call_rcu(&bdi
->rcu_head
, bdi_add_to_pending
);
527 * Remove bdi from bdi_list, and ensure that it is no longer visible
529 static void bdi_remove_from_list(struct backing_dev_info
*bdi
)
531 spin_lock_bh(&bdi_lock
);
532 list_del_rcu(&bdi
->bdi_list
);
533 spin_unlock_bh(&bdi_lock
);
538 int bdi_register(struct backing_dev_info
*bdi
, struct device
*parent
,
539 const char *fmt
, ...)
545 if (bdi
->dev
) /* The driver needs to use separate queues per device */
549 dev
= device_create_vargs(bdi_class
, parent
, MKDEV(0, 0), bdi
, fmt
, args
);
556 spin_lock_bh(&bdi_lock
);
557 list_add_tail_rcu(&bdi
->bdi_list
, &bdi_list
);
558 spin_unlock_bh(&bdi_lock
);
563 * Just start the forker thread for our default backing_dev_info,
564 * and add other bdi's to the list. They will get a thread created
565 * on-demand when they need it.
567 if (bdi_cap_flush_forker(bdi
)) {
568 struct bdi_writeback
*wb
= &bdi
->wb
;
570 wb
->task
= kthread_run(bdi_forker_task
, wb
, "bdi-%s",
572 if (IS_ERR(wb
->task
)) {
576 bdi_remove_from_list(bdi
);
581 bdi_debug_register(bdi
, dev_name(dev
));
582 set_bit(BDI_registered
, &bdi
->state
);
586 EXPORT_SYMBOL(bdi_register
);
588 int bdi_register_dev(struct backing_dev_info
*bdi
, dev_t dev
)
590 return bdi_register(bdi
, NULL
, "%u:%u", MAJOR(dev
), MINOR(dev
));
592 EXPORT_SYMBOL(bdi_register_dev
);
595 * Remove bdi from the global list and shutdown any threads we have running
597 static void bdi_wb_shutdown(struct backing_dev_info
*bdi
)
599 struct bdi_writeback
*wb
;
601 if (!bdi_cap_writeback_dirty(bdi
))
605 * If setup is pending, wait for that to complete first
607 wait_on_bit(&bdi
->state
, BDI_pending
, bdi_sched_wait
,
608 TASK_UNINTERRUPTIBLE
);
611 * Make sure nobody finds us on the bdi_list anymore
613 bdi_remove_from_list(bdi
);
616 * Finally, kill the kernel threads. We don't need to be RCU
617 * safe anymore, since the bdi is gone from visibility. Force
618 * unfreeze of the thread before calling kthread_stop(), otherwise
619 * it would never exet if it is currently stuck in the refrigerator.
621 list_for_each_entry(wb
, &bdi
->wb_list
, list
) {
622 thaw_process(wb
->task
);
623 kthread_stop(wb
->task
);
628 * This bdi is going away now, make sure that no super_blocks point to it
630 static void bdi_prune_sb(struct backing_dev_info
*bdi
)
632 struct super_block
*sb
;
635 list_for_each_entry(sb
, &super_blocks
, s_list
) {
636 if (sb
->s_bdi
== bdi
)
639 spin_unlock(&sb_lock
);
642 void bdi_unregister(struct backing_dev_info
*bdi
)
647 if (!bdi_cap_flush_forker(bdi
))
648 bdi_wb_shutdown(bdi
);
649 bdi_debug_unregister(bdi
);
650 device_unregister(bdi
->dev
);
654 EXPORT_SYMBOL(bdi_unregister
);
656 int bdi_init(struct backing_dev_info
*bdi
)
663 bdi
->max_ratio
= 100;
664 bdi
->max_prop_frac
= PROP_FRAC_BASE
;
665 spin_lock_init(&bdi
->wb_lock
);
666 INIT_RCU_HEAD(&bdi
->rcu_head
);
667 INIT_LIST_HEAD(&bdi
->bdi_list
);
668 INIT_LIST_HEAD(&bdi
->wb_list
);
669 INIT_LIST_HEAD(&bdi
->work_list
);
671 bdi_wb_init(&bdi
->wb
, bdi
);
674 * Just one thread support for now, hard code mask and count
679 for (i
= 0; i
< NR_BDI_STAT_ITEMS
; i
++) {
680 err
= percpu_counter_init(&bdi
->bdi_stat
[i
], 0);
685 bdi
->dirty_exceeded
= 0;
686 err
= prop_local_init_percpu(&bdi
->completions
);
691 percpu_counter_destroy(&bdi
->bdi_stat
[i
]);
696 EXPORT_SYMBOL(bdi_init
);
698 void bdi_destroy(struct backing_dev_info
*bdi
)
703 * Splice our entries to the default_backing_dev_info, if this
706 if (bdi_has_dirty_io(bdi
)) {
707 struct bdi_writeback
*dst
= &default_backing_dev_info
.wb
;
709 spin_lock(&inode_lock
);
710 list_splice(&bdi
->wb
.b_dirty
, &dst
->b_dirty
);
711 list_splice(&bdi
->wb
.b_io
, &dst
->b_io
);
712 list_splice(&bdi
->wb
.b_more_io
, &dst
->b_more_io
);
713 spin_unlock(&inode_lock
);
718 for (i
= 0; i
< NR_BDI_STAT_ITEMS
; i
++)
719 percpu_counter_destroy(&bdi
->bdi_stat
[i
]);
721 prop_local_destroy_percpu(&bdi
->completions
);
723 EXPORT_SYMBOL(bdi_destroy
);
726 * For use from filesystems to quickly init and register a bdi associated
727 * with dirty writeback
729 int bdi_setup_and_register(struct backing_dev_info
*bdi
, char *name
,
736 bdi
->capabilities
= cap
;
741 sprintf(tmp
, "%.28s%s", name
, "-%d");
742 err
= bdi_register(bdi
, NULL
, tmp
, atomic_long_inc_return(&bdi_seq
));
750 EXPORT_SYMBOL(bdi_setup_and_register
);
752 static wait_queue_head_t congestion_wqh
[2] = {
753 __WAIT_QUEUE_HEAD_INITIALIZER(congestion_wqh
[0]),
754 __WAIT_QUEUE_HEAD_INITIALIZER(congestion_wqh
[1])
757 void clear_bdi_congested(struct backing_dev_info
*bdi
, int sync
)
760 wait_queue_head_t
*wqh
= &congestion_wqh
[sync
];
762 bit
= sync
? BDI_sync_congested
: BDI_async_congested
;
763 clear_bit(bit
, &bdi
->state
);
764 smp_mb__after_clear_bit();
765 if (waitqueue_active(wqh
))
768 EXPORT_SYMBOL(clear_bdi_congested
);
770 void set_bdi_congested(struct backing_dev_info
*bdi
, int sync
)
774 bit
= sync
? BDI_sync_congested
: BDI_async_congested
;
775 set_bit(bit
, &bdi
->state
);
777 EXPORT_SYMBOL(set_bdi_congested
);
780 * congestion_wait - wait for a backing_dev to become uncongested
781 * @sync: SYNC or ASYNC IO
782 * @timeout: timeout in jiffies
784 * Waits for up to @timeout jiffies for a backing_dev (any backing_dev) to exit
785 * write congestion. If no backing_devs are congested then just wait for the
786 * next write to be completed.
788 long congestion_wait(int sync
, long timeout
)
792 wait_queue_head_t
*wqh
= &congestion_wqh
[sync
];
794 prepare_to_wait(wqh
, &wait
, TASK_UNINTERRUPTIBLE
);
795 ret
= io_schedule_timeout(timeout
);
796 finish_wait(wqh
, &wait
);
799 EXPORT_SYMBOL(congestion_wait
);