diff options
author | Miklos Szeredi <mszeredi@suse.cz> | 2008-04-30 03:54:37 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-30 11:29:50 -0400 |
commit | dd5656e59ca7b25fb60a22f9079905ed0da5ed0c (patch) | |
tree | 47c156e6023e93f3028c63a2594bbb3e27e968a4 /mm | |
parent | e4ad08fe64afca4ef79ecc4c624e6e871688da0d (diff) |
mm: bdi: export bdi_writeout_inc()
Fuse needs this for writable mmap support.
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/page-writeback.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mm/page-writeback.c b/mm/page-writeback.c index bbcb916190c9..c90a1e8e479f 100644 --- a/mm/page-writeback.c +++ b/mm/page-writeback.c | |||
@@ -168,6 +168,16 @@ static inline void __bdi_writeout_inc(struct backing_dev_info *bdi) | |||
168 | bdi->max_prop_frac); | 168 | bdi->max_prop_frac); |
169 | } | 169 | } |
170 | 170 | ||
171 | void bdi_writeout_inc(struct backing_dev_info *bdi) | ||
172 | { | ||
173 | unsigned long flags; | ||
174 | |||
175 | local_irq_save(flags); | ||
176 | __bdi_writeout_inc(bdi); | ||
177 | local_irq_restore(flags); | ||
178 | } | ||
179 | EXPORT_SYMBOL_GPL(bdi_writeout_inc); | ||
180 | |||
171 | static inline void task_dirty_inc(struct task_struct *tsk) | 181 | static inline void task_dirty_inc(struct task_struct *tsk) |
172 | { | 182 | { |
173 | prop_inc_single(&vm_dirties, &tsk->dirties); | 183 | prop_inc_single(&vm_dirties, &tsk->dirties); |