blob: d5b36ed53d763ddecdc946b8c8e83313159a9e79 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/linux/backing-dev.h
3 *
4 * low-level device information and state which is propagated up through
5 * to high-level code.
6 */
7
8#ifndef _LINUX_BACKING_DEV_H
9#define _LINUX_BACKING_DEV_H
10
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070011#include <linux/percpu_counter.h>
12#include <linux/log2.h>
Jan Karaeb608e32012-05-24 18:59:11 +020013#include <linux/flex_proportions.h>
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070014#include <linux/kernel.h>
Miklos Szeredie4ad08fe2008-04-30 00:54:37 -070015#include <linux/fs.h>
Jens Axboe03ba3782009-09-09 09:08:54 +020016#include <linux/sched.h>
Matthew Garrett31373d02010-04-06 14:25:14 +020017#include <linux/timer.h>
Jens Axboe03ba3782009-09-09 09:08:54 +020018#include <linux/writeback.h>
Arun Sharma600634972011-07-26 16:09:06 -070019#include <linux/atomic.h>
Wanpeng Li3965c9a2012-07-31 16:41:52 -070020#include <linux/sysctl.h>
Tejun Heo839a8e82013-04-01 19:08:06 -070021#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Andrew Morton3fcfab12006-10-19 23:28:16 -070023struct page;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070024struct device;
Miklos Szeredi76f14182008-04-30 00:54:36 -070025struct dentry;
Andrew Morton3fcfab12006-10-19 23:28:16 -070026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027/*
Tejun Heoff3b6c52015-05-22 17:13:26 -040028 * Bits in bdi_writeback.state
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 */
Tejun Heoff3b6c52015-05-22 17:13:26 -040030enum wb_state {
31 WB_async_congested, /* The async (write) queue is getting full */
32 WB_sync_congested, /* The sync queue is getting full */
33 WB_registered, /* bdi_register() was done */
34 WB_writeback_running, /* Writeback is in progress */
Linus Torvalds1da177e2005-04-16 15:20:36 -070035};
36
37typedef int (congested_fn)(void *, int);
38
Tejun Heo9ce34202015-05-22 17:13:27 -040039enum wb_stat_item {
40 WB_RECLAIMABLE,
41 WB_WRITEBACK,
42 WB_DIRTIED,
43 WB_WRITTEN,
44 NR_WB_STAT_ITEMS
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070045};
46
Tejun Heo9ce34202015-05-22 17:13:27 -040047#define WB_STAT_BATCH (8*(1+ilog2(nr_cpu_ids)))
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070048
Jens Axboe03ba3782009-09-09 09:08:54 +020049struct bdi_writeback {
Artem Bityutskiyecd58402010-07-25 14:29:18 +030050 struct backing_dev_info *bdi; /* our parent bdi */
Jens Axboe03ba3782009-09-09 09:08:54 +020051
Tejun Heoff3b6c52015-05-22 17:13:26 -040052 unsigned long state; /* Always use atomic bitops on this */
Artem Bityutskiyecd58402010-07-25 14:29:18 +030053 unsigned long last_old_flush; /* last old data flush */
Jens Axboe03ba3782009-09-09 09:08:54 +020054
Tejun Heo839a8e82013-04-01 19:08:06 -070055 struct delayed_work dwork; /* work item used for writeback */
Artem Bityutskiyecd58402010-07-25 14:29:18 +030056 struct list_head b_dirty; /* dirty inodes */
57 struct list_head b_io; /* parked for writeback */
58 struct list_head b_more_io; /* parked for more writeback */
Theodore Ts'o0ae45f62015-02-02 00:37:00 -050059 struct list_head b_dirty_time; /* time stamps are dirty */
Christoph Hellwigf758eea2011-04-21 18:19:44 -060060 spinlock_t list_lock; /* protects the b_* lists */
Tejun Heo9ce34202015-05-22 17:13:27 -040061
62 struct percpu_counter stat[NR_WB_STAT_ITEMS];
Jens Axboe03ba3782009-09-09 09:08:54 +020063};
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065struct backing_dev_info {
Jens Axboe66f3b8e2009-09-02 09:19:46 +020066 struct list_head bdi_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 unsigned long ra_pages; /* max readahead in PAGE_CACHE_SIZE units */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 unsigned int capabilities; /* Device capabilities */
69 congested_fn *congested_fn; /* Function pointer if device is md/dm */
70 void *congested_data; /* Pointer to aux data for congested func */
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070071
Jens Axboed9938312009-06-12 14:45:52 +020072 char *name;
73
Wu Fengguange98be2d2010-08-29 11:22:30 -060074 unsigned long bw_time_stamp; /* last time write bw is updated */
Wu Fengguangbe3ffa22011-06-12 10:51:31 -060075 unsigned long dirtied_stamp;
Wu Fengguange98be2d2010-08-29 11:22:30 -060076 unsigned long written_stamp; /* pages written at bw_time_stamp */
77 unsigned long write_bandwidth; /* the estimated write bandwidth */
78 unsigned long avg_write_bandwidth; /* further smoothed write bw */
79
Wu Fengguangbe3ffa22011-06-12 10:51:31 -060080 /*
81 * The base dirty throttle rate, re-calculated on every 200ms.
82 * All the bdi tasks' dirty rate will be curbed under it.
Wu Fengguang73811312011-08-26 15:53:24 -060083 * @dirty_ratelimit tracks the estimated @balanced_dirty_ratelimit
84 * in small steps and is much more smooth/stable than the latter.
Wu Fengguangbe3ffa22011-06-12 10:51:31 -060085 */
86 unsigned long dirty_ratelimit;
Wu Fengguang73811312011-08-26 15:53:24 -060087 unsigned long balanced_dirty_ratelimit;
Wu Fengguangbe3ffa22011-06-12 10:51:31 -060088
Jan Karaeb608e32012-05-24 18:59:11 +020089 struct fprop_local_percpu completions;
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -070090 int dirty_exceeded;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070091
Peter Zijlstra189d3c42008-04-30 00:54:35 -070092 unsigned int min_ratio;
Peter Zijlstraa42dde02008-04-30 00:54:36 -070093 unsigned int max_ratio, max_prop_frac;
Peter Zijlstra189d3c42008-04-30 00:54:35 -070094
Jens Axboe03ba3782009-09-09 09:08:54 +020095 struct bdi_writeback wb; /* default writeback info for this bdi */
Jan Kara5acda9d2014-04-03 14:46:23 -070096 spinlock_t wb_lock; /* protects work_list & wb.dwork scheduling */
Miklos Szeredi76f14182008-04-30 00:54:36 -070097
Jens Axboe03ba3782009-09-09 09:08:54 +020098 struct list_head work_list;
99
100 struct device *dev;
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200101
Matthew Garrett31373d02010-04-06 14:25:14 +0200102 struct timer_list laptop_mode_wb_timer;
103
Miklos Szeredi76f14182008-04-30 00:54:36 -0700104#ifdef CONFIG_DEBUG_FS
105 struct dentry *debug_dir;
106 struct dentry *debug_stats;
107#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
Christoph Hellwigde1414a2015-01-14 10:42:36 +0100110struct backing_dev_info *inode_to_bdi(struct inode *inode);
111
Mikulas Patocka8077c0d2013-10-14 12:14:13 -0400112int __must_check bdi_init(struct backing_dev_info *bdi);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700113void bdi_destroy(struct backing_dev_info *bdi);
114
Joe Perchesd2cc4dd2012-11-29 08:37:03 -0600115__printf(3, 4)
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700116int bdi_register(struct backing_dev_info *bdi, struct device *parent,
117 const char *fmt, ...);
118int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev);
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100119int __must_check bdi_setup_and_register(struct backing_dev_info *, char *);
Curt Wohlgemuth0e175a12011-10-07 21:54:10 -0600120void bdi_start_writeback(struct backing_dev_info *bdi, long nr_pages,
121 enum wb_reason reason);
Christoph Hellwigc5444192010-06-08 18:15:15 +0200122void bdi_start_background_writeback(struct backing_dev_info *bdi);
Tejun Heo839a8e82013-04-01 19:08:06 -0700123void bdi_writeback_workfn(struct work_struct *work);
Jens Axboe03ba3782009-09-09 09:08:54 +0200124int bdi_has_dirty_io(struct backing_dev_info *bdi);
Artem Bityutskiy64677162010-07-25 14:29:22 +0300125void bdi_wakeup_thread_delayed(struct backing_dev_info *bdi);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700126
Jens Axboe03ba3782009-09-09 09:08:54 +0200127extern spinlock_t bdi_lock;
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200128extern struct list_head bdi_list;
129
Tejun Heo839a8e82013-04-01 19:08:06 -0700130extern struct workqueue_struct *bdi_wq;
131
Jens Axboe03ba3782009-09-09 09:08:54 +0200132static inline int wb_has_dirty_io(struct bdi_writeback *wb)
133{
134 return !list_empty(&wb->b_dirty) ||
135 !list_empty(&wb->b_io) ||
136 !list_empty(&wb->b_more_io);
137}
138
Tejun Heo9ce34202015-05-22 17:13:27 -0400139static inline void __add_wb_stat(struct bdi_writeback *wb,
140 enum wb_stat_item item, s64 amount)
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700141{
Tejun Heo9ce34202015-05-22 17:13:27 -0400142 __percpu_counter_add(&wb->stat[item], amount, WB_STAT_BATCH);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700143}
144
Tejun Heo9ce34202015-05-22 17:13:27 -0400145static inline void __inc_wb_stat(struct bdi_writeback *wb,
146 enum wb_stat_item item)
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700147{
Tejun Heo9ce34202015-05-22 17:13:27 -0400148 __add_wb_stat(wb, item, 1);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700149}
150
Tejun Heo9ce34202015-05-22 17:13:27 -0400151static inline void inc_wb_stat(struct bdi_writeback *wb, enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700152{
153 unsigned long flags;
154
155 local_irq_save(flags);
Tejun Heo9ce34202015-05-22 17:13:27 -0400156 __inc_wb_stat(wb, item);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700157 local_irq_restore(flags);
158}
159
Tejun Heo9ce34202015-05-22 17:13:27 -0400160static inline void __dec_wb_stat(struct bdi_writeback *wb,
161 enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700162{
Tejun Heo9ce34202015-05-22 17:13:27 -0400163 __add_wb_stat(wb, item, -1);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700164}
165
Tejun Heo9ce34202015-05-22 17:13:27 -0400166static inline void dec_wb_stat(struct bdi_writeback *wb, enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700167{
168 unsigned long flags;
169
170 local_irq_save(flags);
Tejun Heo9ce34202015-05-22 17:13:27 -0400171 __dec_wb_stat(wb, item);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700172 local_irq_restore(flags);
173}
174
Tejun Heo9ce34202015-05-22 17:13:27 -0400175static inline s64 wb_stat(struct bdi_writeback *wb, enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700176{
Tejun Heo9ce34202015-05-22 17:13:27 -0400177 return percpu_counter_read_positive(&wb->stat[item]);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700178}
179
Tejun Heo9ce34202015-05-22 17:13:27 -0400180static inline s64 __wb_stat_sum(struct bdi_writeback *wb,
181 enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700182{
Tejun Heo9ce34202015-05-22 17:13:27 -0400183 return percpu_counter_sum_positive(&wb->stat[item]);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700184}
185
Tejun Heo9ce34202015-05-22 17:13:27 -0400186static inline s64 wb_stat_sum(struct bdi_writeback *wb, enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700187{
188 s64 sum;
189 unsigned long flags;
190
191 local_irq_save(flags);
Tejun Heo9ce34202015-05-22 17:13:27 -0400192 sum = __wb_stat_sum(wb, item);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700193 local_irq_restore(flags);
194
195 return sum;
196}
197
Tejun Heo9ce34202015-05-22 17:13:27 -0400198extern void wb_writeout_inc(struct bdi_writeback *wb);
Miklos Szeredidd5656e2008-04-30 00:54:37 -0700199
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700200/*
201 * maximal error of a stat counter.
202 */
Tejun Heo9ce34202015-05-22 17:13:27 -0400203static inline unsigned long wb_stat_error(struct bdi_writeback *wb)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700204{
205#ifdef CONFIG_SMP
Tejun Heo9ce34202015-05-22 17:13:27 -0400206 return nr_cpu_ids * WB_STAT_BATCH;
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700207#else
208 return 1;
209#endif
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700210}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700212int bdi_set_min_ratio(struct backing_dev_info *bdi, unsigned int min_ratio);
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700213int bdi_set_max_ratio(struct backing_dev_info *bdi, unsigned int max_ratio);
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215/*
216 * Flags in backing_dev_info::capability
Miklos Szeredie4ad08fe2008-04-30 00:54:37 -0700217 *
218 * The first three flags control whether dirty pages will contribute to the
219 * VM's accounting and whether writepages() should be called for dirty pages
220 * (something that would not, for example, be appropriate for ramfs)
221 *
222 * WARNING: these flags are closely related and should not normally be
223 * used separately. The BDI_CAP_NO_ACCT_AND_WRITEBACK combines these
224 * three flags into a single convenience macro.
225 *
226 * BDI_CAP_NO_ACCT_DIRTY: Dirty pages shouldn't contribute to accounting
227 * BDI_CAP_NO_WRITEBACK: Don't write pages back
228 * BDI_CAP_NO_ACCT_WB: Don't automatically account writeback pages
Maxim Patlasov5a537482013-09-11 14:22:46 -0700229 * BDI_CAP_STRICTLIMIT: Keep number of dirty pages below bdi threshold.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 */
Miklos Szeredie4ad08fe2008-04-30 00:54:37 -0700231#define BDI_CAP_NO_ACCT_DIRTY 0x00000001
232#define BDI_CAP_NO_WRITEBACK 0x00000002
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100233#define BDI_CAP_NO_ACCT_WB 0x00000004
234#define BDI_CAP_STABLE_WRITES 0x00000008
235#define BDI_CAP_STRICTLIMIT 0x00000010
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Miklos Szeredie4ad08fe2008-04-30 00:54:37 -0700237#define BDI_CAP_NO_ACCT_AND_WRITEBACK \
238 (BDI_CAP_NO_WRITEBACK | BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_ACCT_WB)
239
Jörn Engel5129a462010-04-25 08:54:42 +0200240extern struct backing_dev_info noop_backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242int writeback_in_progress(struct backing_dev_info *bdi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244static inline int bdi_congested(struct backing_dev_info *bdi, int bdi_bits)
245{
246 if (bdi->congested_fn)
247 return bdi->congested_fn(bdi->congested_data, bdi_bits);
Tejun Heoff3b6c52015-05-22 17:13:26 -0400248 return (bdi->wb.state & bdi_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
251static inline int bdi_read_congested(struct backing_dev_info *bdi)
252{
Tejun Heoff3b6c52015-05-22 17:13:26 -0400253 return bdi_congested(bdi, 1 << WB_sync_congested);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
256static inline int bdi_write_congested(struct backing_dev_info *bdi)
257{
Tejun Heoff3b6c52015-05-22 17:13:26 -0400258 return bdi_congested(bdi, 1 << WB_async_congested);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
261static inline int bdi_rw_congested(struct backing_dev_info *bdi)
262{
Tejun Heoff3b6c52015-05-22 17:13:26 -0400263 return bdi_congested(bdi, (1 << WB_sync_congested) |
264 (1 << WB_async_congested));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
Trond Myklebust373c0a72009-07-11 10:06:54 -0400267enum {
268 BLK_RW_ASYNC = 0,
269 BLK_RW_SYNC = 1,
270};
271
Jens Axboe8aa7e842009-07-09 14:52:32 +0200272void clear_bdi_congested(struct backing_dev_info *bdi, int sync);
273void set_bdi_congested(struct backing_dev_info *bdi, int sync);
274long congestion_wait(int sync, long timeout);
Mel Gorman0e093d992010-10-26 14:21:45 -0700275long wait_iff_congested(struct zone *zone, int sync, long timeout);
Wanpeng Li3965c9a2012-07-31 16:41:52 -0700276int pdflush_proc_obsolete(struct ctl_table *table, int write,
277 void __user *buffer, size_t *lenp, loff_t *ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Darrick J. Wong7d311cd2013-02-21 16:42:48 -0800279static inline bool bdi_cap_stable_pages_required(struct backing_dev_info *bdi)
280{
281 return bdi->capabilities & BDI_CAP_STABLE_WRITES;
282}
283
Miklos Szeredie4ad08fe2008-04-30 00:54:37 -0700284static inline bool bdi_cap_writeback_dirty(struct backing_dev_info *bdi)
285{
286 return !(bdi->capabilities & BDI_CAP_NO_WRITEBACK);
287}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Miklos Szeredie4ad08fe2008-04-30 00:54:37 -0700289static inline bool bdi_cap_account_dirty(struct backing_dev_info *bdi)
290{
291 return !(bdi->capabilities & BDI_CAP_NO_ACCT_DIRTY);
292}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Miklos Szeredie4ad08fe2008-04-30 00:54:37 -0700294static inline bool bdi_cap_account_writeback(struct backing_dev_info *bdi)
295{
296 /* Paranoia: BDI_CAP_NO_WRITEBACK implies BDI_CAP_NO_ACCT_WB */
297 return !(bdi->capabilities & (BDI_CAP_NO_ACCT_WB |
298 BDI_CAP_NO_WRITEBACK));
299}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Miklos Szeredie4ad08fe2008-04-30 00:54:37 -0700301static inline bool mapping_cap_writeback_dirty(struct address_space *mapping)
302{
Christoph Hellwigde1414a2015-01-14 10:42:36 +0100303 return bdi_cap_writeback_dirty(inode_to_bdi(mapping->host));
Miklos Szeredie4ad08fe2008-04-30 00:54:37 -0700304}
305
306static inline bool mapping_cap_account_dirty(struct address_space *mapping)
307{
Christoph Hellwigde1414a2015-01-14 10:42:36 +0100308 return bdi_cap_account_dirty(inode_to_bdi(mapping->host));
Miklos Szeredie4ad08fe2008-04-30 00:54:37 -0700309}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Jens Axboe03ba3782009-09-09 09:08:54 +0200311static inline int bdi_sched_wait(void *word)
312{
313 schedule();
314 return 0;
315}
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317#endif /* _LINUX_BACKING_DEV_H */