blob: eca555f658d94908376222c6be9f4bc7963b0776 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Andrew Morton3fcfab12006-10-19 23:28:16 -07002
3#include <linux/wait.h>
Tejun Heo34f8fe52019-08-26 09:06:53 -07004#include <linux/rbtree.h>
Andrew Morton3fcfab12006-10-19 23:28:16 -07005#include <linux/backing-dev.h>
Jens Axboe03ba3782009-09-09 09:08:54 +02006#include <linux/kthread.h>
7#include <linux/freezer.h>
Andrew Morton3fcfab12006-10-19 23:28:16 -07008#include <linux/fs.h>
Jens Axboe26160152009-03-17 09:35:06 +01009#include <linux/pagemap.h>
Jens Axboe03ba3782009-09-09 09:08:54 +020010#include <linux/mm.h>
Andrew Morton3fcfab12006-10-19 23:28:16 -070011#include <linux/sched.h>
12#include <linux/module.h>
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070013#include <linux/writeback.h>
14#include <linux/device.h>
Dave Chinner455b2862010-07-07 13:24:06 +100015#include <trace/events/writeback.h>
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070016
Christoph Hellwigf56753a2020-09-24 08:51:40 +020017struct backing_dev_info noop_backing_dev_info;
Tejun Heoa212b102015-05-22 17:13:33 -040018EXPORT_SYMBOL_GPL(noop_backing_dev_info);
Jörn Engel5129a462010-04-25 08:54:42 +020019
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070020static struct class *bdi_class;
Christoph Hellwigeb7ae5e2020-05-04 14:47:54 +020021static const char *bdi_unknown_name = "(unknown)";
Jens Axboecfc4ba52009-09-14 13:12:40 +020022
23/*
Tejun Heo34f8fe52019-08-26 09:06:53 -070024 * bdi_lock protects bdi_tree and updates to bdi_list. bdi_list has RCU
25 * reader side locking.
Jens Axboecfc4ba52009-09-14 13:12:40 +020026 */
Jens Axboe03ba3782009-09-09 09:08:54 +020027DEFINE_SPINLOCK(bdi_lock);
Tejun Heo34f8fe52019-08-26 09:06:53 -070028static u64 bdi_id_cursor;
29static struct rb_root bdi_tree = RB_ROOT;
Jens Axboe66f3b8e2009-09-02 09:19:46 +020030LIST_HEAD(bdi_list);
Jens Axboe03ba3782009-09-09 09:08:54 +020031
Tejun Heo839a8e82013-04-01 19:08:06 -070032/* bdi_wq serves all asynchronous writeback tasks */
33struct workqueue_struct *bdi_wq;
34
Baolin Wang6986c3e2021-02-24 12:02:52 -080035#define K(x) ((x) << (PAGE_SHIFT - 10))
36
Miklos Szeredi76f14182008-04-30 00:54:36 -070037#ifdef CONFIG_DEBUG_FS
38#include <linux/debugfs.h>
39#include <linux/seq_file.h>
40
41static struct dentry *bdi_debug_root;
42
43static void bdi_debug_init(void)
44{
45 bdi_debug_root = debugfs_create_dir("bdi", NULL);
46}
47
48static int bdi_debug_stats_show(struct seq_file *m, void *v)
49{
50 struct backing_dev_info *bdi = m->private;
Christoph Hellwigc1955ce2010-06-19 23:08:06 +020051 struct bdi_writeback *wb = &bdi->wb;
David Rientjes364aeb22009-01-06 14:39:29 -080052 unsigned long background_thresh;
53 unsigned long dirty_thresh;
Tejun Heo0d960a32015-05-22 18:23:19 -040054 unsigned long wb_thresh;
Theodore Ts'o0ae45f62015-02-02 00:37:00 -050055 unsigned long nr_dirty, nr_io, nr_more_io, nr_dirty_time;
Jens Axboef09b00d2009-05-25 09:08:21 +020056 struct inode *inode;
57
Theodore Ts'o0ae45f62015-02-02 00:37:00 -050058 nr_dirty = nr_io = nr_more_io = nr_dirty_time = 0;
Christoph Hellwigf758eea2011-04-21 18:19:44 -060059 spin_lock(&wb->list_lock);
Dave Chinnerc7f54082015-03-04 14:07:22 -050060 list_for_each_entry(inode, &wb->b_dirty, i_io_list)
Christoph Hellwigc1955ce2010-06-19 23:08:06 +020061 nr_dirty++;
Dave Chinnerc7f54082015-03-04 14:07:22 -050062 list_for_each_entry(inode, &wb->b_io, i_io_list)
Christoph Hellwigc1955ce2010-06-19 23:08:06 +020063 nr_io++;
Dave Chinnerc7f54082015-03-04 14:07:22 -050064 list_for_each_entry(inode, &wb->b_more_io, i_io_list)
Christoph Hellwigc1955ce2010-06-19 23:08:06 +020065 nr_more_io++;
Dave Chinnerc7f54082015-03-04 14:07:22 -050066 list_for_each_entry(inode, &wb->b_dirty_time, i_io_list)
Theodore Ts'o0ae45f62015-02-02 00:37:00 -050067 if (inode->i_state & I_DIRTY_TIME)
68 nr_dirty_time++;
Christoph Hellwigf758eea2011-04-21 18:19:44 -060069 spin_unlock(&wb->list_lock);
Miklos Szeredi76f14182008-04-30 00:54:36 -070070
Wu Fengguang16c40422010-08-11 14:17:39 -070071 global_dirty_limits(&background_thresh, &dirty_thresh);
Tejun Heo0d960a32015-05-22 18:23:19 -040072 wb_thresh = wb_calc_thresh(wb, dirty_thresh);
Miklos Szeredi76f14182008-04-30 00:54:36 -070073
Miklos Szeredi76f14182008-04-30 00:54:36 -070074 seq_printf(m,
Wu Fengguang00821b02010-08-29 11:28:45 -060075 "BdiWriteback: %10lu kB\n"
76 "BdiReclaimable: %10lu kB\n"
77 "BdiDirtyThresh: %10lu kB\n"
78 "DirtyThresh: %10lu kB\n"
79 "BackgroundThresh: %10lu kB\n"
Wu Fengguangc8e28ce2011-01-23 10:07:47 -060080 "BdiDirtied: %10lu kB\n"
Wu Fengguang00821b02010-08-29 11:28:45 -060081 "BdiWritten: %10lu kB\n"
82 "BdiWriteBandwidth: %10lu kBps\n"
83 "b_dirty: %10lu\n"
84 "b_io: %10lu\n"
85 "b_more_io: %10lu\n"
Theodore Ts'o0ae45f62015-02-02 00:37:00 -050086 "b_dirty_time: %10lu\n"
Wu Fengguang00821b02010-08-29 11:28:45 -060087 "bdi_list: %10u\n"
88 "state: %10lx\n",
Tejun Heo93f78d82015-05-22 17:13:27 -040089 (unsigned long) K(wb_stat(wb, WB_WRITEBACK)),
90 (unsigned long) K(wb_stat(wb, WB_RECLAIMABLE)),
Tejun Heo0d960a32015-05-22 18:23:19 -040091 K(wb_thresh),
Jan Karaf7d2b1e2010-12-08 22:44:24 -060092 K(dirty_thresh),
93 K(background_thresh),
Tejun Heo93f78d82015-05-22 17:13:27 -040094 (unsigned long) K(wb_stat(wb, WB_DIRTIED)),
95 (unsigned long) K(wb_stat(wb, WB_WRITTEN)),
Tejun Heoa88a3412015-05-22 17:13:28 -040096 (unsigned long) K(wb->write_bandwidth),
Jan Karaf7d2b1e2010-12-08 22:44:24 -060097 nr_dirty,
98 nr_io,
99 nr_more_io,
Theodore Ts'o0ae45f62015-02-02 00:37:00 -0500100 nr_dirty_time,
Tejun Heo44522262015-05-22 17:13:26 -0400101 !list_empty(&bdi->bdi_list), bdi->wb.state);
Miklos Szeredi76f14182008-04-30 00:54:36 -0700102
103 return 0;
104}
Andy Shevchenko5ad35092018-04-05 16:23:16 -0700105DEFINE_SHOW_ATTRIBUTE(bdi_debug_stats);
Miklos Szeredi76f14182008-04-30 00:54:36 -0700106
Greg Kroah-Hartman2d146b92019-01-22 16:21:07 +0100107static void bdi_debug_register(struct backing_dev_info *bdi, const char *name)
Miklos Szeredi76f14182008-04-30 00:54:36 -0700108{
109 bdi->debug_dir = debugfs_create_dir(name, bdi_debug_root);
weiping zhang97f07692017-10-31 18:37:54 +0800110
Greg Kroah-Hartman2d146b92019-01-22 16:21:07 +0100111 debugfs_create_file("stats", 0444, bdi->debug_dir, bdi,
112 &bdi_debug_stats_fops);
Miklos Szeredi76f14182008-04-30 00:54:36 -0700113}
114
115static void bdi_debug_unregister(struct backing_dev_info *bdi)
116{
Greg Kroah-Hartman2d146b92019-01-22 16:21:07 +0100117 debugfs_remove_recursive(bdi->debug_dir);
Miklos Szeredi76f14182008-04-30 00:54:36 -0700118}
119#else
120static inline void bdi_debug_init(void)
121{
122}
Greg Kroah-Hartman2d146b92019-01-22 16:21:07 +0100123static inline void bdi_debug_register(struct backing_dev_info *bdi,
Miklos Szeredi76f14182008-04-30 00:54:36 -0700124 const char *name)
125{
126}
127static inline void bdi_debug_unregister(struct backing_dev_info *bdi)
128{
129}
130#endif
131
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700132static ssize_t read_ahead_kb_store(struct device *dev,
133 struct device_attribute *attr,
134 const char *buf, size_t count)
135{
136 struct backing_dev_info *bdi = dev_get_drvdata(dev);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700137 unsigned long read_ahead_kb;
Namjae Jeon7034ed12012-08-25 16:57:27 +0800138 ssize_t ret;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700139
Namjae Jeon7034ed12012-08-25 16:57:27 +0800140 ret = kstrtoul(buf, 10, &read_ahead_kb);
141 if (ret < 0)
142 return ret;
143
144 bdi->ra_pages = read_ahead_kb >> (PAGE_SHIFT - 10);
145
146 return count;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700147}
148
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700149#define BDI_SHOW(name, expr) \
150static ssize_t name##_show(struct device *dev, \
Joe Perches5e4c0d82020-12-14 19:14:50 -0800151 struct device_attribute *attr, char *buf) \
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700152{ \
153 struct backing_dev_info *bdi = dev_get_drvdata(dev); \
154 \
Joe Perches5e4c0d82020-12-14 19:14:50 -0800155 return sysfs_emit(buf, "%lld\n", (long long)expr); \
Greg Kroah-Hartmand9e12412013-07-24 15:05:26 -0700156} \
157static DEVICE_ATTR_RW(name);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700158
159BDI_SHOW(read_ahead_kb, K(bdi->ra_pages))
160
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700161static ssize_t min_ratio_store(struct device *dev,
162 struct device_attribute *attr, const char *buf, size_t count)
163{
164 struct backing_dev_info *bdi = dev_get_drvdata(dev);
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700165 unsigned int ratio;
Namjae Jeon7034ed12012-08-25 16:57:27 +0800166 ssize_t ret;
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700167
Namjae Jeon7034ed12012-08-25 16:57:27 +0800168 ret = kstrtouint(buf, 10, &ratio);
169 if (ret < 0)
170 return ret;
171
172 ret = bdi_set_min_ratio(bdi, ratio);
173 if (!ret)
174 ret = count;
175
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700176 return ret;
177}
178BDI_SHOW(min_ratio, bdi->min_ratio)
179
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700180static ssize_t max_ratio_store(struct device *dev,
181 struct device_attribute *attr, const char *buf, size_t count)
182{
183 struct backing_dev_info *bdi = dev_get_drvdata(dev);
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700184 unsigned int ratio;
Namjae Jeon7034ed12012-08-25 16:57:27 +0800185 ssize_t ret;
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700186
Namjae Jeon7034ed12012-08-25 16:57:27 +0800187 ret = kstrtouint(buf, 10, &ratio);
188 if (ret < 0)
189 return ret;
190
191 ret = bdi_set_max_ratio(bdi, ratio);
192 if (!ret)
193 ret = count;
194
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700195 return ret;
196}
197BDI_SHOW(max_ratio, bdi->max_ratio)
198
Darrick J. Wong7d311cd2013-02-21 16:42:48 -0800199static ssize_t stable_pages_required_show(struct device *dev,
200 struct device_attribute *attr,
Joe Perches5e4c0d82020-12-14 19:14:50 -0800201 char *buf)
Darrick J. Wong7d311cd2013-02-21 16:42:48 -0800202{
Christoph Hellwig1cb039f2020-09-24 08:51:38 +0200203 dev_warn_once(dev,
204 "the stable_pages_required attribute has been removed. Use the stable_writes queue attribute instead.\n");
Joe Perches5e4c0d82020-12-14 19:14:50 -0800205 return sysfs_emit(buf, "%d\n", 0);
Darrick J. Wong7d311cd2013-02-21 16:42:48 -0800206}
Greg Kroah-Hartmand9e12412013-07-24 15:05:26 -0700207static DEVICE_ATTR_RO(stable_pages_required);
Darrick J. Wong7d311cd2013-02-21 16:42:48 -0800208
Greg Kroah-Hartmand9e12412013-07-24 15:05:26 -0700209static struct attribute *bdi_dev_attrs[] = {
210 &dev_attr_read_ahead_kb.attr,
211 &dev_attr_min_ratio.attr,
212 &dev_attr_max_ratio.attr,
213 &dev_attr_stable_pages_required.attr,
214 NULL,
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700215};
Greg Kroah-Hartmand9e12412013-07-24 15:05:26 -0700216ATTRIBUTE_GROUPS(bdi_dev);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700217
218static __init int bdi_class_init(void)
219{
220 bdi_class = class_create(THIS_MODULE, "bdi");
Anton Blanchard14421452010-04-02 09:46:55 +0200221 if (IS_ERR(bdi_class))
222 return PTR_ERR(bdi_class);
223
Greg Kroah-Hartmand9e12412013-07-24 15:05:26 -0700224 bdi_class->dev_groups = bdi_dev_groups;
Miklos Szeredi76f14182008-04-30 00:54:36 -0700225 bdi_debug_init();
Jan Karad03f6cd2017-02-02 15:56:51 +0100226
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700227 return 0;
228}
Miklos Szeredi76f14182008-04-30 00:54:36 -0700229postcore_initcall(bdi_class_init);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700230
Jan Kara2e82b842017-04-12 12:24:48 +0200231static int bdi_init(struct backing_dev_info *bdi);
232
Jens Axboe26160152009-03-17 09:35:06 +0100233static int __init default_bdi_init(void)
234{
235 int err;
236
Mika Westerberga2b90f12019-10-04 13:00:24 +0300237 bdi_wq = alloc_workqueue("writeback", WQ_MEM_RECLAIM | WQ_UNBOUND |
238 WQ_SYSFS, 0);
Tejun Heo839a8e82013-04-01 19:08:06 -0700239 if (!bdi_wq)
240 return -ENOMEM;
241
Jan Kara976e48f2010-09-21 11:48:55 +0200242 err = bdi_init(&noop_backing_dev_info);
Jens Axboe26160152009-03-17 09:35:06 +0100243
244 return err;
245}
246subsys_initcall(default_bdi_init);
247
Artem Bityutskiy64677162010-07-25 14:29:22 +0300248/*
Tejun Heof0054bb2015-05-22 17:13:30 -0400249 * This function is used when the first inode for this wb is marked dirty. It
Artem Bityutskiy64677162010-07-25 14:29:22 +0300250 * wakes-up the corresponding bdi thread which should then take care of the
251 * periodic background write-out of dirty inodes. Since the write-out would
252 * starts only 'dirty_writeback_interval' centisecs from now anyway, we just
253 * set up a timer which wakes the bdi thread up later.
254 *
255 * Note, we wouldn't bother setting up the timer, but this function is on the
256 * fast-path (used by '__mark_inode_dirty()'), so we save few context switches
257 * by delaying the wake-up.
Derek Basehore6ca738d2014-04-03 14:46:22 -0700258 *
259 * We have to be careful not to postpone flush work if it is scheduled for
260 * earlier. Thus we use queue_delayed_work().
Artem Bityutskiy64677162010-07-25 14:29:22 +0300261 */
Tejun Heof0054bb2015-05-22 17:13:30 -0400262void wb_wakeup_delayed(struct bdi_writeback *wb)
Artem Bityutskiy64677162010-07-25 14:29:22 +0300263{
264 unsigned long timeout;
265
266 timeout = msecs_to_jiffies(dirty_writeback_interval * 10);
Tejun Heof0054bb2015-05-22 17:13:30 -0400267 spin_lock_bh(&wb->work_lock);
268 if (test_bit(WB_registered, &wb->state))
269 queue_delayed_work(bdi_wq, &wb->dwork, timeout);
270 spin_unlock_bh(&wb->work_lock);
Jens Axboe03ba3782009-09-09 09:08:54 +0200271}
272
Jens Axboecfc4ba52009-09-14 13:12:40 +0200273/*
Tejun Heoa88a3412015-05-22 17:13:28 -0400274 * Initial write bandwidth: 100 MB/s
Jens Axboecfc4ba52009-09-14 13:12:40 +0200275 */
Tejun Heoa88a3412015-05-22 17:13:28 -0400276#define INIT_BW (100 << (20 - PAGE_SHIFT))
Jens Axboecfc4ba52009-09-14 13:12:40 +0200277
Tejun Heo8395cd92015-05-22 17:13:34 -0400278static int wb_init(struct bdi_writeback *wb, struct backing_dev_info *bdi,
Christoph Hellwig8c911f32020-07-01 11:06:21 +0200279 gfp_t gfp)
Artem Bityutskiy64677162010-07-25 14:29:22 +0300280{
Tejun Heo93f78d82015-05-22 17:13:27 -0400281 int i, err;
282
Artem Bityutskiy64677162010-07-25 14:29:22 +0300283 memset(wb, 0, sizeof(*wb));
284
Jan Kara810df542017-03-23 01:36:55 +0100285 if (wb != &bdi->wb)
286 bdi_get(bdi);
Artem Bityutskiy64677162010-07-25 14:29:22 +0300287 wb->bdi = bdi;
288 wb->last_old_flush = jiffies;
289 INIT_LIST_HEAD(&wb->b_dirty);
290 INIT_LIST_HEAD(&wb->b_io);
291 INIT_LIST_HEAD(&wb->b_more_io);
Theodore Ts'o0ae45f62015-02-02 00:37:00 -0500292 INIT_LIST_HEAD(&wb->b_dirty_time);
Christoph Hellwigf758eea2011-04-21 18:19:44 -0600293 spin_lock_init(&wb->list_lock);
Tejun Heo93f78d82015-05-22 17:13:27 -0400294
Tejun Heoa88a3412015-05-22 17:13:28 -0400295 wb->bw_time_stamp = jiffies;
296 wb->balanced_dirty_ratelimit = INIT_BW;
297 wb->dirty_ratelimit = INIT_BW;
298 wb->write_bandwidth = INIT_BW;
299 wb->avg_write_bandwidth = INIT_BW;
300
Tejun Heof0054bb2015-05-22 17:13:30 -0400301 spin_lock_init(&wb->work_lock);
302 INIT_LIST_HEAD(&wb->work_list);
303 INIT_DELAYED_WORK(&wb->dwork, wb_workfn);
Jens Axboeb57d74a2016-09-01 10:20:33 -0600304 wb->dirty_sleep = jiffies;
Tejun Heof0054bb2015-05-22 17:13:30 -0400305
Tejun Heo8395cd92015-05-22 17:13:34 -0400306 err = fprop_local_init_percpu(&wb->completions, gfp);
Tejun Heoa88a3412015-05-22 17:13:28 -0400307 if (err)
Christoph Hellwig8c911f32020-07-01 11:06:21 +0200308 goto out_put_bdi;
Tejun Heoa88a3412015-05-22 17:13:28 -0400309
Tejun Heo93f78d82015-05-22 17:13:27 -0400310 for (i = 0; i < NR_WB_STAT_ITEMS; i++) {
Tejun Heo8395cd92015-05-22 17:13:34 -0400311 err = percpu_counter_init(&wb->stat[i], 0, gfp);
Tejun Heoa13f35e2015-07-02 08:44:34 -0600312 if (err)
313 goto out_destroy_stat;
Tejun Heo93f78d82015-05-22 17:13:27 -0400314 }
315
316 return 0;
Tejun Heoa13f35e2015-07-02 08:44:34 -0600317
318out_destroy_stat:
Rasmus Villemoes078c6c32016-02-11 16:13:06 -0800319 while (i--)
Tejun Heoa13f35e2015-07-02 08:44:34 -0600320 percpu_counter_destroy(&wb->stat[i]);
321 fprop_local_destroy_percpu(&wb->completions);
Jan Kara810df542017-03-23 01:36:55 +0100322out_put_bdi:
323 if (wb != &bdi->wb)
324 bdi_put(bdi);
Tejun Heoa13f35e2015-07-02 08:44:34 -0600325 return err;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700326}
Jens Axboe03ba3782009-09-09 09:08:54 +0200327
Jan Karae8cb72b2017-03-23 01:36:56 +0100328static void cgwb_remove_from_bdi_list(struct bdi_writeback *wb);
329
Tejun Heo46100072015-05-22 17:13:31 -0400330/*
331 * Remove bdi from the global list and shutdown any threads we have running
332 */
333static void wb_shutdown(struct bdi_writeback *wb)
334{
335 /* Make sure nobody queues further work */
336 spin_lock_bh(&wb->work_lock);
337 if (!test_and_clear_bit(WB_registered, &wb->state)) {
338 spin_unlock_bh(&wb->work_lock);
339 return;
340 }
341 spin_unlock_bh(&wb->work_lock);
342
Jan Karae8cb72b2017-03-23 01:36:56 +0100343 cgwb_remove_from_bdi_list(wb);
Tejun Heo46100072015-05-22 17:13:31 -0400344 /*
345 * Drain work list and shutdown the delayed_work. !WB_registered
346 * tells wb_workfn() that @wb is dying and its work_list needs to
347 * be drained no matter what.
348 */
349 mod_delayed_work(bdi_wq, &wb->dwork, 0);
350 flush_delayed_work(&wb->dwork);
351 WARN_ON(!list_empty(&wb->work_list));
352}
353
Tejun Heof0054bb2015-05-22 17:13:30 -0400354static void wb_exit(struct bdi_writeback *wb)
Tejun Heo93f78d82015-05-22 17:13:27 -0400355{
356 int i;
357
358 WARN_ON(delayed_work_pending(&wb->dwork));
359
360 for (i = 0; i < NR_WB_STAT_ITEMS; i++)
361 percpu_counter_destroy(&wb->stat[i]);
Artem Bityutskiy64677162010-07-25 14:29:22 +0300362
Tejun Heoa88a3412015-05-22 17:13:28 -0400363 fprop_local_destroy_percpu(&wb->completions);
Jan Kara810df542017-03-23 01:36:55 +0100364 if (wb != &wb->bdi->wb)
365 bdi_put(wb->bdi);
Tejun Heoa88a3412015-05-22 17:13:28 -0400366}
Wu Fengguange98be2d2010-08-29 11:22:30 -0600367
Tejun Heo52ebea72015-05-22 17:13:37 -0400368#ifdef CONFIG_CGROUP_WRITEBACK
369
370#include <linux/memcontrol.h>
371
372/*
Christoph Hellwig8c911f32020-07-01 11:06:21 +0200373 * cgwb_lock protects bdi->cgwb_tree, blkcg->cgwb_list, and memcg->cgwb_list.
374 * bdi->cgwb_tree is also RCU protected.
Tejun Heo52ebea72015-05-22 17:13:37 -0400375 */
376static DEFINE_SPINLOCK(cgwb_lock);
Tejun Heof1834642018-05-23 10:56:32 -0700377static struct workqueue_struct *cgwb_release_wq;
Tejun Heo52ebea72015-05-22 17:13:37 -0400378
Tejun Heo52ebea72015-05-22 17:13:37 -0400379static void cgwb_release_workfn(struct work_struct *work)
380{
381 struct bdi_writeback *wb = container_of(work, struct bdi_writeback,
382 release_work);
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -0400383 struct blkcg *blkcg = css_to_blkcg(wb->blkcg_css);
Tejun Heo52ebea72015-05-22 17:13:37 -0400384
Jan Kara3ee7e862018-06-18 15:46:58 +0200385 mutex_lock(&wb->bdi->cgwb_release_mutex);
Tejun Heo52ebea72015-05-22 17:13:37 -0400386 wb_shutdown(wb);
387
388 css_put(wb->memcg_css);
389 css_put(wb->blkcg_css);
Jan Kara3ee7e862018-06-18 15:46:58 +0200390 mutex_unlock(&wb->bdi->cgwb_release_mutex);
Tejun Heo52ebea72015-05-22 17:13:37 -0400391
Tejun Heod866dbf2019-07-24 10:37:22 -0700392 /* triggers blkg destruction if no online users left */
393 blkcg_unpin_online(blkcg);
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -0400394
Tejun Heo841710a2015-05-22 18:23:33 -0400395 fprop_local_destroy_percpu(&wb->memcg_completions);
Tejun Heo52ebea72015-05-22 17:13:37 -0400396 percpu_ref_exit(&wb->refcnt);
397 wb_exit(wb);
398 kfree_rcu(wb, rcu);
Tejun Heo52ebea72015-05-22 17:13:37 -0400399}
400
401static void cgwb_release(struct percpu_ref *refcnt)
402{
403 struct bdi_writeback *wb = container_of(refcnt, struct bdi_writeback,
404 refcnt);
Tejun Heof1834642018-05-23 10:56:32 -0700405 queue_work(cgwb_release_wq, &wb->release_work);
Tejun Heo52ebea72015-05-22 17:13:37 -0400406}
407
408static void cgwb_kill(struct bdi_writeback *wb)
409{
410 lockdep_assert_held(&cgwb_lock);
411
412 WARN_ON(!radix_tree_delete(&wb->bdi->cgwb_tree, wb->memcg_css->id));
413 list_del(&wb->memcg_node);
414 list_del(&wb->blkcg_node);
415 percpu_ref_kill(&wb->refcnt);
416}
417
Jan Karae8cb72b2017-03-23 01:36:56 +0100418static void cgwb_remove_from_bdi_list(struct bdi_writeback *wb)
419{
420 spin_lock_irq(&cgwb_lock);
421 list_del_rcu(&wb->bdi_node);
422 spin_unlock_irq(&cgwb_lock);
423}
424
Tejun Heo52ebea72015-05-22 17:13:37 -0400425static int cgwb_create(struct backing_dev_info *bdi,
426 struct cgroup_subsys_state *memcg_css, gfp_t gfp)
427{
428 struct mem_cgroup *memcg;
429 struct cgroup_subsys_state *blkcg_css;
430 struct blkcg *blkcg;
431 struct list_head *memcg_cgwb_list, *blkcg_cgwb_list;
432 struct bdi_writeback *wb;
433 unsigned long flags;
434 int ret = 0;
435
436 memcg = mem_cgroup_from_css(memcg_css);
Tejun Heoc165b3e2015-08-18 14:55:29 -0700437 blkcg_css = cgroup_get_e_css(memcg_css->cgroup, &io_cgrp_subsys);
Tejun Heo52ebea72015-05-22 17:13:37 -0400438 blkcg = css_to_blkcg(blkcg_css);
Wang Long9ccc3612018-06-07 17:07:19 -0700439 memcg_cgwb_list = &memcg->cgwb_list;
Tejun Heo52ebea72015-05-22 17:13:37 -0400440 blkcg_cgwb_list = &blkcg->cgwb_list;
441
442 /* look up again under lock and discard on blkcg mismatch */
443 spin_lock_irqsave(&cgwb_lock, flags);
444 wb = radix_tree_lookup(&bdi->cgwb_tree, memcg_css->id);
445 if (wb && wb->blkcg_css != blkcg_css) {
446 cgwb_kill(wb);
447 wb = NULL;
448 }
449 spin_unlock_irqrestore(&cgwb_lock, flags);
450 if (wb)
451 goto out_put;
452
453 /* need to create a new one */
454 wb = kmalloc(sizeof(*wb), gfp);
Christophe JAILLET0b045bd2017-09-11 21:43:23 +0200455 if (!wb) {
456 ret = -ENOMEM;
457 goto out_put;
458 }
Tejun Heo52ebea72015-05-22 17:13:37 -0400459
Christoph Hellwig8c911f32020-07-01 11:06:21 +0200460 ret = wb_init(wb, bdi, gfp);
Tejun Heo52ebea72015-05-22 17:13:37 -0400461 if (ret)
462 goto err_free;
463
464 ret = percpu_ref_init(&wb->refcnt, cgwb_release, 0, gfp);
465 if (ret)
466 goto err_wb_exit;
467
Tejun Heo841710a2015-05-22 18:23:33 -0400468 ret = fprop_local_init_percpu(&wb->memcg_completions, gfp);
469 if (ret)
470 goto err_ref_exit;
471
Tejun Heo52ebea72015-05-22 17:13:37 -0400472 wb->memcg_css = memcg_css;
473 wb->blkcg_css = blkcg_css;
474 INIT_WORK(&wb->release_work, cgwb_release_workfn);
475 set_bit(WB_registered, &wb->state);
476
477 /*
478 * The root wb determines the registered state of the whole bdi and
479 * memcg_cgwb_list and blkcg_cgwb_list's next pointers indicate
480 * whether they're still online. Don't link @wb if any is dead.
481 * See wb_memcg_offline() and wb_blkcg_offline().
482 */
483 ret = -ENODEV;
484 spin_lock_irqsave(&cgwb_lock, flags);
485 if (test_bit(WB_registered, &bdi->wb.state) &&
486 blkcg_cgwb_list->next && memcg_cgwb_list->next) {
487 /* we might have raced another instance of this function */
488 ret = radix_tree_insert(&bdi->cgwb_tree, memcg_css->id, wb);
489 if (!ret) {
Tejun Heob8175252015-10-02 14:47:05 -0400490 list_add_tail_rcu(&wb->bdi_node, &bdi->wb_list);
Tejun Heo52ebea72015-05-22 17:13:37 -0400491 list_add(&wb->memcg_node, memcg_cgwb_list);
492 list_add(&wb->blkcg_node, blkcg_cgwb_list);
Tejun Heod866dbf2019-07-24 10:37:22 -0700493 blkcg_pin_online(blkcg);
Tejun Heo52ebea72015-05-22 17:13:37 -0400494 css_get(memcg_css);
495 css_get(blkcg_css);
496 }
497 }
498 spin_unlock_irqrestore(&cgwb_lock, flags);
499 if (ret) {
500 if (ret == -EEXIST)
501 ret = 0;
Tejun Heoa13f35e2015-07-02 08:44:34 -0600502 goto err_fprop_exit;
Tejun Heo52ebea72015-05-22 17:13:37 -0400503 }
504 goto out_put;
505
Tejun Heo841710a2015-05-22 18:23:33 -0400506err_fprop_exit:
507 fprop_local_destroy_percpu(&wb->memcg_completions);
Tejun Heo52ebea72015-05-22 17:13:37 -0400508err_ref_exit:
509 percpu_ref_exit(&wb->refcnt);
510err_wb_exit:
511 wb_exit(wb);
512err_free:
513 kfree(wb);
514out_put:
515 css_put(blkcg_css);
516 return ret;
517}
518
519/**
Tejun Heoed288dc2019-08-26 09:06:54 -0700520 * wb_get_lookup - get wb for a given memcg
Tejun Heo52ebea72015-05-22 17:13:37 -0400521 * @bdi: target bdi
522 * @memcg_css: cgroup_subsys_state of the target memcg (must have positive ref)
Tejun Heo52ebea72015-05-22 17:13:37 -0400523 *
Tejun Heoed288dc2019-08-26 09:06:54 -0700524 * Try to get the wb for @memcg_css on @bdi. The returned wb has its
525 * refcount incremented.
Tejun Heo52ebea72015-05-22 17:13:37 -0400526 *
527 * This function uses css_get() on @memcg_css and thus expects its refcnt
528 * to be positive on invocation. IOW, rcu_read_lock() protection on
529 * @memcg_css isn't enough. try_get it before calling this function.
530 *
531 * A wb is keyed by its associated memcg. As blkcg implicitly enables
532 * memcg on the default hierarchy, memcg association is guaranteed to be
533 * more specific (equal or descendant to the associated blkcg) and thus can
534 * identify both the memcg and blkcg associations.
535 *
536 * Because the blkcg associated with a memcg may change as blkcg is enabled
537 * and disabled closer to root in the hierarchy, each wb keeps track of
538 * both the memcg and blkcg associated with it and verifies the blkcg on
539 * each lookup. On mismatch, the existing wb is discarded and a new one is
540 * created.
541 */
Tejun Heoed288dc2019-08-26 09:06:54 -0700542struct bdi_writeback *wb_get_lookup(struct backing_dev_info *bdi,
543 struct cgroup_subsys_state *memcg_css)
544{
545 struct bdi_writeback *wb;
546
547 if (!memcg_css->parent)
548 return &bdi->wb;
549
550 rcu_read_lock();
551 wb = radix_tree_lookup(&bdi->cgwb_tree, memcg_css->id);
552 if (wb) {
553 struct cgroup_subsys_state *blkcg_css;
554
555 /* see whether the blkcg association has changed */
556 blkcg_css = cgroup_get_e_css(memcg_css->cgroup, &io_cgrp_subsys);
557 if (unlikely(wb->blkcg_css != blkcg_css || !wb_tryget(wb)))
558 wb = NULL;
559 css_put(blkcg_css);
560 }
561 rcu_read_unlock();
562
563 return wb;
564}
565
566/**
567 * wb_get_create - get wb for a given memcg, create if necessary
568 * @bdi: target bdi
569 * @memcg_css: cgroup_subsys_state of the target memcg (must have positive ref)
570 * @gfp: allocation mask to use
571 *
572 * Try to get the wb for @memcg_css on @bdi. If it doesn't exist, try to
573 * create one. See wb_get_lookup() for more details.
574 */
Tejun Heo52ebea72015-05-22 17:13:37 -0400575struct bdi_writeback *wb_get_create(struct backing_dev_info *bdi,
576 struct cgroup_subsys_state *memcg_css,
577 gfp_t gfp)
578{
579 struct bdi_writeback *wb;
580
Mel Gormand0164ad2015-11-06 16:28:21 -0800581 might_sleep_if(gfpflags_allow_blocking(gfp));
Tejun Heo52ebea72015-05-22 17:13:37 -0400582
583 if (!memcg_css->parent)
584 return &bdi->wb;
585
586 do {
Tejun Heoed288dc2019-08-26 09:06:54 -0700587 wb = wb_get_lookup(bdi, memcg_css);
Tejun Heo52ebea72015-05-22 17:13:37 -0400588 } while (!wb && !cgwb_create(bdi, memcg_css, gfp));
589
590 return wb;
591}
592
Tejun Heoa13f35e2015-07-02 08:44:34 -0600593static int cgwb_bdi_init(struct backing_dev_info *bdi)
Tejun Heo52ebea72015-05-22 17:13:37 -0400594{
Tejun Heoa13f35e2015-07-02 08:44:34 -0600595 int ret;
596
Tejun Heo52ebea72015-05-22 17:13:37 -0400597 INIT_RADIX_TREE(&bdi->cgwb_tree, GFP_ATOMIC);
Jan Kara3ee7e862018-06-18 15:46:58 +0200598 mutex_init(&bdi->cgwb_release_mutex);
Tejun Heo7fc58542017-12-12 08:38:30 -0800599 init_rwsem(&bdi->wb_switch_rwsem);
Tejun Heoa13f35e2015-07-02 08:44:34 -0600600
Christoph Hellwig8c911f32020-07-01 11:06:21 +0200601 ret = wb_init(&bdi->wb, bdi, GFP_KERNEL);
Tejun Heoa13f35e2015-07-02 08:44:34 -0600602 if (!ret) {
Johannes Weiner7d828602016-01-14 15:20:56 -0800603 bdi->wb.memcg_css = &root_mem_cgroup->css;
Tejun Heoa13f35e2015-07-02 08:44:34 -0600604 bdi->wb.blkcg_css = blkcg_root_css;
605 }
606 return ret;
Tejun Heo52ebea72015-05-22 17:13:37 -0400607}
608
Jan Karab1c51af2017-03-23 01:36:59 +0100609static void cgwb_bdi_unregister(struct backing_dev_info *bdi)
Tejun Heo52ebea72015-05-22 17:13:37 -0400610{
611 struct radix_tree_iter iter;
612 void **slot;
Jan Kara5318ce72017-03-23 01:36:57 +0100613 struct bdi_writeback *wb;
Tejun Heo52ebea72015-05-22 17:13:37 -0400614
615 WARN_ON(test_bit(WB_registered, &bdi->wb.state));
616
617 spin_lock_irq(&cgwb_lock);
618 radix_tree_for_each_slot(slot, &bdi->cgwb_tree, &iter, 0)
619 cgwb_kill(*slot);
Jan Kara3ee7e862018-06-18 15:46:58 +0200620 spin_unlock_irq(&cgwb_lock);
Jan Kara5318ce72017-03-23 01:36:57 +0100621
Jan Kara3ee7e862018-06-18 15:46:58 +0200622 mutex_lock(&bdi->cgwb_release_mutex);
623 spin_lock_irq(&cgwb_lock);
Jan Kara5318ce72017-03-23 01:36:57 +0100624 while (!list_empty(&bdi->wb_list)) {
625 wb = list_first_entry(&bdi->wb_list, struct bdi_writeback,
626 bdi_node);
627 spin_unlock_irq(&cgwb_lock);
628 wb_shutdown(wb);
629 spin_lock_irq(&cgwb_lock);
630 }
Tejun Heo52ebea72015-05-22 17:13:37 -0400631 spin_unlock_irq(&cgwb_lock);
Jan Kara3ee7e862018-06-18 15:46:58 +0200632 mutex_unlock(&bdi->cgwb_release_mutex);
Tejun Heo52ebea72015-05-22 17:13:37 -0400633}
634
635/**
636 * wb_memcg_offline - kill all wb's associated with a memcg being offlined
637 * @memcg: memcg being offlined
638 *
639 * Also prevents creation of any new wb's associated with @memcg.
640 */
641void wb_memcg_offline(struct mem_cgroup *memcg)
642{
Wang Long9ccc3612018-06-07 17:07:19 -0700643 struct list_head *memcg_cgwb_list = &memcg->cgwb_list;
Tejun Heo52ebea72015-05-22 17:13:37 -0400644 struct bdi_writeback *wb, *next;
645
646 spin_lock_irq(&cgwb_lock);
647 list_for_each_entry_safe(wb, next, memcg_cgwb_list, memcg_node)
648 cgwb_kill(wb);
649 memcg_cgwb_list->next = NULL; /* prevent new wb's */
650 spin_unlock_irq(&cgwb_lock);
651}
652
653/**
654 * wb_blkcg_offline - kill all wb's associated with a blkcg being offlined
655 * @blkcg: blkcg being offlined
656 *
657 * Also prevents creation of any new wb's associated with @blkcg.
658 */
659void wb_blkcg_offline(struct blkcg *blkcg)
660{
Tejun Heo52ebea72015-05-22 17:13:37 -0400661 struct bdi_writeback *wb, *next;
662
663 spin_lock_irq(&cgwb_lock);
664 list_for_each_entry_safe(wb, next, &blkcg->cgwb_list, blkcg_node)
665 cgwb_kill(wb);
666 blkcg->cgwb_list.next = NULL; /* prevent new wb's */
667 spin_unlock_irq(&cgwb_lock);
668}
669
Jan Karae8cb72b2017-03-23 01:36:56 +0100670static void cgwb_bdi_register(struct backing_dev_info *bdi)
671{
672 spin_lock_irq(&cgwb_lock);
673 list_add_tail_rcu(&bdi->wb.bdi_node, &bdi->wb_list);
674 spin_unlock_irq(&cgwb_lock);
675}
676
Tejun Heof1834642018-05-23 10:56:32 -0700677static int __init cgwb_init(void)
678{
679 /*
680 * There can be many concurrent release work items overwhelming
681 * system_wq. Put them in a separate wq and limit concurrency.
682 * There's no point in executing many of these in parallel.
683 */
684 cgwb_release_wq = alloc_workqueue("cgwb_release", 0, 1);
685 if (!cgwb_release_wq)
686 return -ENOMEM;
687
688 return 0;
689}
690subsys_initcall(cgwb_init);
691
Tejun Heo52ebea72015-05-22 17:13:37 -0400692#else /* CONFIG_CGROUP_WRITEBACK */
693
Tejun Heoa13f35e2015-07-02 08:44:34 -0600694static int cgwb_bdi_init(struct backing_dev_info *bdi)
695{
Christoph Hellwig8c911f32020-07-01 11:06:21 +0200696 return wb_init(&bdi->wb, bdi, GFP_KERNEL);
Tejun Heoa13f35e2015-07-02 08:44:34 -0600697}
698
Jan Karab1c51af2017-03-23 01:36:59 +0100699static void cgwb_bdi_unregister(struct backing_dev_info *bdi) { }
Jan Karadf23de52017-03-08 17:48:32 +0100700
Jan Karae8cb72b2017-03-23 01:36:56 +0100701static void cgwb_bdi_register(struct backing_dev_info *bdi)
702{
703 list_add_tail_rcu(&bdi->wb.bdi_node, &bdi->wb_list);
704}
705
706static void cgwb_remove_from_bdi_list(struct bdi_writeback *wb)
707{
708 list_del_rcu(&wb->bdi_node);
709}
710
Tejun Heo52ebea72015-05-22 17:13:37 -0400711#endif /* CONFIG_CGROUP_WRITEBACK */
712
Jan Kara2e82b842017-04-12 12:24:48 +0200713static int bdi_init(struct backing_dev_info *bdi)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700714{
Tejun Heob8175252015-10-02 14:47:05 -0400715 int ret;
716
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700717 bdi->dev = NULL;
718
Jan Karad03f6cd2017-02-02 15:56:51 +0100719 kref_init(&bdi->refcnt);
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700720 bdi->min_ratio = 0;
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700721 bdi->max_ratio = 100;
Jan Karaeb608e32012-05-24 18:59:11 +0200722 bdi->max_prop_frac = FPROP_FRAC_BASE;
Jens Axboe66f3b8e2009-09-02 09:19:46 +0200723 INIT_LIST_HEAD(&bdi->bdi_list);
Tejun Heob8175252015-10-02 14:47:05 -0400724 INIT_LIST_HEAD(&bdi->wb_list);
Tejun Heocc395d72015-05-22 17:13:58 -0400725 init_waitqueue_head(&bdi->wb_waitq);
Jens Axboe03ba3782009-09-09 09:08:54 +0200726
Tejun Heob8175252015-10-02 14:47:05 -0400727 ret = cgwb_bdi_init(bdi);
728
Tejun Heob8175252015-10-02 14:47:05 -0400729 return ret;
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700730}
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700731
Christoph Hellwigaef33c22020-05-04 14:48:00 +0200732struct backing_dev_info *bdi_alloc(int node_id)
Jan Karad03f6cd2017-02-02 15:56:51 +0100733{
734 struct backing_dev_info *bdi;
735
Christoph Hellwigaef33c22020-05-04 14:48:00 +0200736 bdi = kzalloc_node(sizeof(*bdi), GFP_KERNEL, node_id);
Jan Karad03f6cd2017-02-02 15:56:51 +0100737 if (!bdi)
738 return NULL;
739
740 if (bdi_init(bdi)) {
741 kfree(bdi);
742 return NULL;
743 }
Christoph Hellwigf56753a2020-09-24 08:51:40 +0200744 bdi->capabilities = BDI_CAP_WRITEBACK | BDI_CAP_WRITEBACK_ACCT;
Christoph Hellwig55b25982020-09-24 08:51:32 +0200745 bdi->ra_pages = VM_READAHEAD_PAGES;
746 bdi->io_pages = VM_READAHEAD_PAGES;
Jan Karad03f6cd2017-02-02 15:56:51 +0100747 return bdi;
748}
Christoph Hellwigaef33c22020-05-04 14:48:00 +0200749EXPORT_SYMBOL(bdi_alloc);
Jan Karad03f6cd2017-02-02 15:56:51 +0100750
Tejun Heo34f8fe52019-08-26 09:06:53 -0700751static struct rb_node **bdi_lookup_rb_node(u64 id, struct rb_node **parentp)
752{
753 struct rb_node **p = &bdi_tree.rb_node;
754 struct rb_node *parent = NULL;
755 struct backing_dev_info *bdi;
756
757 lockdep_assert_held(&bdi_lock);
758
759 while (*p) {
760 parent = *p;
761 bdi = rb_entry(parent, struct backing_dev_info, rb_node);
762
763 if (bdi->id > id)
764 p = &(*p)->rb_left;
765 else if (bdi->id < id)
766 p = &(*p)->rb_right;
767 else
768 break;
769 }
770
771 if (parentp)
772 *parentp = parent;
773 return p;
774}
775
776/**
777 * bdi_get_by_id - lookup and get bdi from its id
778 * @id: bdi id to lookup
779 *
780 * Find bdi matching @id and get it. Returns NULL if the matching bdi
781 * doesn't exist or is already unregistered.
782 */
783struct backing_dev_info *bdi_get_by_id(u64 id)
784{
785 struct backing_dev_info *bdi = NULL;
786 struct rb_node **p;
787
788 spin_lock_bh(&bdi_lock);
789 p = bdi_lookup_rb_node(id, NULL);
790 if (*p) {
791 bdi = rb_entry(*p, struct backing_dev_info, rb_node);
792 bdi_get(bdi);
793 }
794 spin_unlock_bh(&bdi_lock);
795
796 return bdi;
797}
798
Jan Kara7c4cc302017-04-12 12:24:49 +0200799int bdi_register_va(struct backing_dev_info *bdi, const char *fmt, va_list args)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700800{
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700801 struct device *dev;
Tejun Heo34f8fe52019-08-26 09:06:53 -0700802 struct rb_node *parent, **p;
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700803
804 if (bdi->dev) /* The driver needs to use separate queues per device */
805 return 0;
806
Christoph Hellwig6bd87ee2020-05-04 14:47:56 +0200807 vsnprintf(bdi->dev_name, sizeof(bdi->dev_name), fmt, args);
808 dev = device_create(bdi_class, NULL, MKDEV(0, 0), bdi, bdi->dev_name);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700809 if (IS_ERR(dev))
810 return PTR_ERR(dev);
811
Jan Karae8cb72b2017-03-23 01:36:56 +0100812 cgwb_bdi_register(bdi);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700813 bdi->dev = dev;
814
Jens Axboe6d0e4822017-12-21 10:01:30 -0700815 bdi_debug_register(bdi, dev_name(dev));
Tejun Heo46100072015-05-22 17:13:31 -0400816 set_bit(WB_registered, &bdi->wb.state);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700817
818 spin_lock_bh(&bdi_lock);
Tejun Heo34f8fe52019-08-26 09:06:53 -0700819
820 bdi->id = ++bdi_id_cursor;
821
822 p = bdi_lookup_rb_node(bdi->id, &parent);
823 rb_link_node(&bdi->rb_node, parent, p);
824 rb_insert_color(&bdi->rb_node, &bdi_tree);
825
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700826 list_add_tail_rcu(&bdi->bdi_list, &bdi_list);
Tejun Heo34f8fe52019-08-26 09:06:53 -0700827
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700828 spin_unlock_bh(&bdi_lock);
829
830 trace_writeback_bdi_register(bdi);
831 return 0;
832}
Jan Karabaf7a612017-04-12 12:24:25 +0200833
Jan Kara7c4cc302017-04-12 12:24:49 +0200834int bdi_register(struct backing_dev_info *bdi, const char *fmt, ...)
Jan Karabaf7a612017-04-12 12:24:25 +0200835{
836 va_list args;
837 int ret;
838
839 va_start(args, fmt);
Jan Kara7c4cc302017-04-12 12:24:49 +0200840 ret = bdi_register_va(bdi, fmt, args);
Jan Karabaf7a612017-04-12 12:24:25 +0200841 va_end(args);
842 return ret;
843}
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700844EXPORT_SYMBOL(bdi_register);
845
Christoph Hellwig3c5d2022020-05-04 14:47:59 +0200846void bdi_set_owner(struct backing_dev_info *bdi, struct device *owner)
Dan Williamsdf08c322016-07-31 11:15:13 -0700847{
Christoph Hellwig3c5d2022020-05-04 14:47:59 +0200848 WARN_ON_ONCE(bdi->owner);
Dan Williamsdf08c322016-07-31 11:15:13 -0700849 bdi->owner = owner;
850 get_device(owner);
Dan Williamsdf08c322016-07-31 11:15:13 -0700851}
Dan Williamsdf08c322016-07-31 11:15:13 -0700852
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700853/*
Tejun Heo46100072015-05-22 17:13:31 -0400854 * Remove bdi from bdi_list, and ensure that it is no longer visible
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700855 */
Tejun Heo46100072015-05-22 17:13:31 -0400856static void bdi_remove_from_list(struct backing_dev_info *bdi)
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700857{
Tejun Heo46100072015-05-22 17:13:31 -0400858 spin_lock_bh(&bdi_lock);
Tejun Heo34f8fe52019-08-26 09:06:53 -0700859 rb_erase(&bdi->rb_node, &bdi_tree);
Tejun Heo46100072015-05-22 17:13:31 -0400860 list_del_rcu(&bdi->bdi_list);
861 spin_unlock_bh(&bdi_lock);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700862
Tejun Heo46100072015-05-22 17:13:31 -0400863 synchronize_rcu_expedited();
Andrew Morton3fcfab12006-10-19 23:28:16 -0700864}
865
Tejun Heob02176f2015-09-08 12:20:22 -0400866void bdi_unregister(struct backing_dev_info *bdi)
Andrew Morton3fcfab12006-10-19 23:28:16 -0700867{
Tejun Heof0054bb2015-05-22 17:13:30 -0400868 /* make sure nobody finds us on the bdi_list anymore */
869 bdi_remove_from_list(bdi);
870 wb_shutdown(&bdi->wb);
Jan Karab1c51af2017-03-23 01:36:59 +0100871 cgwb_bdi_unregister(bdi);
Rabin Vincent7a401a92011-11-11 13:29:04 +0100872
Christoph Hellwigc4db59d2015-01-20 14:05:00 -0700873 if (bdi->dev) {
874 bdi_debug_unregister(bdi);
875 device_unregister(bdi->dev);
876 bdi->dev = NULL;
877 }
Dan Williamsdf08c322016-07-31 11:15:13 -0700878
879 if (bdi->owner) {
880 put_device(bdi->owner);
881 bdi->owner = NULL;
882 }
Tejun Heob02176f2015-09-08 12:20:22 -0400883}
Christoph Hellwigc4db59d2015-01-20 14:05:00 -0700884
Jan Karad03f6cd2017-02-02 15:56:51 +0100885static void release_bdi(struct kref *ref)
886{
887 struct backing_dev_info *bdi =
888 container_of(ref, struct backing_dev_info, refcnt);
889
Jan Kara5af110b2017-04-12 12:24:26 +0200890 if (test_bit(WB_registered, &bdi->wb.state))
891 bdi_unregister(bdi);
Jan Kara2e82b842017-04-12 12:24:48 +0200892 WARN_ON_ONCE(bdi->dev);
893 wb_exit(&bdi->wb);
Jan Karad03f6cd2017-02-02 15:56:51 +0100894 kfree(bdi);
895}
896
897void bdi_put(struct backing_dev_info *bdi)
898{
899 kref_put(&bdi->refcnt, release_bdi);
900}
Jan Kara62bf42a2017-04-12 12:24:27 +0200901EXPORT_SYMBOL(bdi_put);
Jan Karad03f6cd2017-02-02 15:56:51 +0100902
Christoph Hellwigeb7ae5e2020-05-04 14:47:54 +0200903const char *bdi_dev_name(struct backing_dev_info *bdi)
904{
905 if (!bdi || !bdi->dev)
906 return bdi_unknown_name;
Christoph Hellwig6bd87ee2020-05-04 14:47:56 +0200907 return bdi->dev_name;
Christoph Hellwigeb7ae5e2020-05-04 14:47:54 +0200908}
909EXPORT_SYMBOL_GPL(bdi_dev_name);
910
Andrew Morton3fcfab12006-10-19 23:28:16 -0700911static wait_queue_head_t congestion_wqh[2] = {
912 __WAIT_QUEUE_HEAD_INITIALIZER(congestion_wqh[0]),
913 __WAIT_QUEUE_HEAD_INITIALIZER(congestion_wqh[1])
914 };
Tejun Heoec8a6f22015-05-22 17:13:41 -0400915static atomic_t nr_wb_congested[2];
Andrew Morton3fcfab12006-10-19 23:28:16 -0700916
Christoph Hellwig492d76b2020-07-01 11:06:20 +0200917void clear_bdi_congested(struct backing_dev_info *bdi, int sync)
Andrew Morton3fcfab12006-10-19 23:28:16 -0700918{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200919 wait_queue_head_t *wqh = &congestion_wqh[sync];
Kaixu Xiac877ef82016-03-31 13:19:41 +0000920 enum wb_congested_state bit;
Andrew Morton3fcfab12006-10-19 23:28:16 -0700921
Tejun Heo44522262015-05-22 17:13:26 -0400922 bit = sync ? WB_sync_congested : WB_async_congested;
Christoph Hellwig8c911f32020-07-01 11:06:21 +0200923 if (test_and_clear_bit(bit, &bdi->wb.congested))
Tejun Heoec8a6f22015-05-22 17:13:41 -0400924 atomic_dec(&nr_wb_congested[sync]);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100925 smp_mb__after_atomic();
Andrew Morton3fcfab12006-10-19 23:28:16 -0700926 if (waitqueue_active(wqh))
927 wake_up(wqh);
928}
Christoph Hellwig492d76b2020-07-01 11:06:20 +0200929EXPORT_SYMBOL(clear_bdi_congested);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700930
Christoph Hellwig492d76b2020-07-01 11:06:20 +0200931void set_bdi_congested(struct backing_dev_info *bdi, int sync)
Andrew Morton3fcfab12006-10-19 23:28:16 -0700932{
Kaixu Xiac877ef82016-03-31 13:19:41 +0000933 enum wb_congested_state bit;
Andrew Morton3fcfab12006-10-19 23:28:16 -0700934
Tejun Heo44522262015-05-22 17:13:26 -0400935 bit = sync ? WB_sync_congested : WB_async_congested;
Christoph Hellwig8c911f32020-07-01 11:06:21 +0200936 if (!test_and_set_bit(bit, &bdi->wb.congested))
Tejun Heoec8a6f22015-05-22 17:13:41 -0400937 atomic_inc(&nr_wb_congested[sync]);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700938}
Christoph Hellwig492d76b2020-07-01 11:06:20 +0200939EXPORT_SYMBOL(set_bdi_congested);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700940
941/**
942 * congestion_wait - wait for a backing_dev to become uncongested
Jens Axboe8aa7e842009-07-09 14:52:32 +0200943 * @sync: SYNC or ASYNC IO
Andrew Morton3fcfab12006-10-19 23:28:16 -0700944 * @timeout: timeout in jiffies
945 *
946 * Waits for up to @timeout jiffies for a backing_dev (any backing_dev) to exit
947 * write congestion. If no backing_devs are congested then just wait for the
948 * next write to be completed.
949 */
Jens Axboe8aa7e842009-07-09 14:52:32 +0200950long congestion_wait(int sync, long timeout)
Andrew Morton3fcfab12006-10-19 23:28:16 -0700951{
952 long ret;
Mel Gorman52bb9192010-10-26 14:21:41 -0700953 unsigned long start = jiffies;
Andrew Morton3fcfab12006-10-19 23:28:16 -0700954 DEFINE_WAIT(wait);
Jens Axboe8aa7e842009-07-09 14:52:32 +0200955 wait_queue_head_t *wqh = &congestion_wqh[sync];
Andrew Morton3fcfab12006-10-19 23:28:16 -0700956
957 prepare_to_wait(wqh, &wait, TASK_UNINTERRUPTIBLE);
958 ret = io_schedule_timeout(timeout);
959 finish_wait(wqh, &wait);
Mel Gorman52bb9192010-10-26 14:21:41 -0700960
961 trace_writeback_congestion_wait(jiffies_to_usecs(timeout),
962 jiffies_to_usecs(jiffies - start));
963
Andrew Morton3fcfab12006-10-19 23:28:16 -0700964 return ret;
965}
966EXPORT_SYMBOL(congestion_wait);
967
Mel Gorman0e093d992010-10-26 14:21:45 -0700968/**
Mel Gorman599d0c92016-07-28 15:45:31 -0700969 * wait_iff_congested - Conditionally wait for a backing_dev to become uncongested or a pgdat to complete writes
Mel Gorman0e093d992010-10-26 14:21:45 -0700970 * @sync: SYNC or ASYNC IO
971 * @timeout: timeout in jiffies
972 *
Andrey Ryabinine3c1ac52018-04-10 16:28:03 -0700973 * In the event of a congested backing_dev (any backing_dev) this waits
974 * for up to @timeout jiffies for either a BDI to exit congestion of the
975 * given @sync queue or a write to complete.
Mel Gorman0e093d992010-10-26 14:21:45 -0700976 *
977 * The return value is 0 if the sleep is for the full timeout. Otherwise,
978 * it is the number of jiffies that were still remaining when the function
979 * returned. return_value == timeout implies the function did not sleep.
980 */
Andrey Ryabinine3c1ac52018-04-10 16:28:03 -0700981long wait_iff_congested(int sync, long timeout)
Mel Gorman0e093d992010-10-26 14:21:45 -0700982{
983 long ret;
984 unsigned long start = jiffies;
985 DEFINE_WAIT(wait);
986 wait_queue_head_t *wqh = &congestion_wqh[sync];
987
988 /*
Andrey Ryabinine3c1ac52018-04-10 16:28:03 -0700989 * If there is no congestion, yield if necessary instead
Mel Gorman0e093d992010-10-26 14:21:45 -0700990 * of sleeping on the congestion queue
991 */
Andrey Ryabinine3c1ac52018-04-10 16:28:03 -0700992 if (atomic_read(&nr_wb_congested[sync]) == 0) {
Michal Hockoede37712016-05-20 16:57:03 -0700993 cond_resched();
Mel Gorman599d0c92016-07-28 15:45:31 -0700994
Mel Gorman0e093d992010-10-26 14:21:45 -0700995 /* In case we scheduled, work out time remaining */
996 ret = timeout - (jiffies - start);
997 if (ret < 0)
998 ret = 0;
999
1000 goto out;
1001 }
1002
1003 /* Sleep until uncongested or a write happens */
1004 prepare_to_wait(wqh, &wait, TASK_UNINTERRUPTIBLE);
1005 ret = io_schedule_timeout(timeout);
1006 finish_wait(wqh, &wait);
1007
1008out:
1009 trace_writeback_wait_iff_congested(jiffies_to_usecs(timeout),
1010 jiffies_to_usecs(jiffies - start));
1011
1012 return ret;
1013}
1014EXPORT_SYMBOL(wait_iff_congested);