blob: d796f49ce87a3771ad82c14b1ee9a419759b634e [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 Szeredie4ad08f2008-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 Heo44522262015-05-22 17:13:26 -040028 * Bits in bdi_writeback.state
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 */
Tejun Heo44522262015-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 Heo93f78d82015-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 Heo93f78d82015-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 Heo44522262015-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
Artem Bityutskiyecd58402010-07-25 14:29:18 +030055 struct list_head b_dirty; /* dirty inodes */
56 struct list_head b_io; /* parked for writeback */
57 struct list_head b_more_io; /* parked for more writeback */
Theodore Ts'o0ae45f62015-02-02 00:37:00 -050058 struct list_head b_dirty_time; /* time stamps are dirty */
Christoph Hellwigf758eea2011-04-21 18:19:44 -060059 spinlock_t list_lock; /* protects the b_* lists */
Tejun Heo93f78d82015-05-22 17:13:27 -040060
61 struct percpu_counter stat[NR_WB_STAT_ITEMS];
Jens Axboed9938312009-06-12 14:45:52 +020062
Wu Fengguange98be2d52010-08-29 11:22:30 -060063 unsigned long bw_time_stamp; /* last time write bw is updated */
Wu Fengguangbe3ffa22011-06-12 10:51:31 -060064 unsigned long dirtied_stamp;
Wu Fengguange98be2d52010-08-29 11:22:30 -060065 unsigned long written_stamp; /* pages written at bw_time_stamp */
66 unsigned long write_bandwidth; /* the estimated write bandwidth */
67 unsigned long avg_write_bandwidth; /* further smoothed write bw */
68
Wu Fengguangbe3ffa22011-06-12 10:51:31 -060069 /*
70 * The base dirty throttle rate, re-calculated on every 200ms.
71 * All the bdi tasks' dirty rate will be curbed under it.
Wu Fengguang73811312011-08-26 15:53:24 -060072 * @dirty_ratelimit tracks the estimated @balanced_dirty_ratelimit
73 * in small steps and is much more smooth/stable than the latter.
Wu Fengguangbe3ffa22011-06-12 10:51:31 -060074 */
75 unsigned long dirty_ratelimit;
Wu Fengguang73811312011-08-26 15:53:24 -060076 unsigned long balanced_dirty_ratelimit;
Wu Fengguangbe3ffa22011-06-12 10:51:31 -060077
Jan Karaeb608e32012-05-24 18:59:11 +020078 struct fprop_local_percpu completions;
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -070079 int dirty_exceeded;
Tejun Heof0054bb2015-05-22 17:13:30 -040080
81 spinlock_t work_lock; /* protects work_list & dwork scheduling */
82 struct list_head work_list;
83 struct delayed_work dwork; /* work item used for writeback */
Tejun Heoa88a3412015-05-22 17:13:28 -040084};
85
86struct backing_dev_info {
87 struct list_head bdi_list;
88 unsigned long ra_pages; /* max readahead in PAGE_CACHE_SIZE units */
89 unsigned int capabilities; /* Device capabilities */
90 congested_fn *congested_fn; /* Function pointer if device is md/dm */
91 void *congested_data; /* Pointer to aux data for congested func */
92
93 char *name;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070094
Peter Zijlstra189d3c42008-04-30 00:54:35 -070095 unsigned int min_ratio;
Peter Zijlstraa42dde02008-04-30 00:54:36 -070096 unsigned int max_ratio, max_prop_frac;
Peter Zijlstra189d3c42008-04-30 00:54:35 -070097
Jens Axboe03ba3782009-09-09 09:08:54 +020098 struct bdi_writeback wb; /* default writeback info for this bdi */
Jens Axboe03ba3782009-09-09 09:08:54 +020099
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);
119void bdi_unregister(struct backing_dev_info *bdi);
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100120int __must_check bdi_setup_and_register(struct backing_dev_info *, char *);
Curt Wohlgemuth0e175a12011-10-07 21:54:10 -0600121void bdi_start_writeback(struct backing_dev_info *bdi, long nr_pages,
122 enum wb_reason reason);
Christoph Hellwigc5444192010-06-08 18:15:15 +0200123void bdi_start_background_writeback(struct backing_dev_info *bdi);
Tejun Heof0054bb2015-05-22 17:13:30 -0400124void wb_workfn(struct work_struct *work);
Jens Axboe03ba3782009-09-09 09:08:54 +0200125int bdi_has_dirty_io(struct backing_dev_info *bdi);
Tejun Heof0054bb2015-05-22 17:13:30 -0400126void wb_wakeup_delayed(struct bdi_writeback *wb);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700127
Jens Axboe03ba3782009-09-09 09:08:54 +0200128extern spinlock_t bdi_lock;
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200129extern struct list_head bdi_list;
130
Tejun Heo839a8e82013-04-01 19:08:06 -0700131extern struct workqueue_struct *bdi_wq;
132
Jens Axboe03ba3782009-09-09 09:08:54 +0200133static inline int wb_has_dirty_io(struct bdi_writeback *wb)
134{
135 return !list_empty(&wb->b_dirty) ||
136 !list_empty(&wb->b_io) ||
137 !list_empty(&wb->b_more_io);
138}
139
Tejun Heo93f78d82015-05-22 17:13:27 -0400140static inline void __add_wb_stat(struct bdi_writeback *wb,
141 enum wb_stat_item item, s64 amount)
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700142{
Tejun Heo93f78d82015-05-22 17:13:27 -0400143 __percpu_counter_add(&wb->stat[item], amount, WB_STAT_BATCH);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700144}
145
Tejun Heo93f78d82015-05-22 17:13:27 -0400146static inline void __inc_wb_stat(struct bdi_writeback *wb,
147 enum wb_stat_item item)
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700148{
Tejun Heo93f78d82015-05-22 17:13:27 -0400149 __add_wb_stat(wb, item, 1);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700150}
151
Tejun Heo93f78d82015-05-22 17:13:27 -0400152static inline void inc_wb_stat(struct bdi_writeback *wb, enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700153{
154 unsigned long flags;
155
156 local_irq_save(flags);
Tejun Heo93f78d82015-05-22 17:13:27 -0400157 __inc_wb_stat(wb, item);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700158 local_irq_restore(flags);
159}
160
Tejun Heo93f78d82015-05-22 17:13:27 -0400161static inline void __dec_wb_stat(struct bdi_writeback *wb,
162 enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700163{
Tejun Heo93f78d82015-05-22 17:13:27 -0400164 __add_wb_stat(wb, item, -1);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700165}
166
Tejun Heo93f78d82015-05-22 17:13:27 -0400167static inline void dec_wb_stat(struct bdi_writeback *wb, enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700168{
169 unsigned long flags;
170
171 local_irq_save(flags);
Tejun Heo93f78d82015-05-22 17:13:27 -0400172 __dec_wb_stat(wb, item);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700173 local_irq_restore(flags);
174}
175
Tejun Heo93f78d82015-05-22 17:13:27 -0400176static inline s64 wb_stat(struct bdi_writeback *wb, enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700177{
Tejun Heo93f78d82015-05-22 17:13:27 -0400178 return percpu_counter_read_positive(&wb->stat[item]);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700179}
180
Tejun Heo93f78d82015-05-22 17:13:27 -0400181static inline s64 __wb_stat_sum(struct bdi_writeback *wb,
182 enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700183{
Tejun Heo93f78d82015-05-22 17:13:27 -0400184 return percpu_counter_sum_positive(&wb->stat[item]);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700185}
186
Tejun Heo93f78d82015-05-22 17:13:27 -0400187static inline s64 wb_stat_sum(struct bdi_writeback *wb, enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700188{
189 s64 sum;
190 unsigned long flags;
191
192 local_irq_save(flags);
Tejun Heo93f78d82015-05-22 17:13:27 -0400193 sum = __wb_stat_sum(wb, item);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700194 local_irq_restore(flags);
195
196 return sum;
197}
198
Tejun Heo93f78d82015-05-22 17:13:27 -0400199extern void wb_writeout_inc(struct bdi_writeback *wb);
Miklos Szeredidd5656e2008-04-30 00:54:37 -0700200
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700201/*
202 * maximal error of a stat counter.
203 */
Tejun Heo93f78d82015-05-22 17:13:27 -0400204static inline unsigned long wb_stat_error(struct bdi_writeback *wb)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700205{
206#ifdef CONFIG_SMP
Tejun Heo93f78d82015-05-22 17:13:27 -0400207 return nr_cpu_ids * WB_STAT_BATCH;
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700208#else
209 return 1;
210#endif
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700211}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700213int bdi_set_min_ratio(struct backing_dev_info *bdi, unsigned int min_ratio);
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700214int bdi_set_max_ratio(struct backing_dev_info *bdi, unsigned int max_ratio);
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216/*
217 * Flags in backing_dev_info::capability
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700218 *
219 * The first three flags control whether dirty pages will contribute to the
220 * VM's accounting and whether writepages() should be called for dirty pages
221 * (something that would not, for example, be appropriate for ramfs)
222 *
223 * WARNING: these flags are closely related and should not normally be
224 * used separately. The BDI_CAP_NO_ACCT_AND_WRITEBACK combines these
225 * three flags into a single convenience macro.
226 *
227 * BDI_CAP_NO_ACCT_DIRTY: Dirty pages shouldn't contribute to accounting
228 * BDI_CAP_NO_WRITEBACK: Don't write pages back
229 * BDI_CAP_NO_ACCT_WB: Don't automatically account writeback pages
Maxim Patlasov5a537482013-09-11 14:22:46 -0700230 * BDI_CAP_STRICTLIMIT: Keep number of dirty pages below bdi threshold.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 */
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700232#define BDI_CAP_NO_ACCT_DIRTY 0x00000001
233#define BDI_CAP_NO_WRITEBACK 0x00000002
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100234#define BDI_CAP_NO_ACCT_WB 0x00000004
235#define BDI_CAP_STABLE_WRITES 0x00000008
236#define BDI_CAP_STRICTLIMIT 0x00000010
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700238#define BDI_CAP_NO_ACCT_AND_WRITEBACK \
239 (BDI_CAP_NO_WRITEBACK | BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_ACCT_WB)
240
Jörn Engel5129a462010-04-25 08:54:42 +0200241extern struct backing_dev_info noop_backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243int writeback_in_progress(struct backing_dev_info *bdi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245static inline int bdi_congested(struct backing_dev_info *bdi, int bdi_bits)
246{
247 if (bdi->congested_fn)
248 return bdi->congested_fn(bdi->congested_data, bdi_bits);
Tejun Heo44522262015-05-22 17:13:26 -0400249 return (bdi->wb.state & bdi_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
252static inline int bdi_read_congested(struct backing_dev_info *bdi)
253{
Tejun Heo44522262015-05-22 17:13:26 -0400254 return bdi_congested(bdi, 1 << WB_sync_congested);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
257static inline int bdi_write_congested(struct backing_dev_info *bdi)
258{
Tejun Heo44522262015-05-22 17:13:26 -0400259 return bdi_congested(bdi, 1 << WB_async_congested);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
262static inline int bdi_rw_congested(struct backing_dev_info *bdi)
263{
Tejun Heo44522262015-05-22 17:13:26 -0400264 return bdi_congested(bdi, (1 << WB_sync_congested) |
265 (1 << WB_async_congested));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Trond Myklebust373c0a7e2009-07-11 10:06:54 -0400268enum {
269 BLK_RW_ASYNC = 0,
270 BLK_RW_SYNC = 1,
271};
272
Jens Axboe8aa7e842009-07-09 14:52:32 +0200273void clear_bdi_congested(struct backing_dev_info *bdi, int sync);
274void set_bdi_congested(struct backing_dev_info *bdi, int sync);
275long congestion_wait(int sync, long timeout);
Mel Gorman0e093d992010-10-26 14:21:45 -0700276long wait_iff_congested(struct zone *zone, int sync, long timeout);
Wanpeng Li3965c9a2012-07-31 16:41:52 -0700277int pdflush_proc_obsolete(struct ctl_table *table, int write,
278 void __user *buffer, size_t *lenp, loff_t *ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Darrick J. Wong7d311cd2013-02-21 16:42:48 -0800280static inline bool bdi_cap_stable_pages_required(struct backing_dev_info *bdi)
281{
282 return bdi->capabilities & BDI_CAP_STABLE_WRITES;
283}
284
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700285static inline bool bdi_cap_writeback_dirty(struct backing_dev_info *bdi)
286{
287 return !(bdi->capabilities & BDI_CAP_NO_WRITEBACK);
288}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700290static inline bool bdi_cap_account_dirty(struct backing_dev_info *bdi)
291{
292 return !(bdi->capabilities & BDI_CAP_NO_ACCT_DIRTY);
293}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700295static inline bool bdi_cap_account_writeback(struct backing_dev_info *bdi)
296{
297 /* Paranoia: BDI_CAP_NO_WRITEBACK implies BDI_CAP_NO_ACCT_WB */
298 return !(bdi->capabilities & (BDI_CAP_NO_ACCT_WB |
299 BDI_CAP_NO_WRITEBACK));
300}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700302static inline bool mapping_cap_writeback_dirty(struct address_space *mapping)
303{
Christoph Hellwigde1414a2015-01-14 10:42:36 +0100304 return bdi_cap_writeback_dirty(inode_to_bdi(mapping->host));
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700305}
306
307static inline bool mapping_cap_account_dirty(struct address_space *mapping)
308{
Christoph Hellwigde1414a2015-01-14 10:42:36 +0100309 return bdi_cap_account_dirty(inode_to_bdi(mapping->host));
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700310}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Jens Axboe03ba3782009-09-09 09:08:54 +0200312static inline int bdi_sched_wait(void *word)
313{
314 schedule();
315 return 0;
316}
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318#endif /* _LINUX_BACKING_DEV_H */