blob: d5eb4ad1c534a8074b64ee75d4b597563e36e89a [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 Zijlstracf0ca9f2008-04-30 00:54:32 -070011#include <linux/kernel.h>
Miklos Szeredie4ad08f2008-04-30 00:54:37 -070012#include <linux/fs.h>
Jens Axboe03ba3782009-09-09 09:08:54 +020013#include <linux/sched.h>
Tejun Heoa212b102015-05-22 17:13:33 -040014#include <linux/blkdev.h>
Jens Axboe03ba3782009-09-09 09:08:54 +020015#include <linux/writeback.h>
Tejun Heo9badce02015-09-23 17:07:29 -040016#include <linux/memcontrol.h>
Tejun Heo52ebea72015-05-22 17:13:37 -040017#include <linux/blk-cgroup.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040018#include <linux/backing-dev-defs.h>
Tejun Heoa13f35e2015-07-02 08:44:34 -060019#include <linux/slab.h>
Christoph Hellwigde1414a2015-01-14 10:42:36 +010020
Mikulas Patocka8077c0d2013-10-14 12:14:13 -040021int __must_check bdi_init(struct backing_dev_info *bdi);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070022void bdi_destroy(struct backing_dev_info *bdi);
23
Joe Perchesd2cc4dd2012-11-29 08:37:03 -060024__printf(3, 4)
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070025int bdi_register(struct backing_dev_info *bdi, struct device *parent,
26 const char *fmt, ...);
27int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev);
Christoph Hellwigb4caecd2015-01-14 10:42:32 +010028int __must_check bdi_setup_and_register(struct backing_dev_info *, char *);
Tejun Heoc00ddad2015-05-22 17:13:51 -040029void wb_start_writeback(struct bdi_writeback *wb, long nr_pages,
30 bool range_cyclic, enum wb_reason reason);
Tejun Heo9ecf48662015-05-22 17:13:54 -040031void wb_start_background_writeback(struct bdi_writeback *wb);
Tejun Heof0054bb2015-05-22 17:13:30 -040032void wb_workfn(struct work_struct *work);
Tejun Heof0054bb2015-05-22 17:13:30 -040033void wb_wakeup_delayed(struct bdi_writeback *wb);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070034
Jens Axboe03ba3782009-09-09 09:08:54 +020035extern spinlock_t bdi_lock;
Jens Axboe66f3b8e2009-09-02 09:19:46 +020036extern struct list_head bdi_list;
37
Tejun Heo839a8e82013-04-01 19:08:06 -070038extern struct workqueue_struct *bdi_wq;
39
Tejun Heod6c10f12015-05-22 17:13:45 -040040static inline bool wb_has_dirty_io(struct bdi_writeback *wb)
Jens Axboe03ba3782009-09-09 09:08:54 +020041{
Tejun Heod6c10f12015-05-22 17:13:45 -040042 return test_bit(WB_has_dirty_io, &wb->state);
Jens Axboe03ba3782009-09-09 09:08:54 +020043}
44
Tejun Heo95a46c62015-05-22 17:13:47 -040045static inline bool bdi_has_dirty_io(struct backing_dev_info *bdi)
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -070046{
Tejun Heo95a46c62015-05-22 17:13:47 -040047 /*
48 * @bdi->tot_write_bandwidth is guaranteed to be > 0 if there are
49 * any dirty wbs. See wb_update_write_bandwidth().
50 */
51 return atomic_long_read(&bdi->tot_write_bandwidth);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -070052}
53
Tejun Heo93f78d82015-05-22 17:13:27 -040054static inline void __add_wb_stat(struct bdi_writeback *wb,
55 enum wb_stat_item item, s64 amount)
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -070056{
Tejun Heo93f78d82015-05-22 17:13:27 -040057 __percpu_counter_add(&wb->stat[item], amount, WB_STAT_BATCH);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070058}
59
Tejun Heo93f78d82015-05-22 17:13:27 -040060static inline void __inc_wb_stat(struct bdi_writeback *wb,
61 enum wb_stat_item item)
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -070062{
Tejun Heo93f78d82015-05-22 17:13:27 -040063 __add_wb_stat(wb, item, 1);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070064}
65
Tejun Heo93f78d82015-05-22 17:13:27 -040066static inline void inc_wb_stat(struct bdi_writeback *wb, enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070067{
68 unsigned long flags;
69
70 local_irq_save(flags);
Tejun Heo93f78d82015-05-22 17:13:27 -040071 __inc_wb_stat(wb, item);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070072 local_irq_restore(flags);
73}
74
Tejun Heo93f78d82015-05-22 17:13:27 -040075static inline void __dec_wb_stat(struct bdi_writeback *wb,
76 enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070077{
Tejun Heo93f78d82015-05-22 17:13:27 -040078 __add_wb_stat(wb, item, -1);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070079}
80
Tejun Heo93f78d82015-05-22 17:13:27 -040081static inline void dec_wb_stat(struct bdi_writeback *wb, enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070082{
83 unsigned long flags;
84
85 local_irq_save(flags);
Tejun Heo93f78d82015-05-22 17:13:27 -040086 __dec_wb_stat(wb, item);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070087 local_irq_restore(flags);
88}
89
Tejun Heo93f78d82015-05-22 17:13:27 -040090static inline s64 wb_stat(struct bdi_writeback *wb, enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070091{
Tejun Heo93f78d82015-05-22 17:13:27 -040092 return percpu_counter_read_positive(&wb->stat[item]);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070093}
94
Tejun Heo93f78d82015-05-22 17:13:27 -040095static inline s64 __wb_stat_sum(struct bdi_writeback *wb,
96 enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070097{
Tejun Heo93f78d82015-05-22 17:13:27 -040098 return percpu_counter_sum_positive(&wb->stat[item]);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070099}
100
Tejun Heo93f78d82015-05-22 17:13:27 -0400101static inline s64 wb_stat_sum(struct bdi_writeback *wb, enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700102{
103 s64 sum;
104 unsigned long flags;
105
106 local_irq_save(flags);
Tejun Heo93f78d82015-05-22 17:13:27 -0400107 sum = __wb_stat_sum(wb, item);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700108 local_irq_restore(flags);
109
110 return sum;
111}
112
Tejun Heo93f78d82015-05-22 17:13:27 -0400113extern void wb_writeout_inc(struct bdi_writeback *wb);
Miklos Szeredidd5656e2008-04-30 00:54:37 -0700114
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700115/*
116 * maximal error of a stat counter.
117 */
Tejun Heo93f78d82015-05-22 17:13:27 -0400118static inline unsigned long wb_stat_error(struct bdi_writeback *wb)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700119{
120#ifdef CONFIG_SMP
Tejun Heo93f78d82015-05-22 17:13:27 -0400121 return nr_cpu_ids * WB_STAT_BATCH;
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700122#else
123 return 1;
124#endif
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700125}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700127int bdi_set_min_ratio(struct backing_dev_info *bdi, unsigned int min_ratio);
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700128int bdi_set_max_ratio(struct backing_dev_info *bdi, unsigned int max_ratio);
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/*
131 * Flags in backing_dev_info::capability
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700132 *
133 * The first three flags control whether dirty pages will contribute to the
134 * VM's accounting and whether writepages() should be called for dirty pages
135 * (something that would not, for example, be appropriate for ramfs)
136 *
137 * WARNING: these flags are closely related and should not normally be
138 * used separately. The BDI_CAP_NO_ACCT_AND_WRITEBACK combines these
139 * three flags into a single convenience macro.
140 *
141 * BDI_CAP_NO_ACCT_DIRTY: Dirty pages shouldn't contribute to accounting
142 * BDI_CAP_NO_WRITEBACK: Don't write pages back
143 * BDI_CAP_NO_ACCT_WB: Don't automatically account writeback pages
Maxim Patlasov5a537482013-09-11 14:22:46 -0700144 * BDI_CAP_STRICTLIMIT: Keep number of dirty pages below bdi threshold.
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400145 *
146 * BDI_CAP_CGROUP_WRITEBACK: Supports cgroup-aware writeback.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 */
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700148#define BDI_CAP_NO_ACCT_DIRTY 0x00000001
149#define BDI_CAP_NO_WRITEBACK 0x00000002
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100150#define BDI_CAP_NO_ACCT_WB 0x00000004
151#define BDI_CAP_STABLE_WRITES 0x00000008
152#define BDI_CAP_STRICTLIMIT 0x00000010
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400153#define BDI_CAP_CGROUP_WRITEBACK 0x00000020
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700155#define BDI_CAP_NO_ACCT_AND_WRITEBACK \
156 (BDI_CAP_NO_WRITEBACK | BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_ACCT_WB)
157
Jörn Engel5129a462010-04-25 08:54:42 +0200158extern struct backing_dev_info noop_backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Tejun Heobc058732015-05-22 17:13:53 -0400160/**
161 * writeback_in_progress - determine whether there is writeback in progress
162 * @wb: bdi_writeback of interest
163 *
164 * Determine whether there is writeback waiting to be handled against a
165 * bdi_writeback.
166 */
167static inline bool writeback_in_progress(struct bdi_writeback *wb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Tejun Heobc058732015-05-22 17:13:53 -0400169 return test_bit(WB_writeback_running, &wb->state);
170}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Tejun Heoa212b102015-05-22 17:13:33 -0400172static inline struct backing_dev_info *inode_to_bdi(struct inode *inode)
173{
174 struct super_block *sb;
175
176 if (!inode)
177 return &noop_backing_dev_info;
178
179 sb = inode->i_sb;
180#ifdef CONFIG_BLOCK
181 if (sb_is_blkdev_sb(sb))
182 return blk_get_backing_dev_info(I_BDEV(inode));
183#endif
184 return sb->s_bdi;
185}
186
Tejun Heoec8a6f22015-05-22 17:13:41 -0400187static inline int wb_congested(struct bdi_writeback *wb, int cong_bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Tejun Heoec8a6f22015-05-22 17:13:41 -0400189 struct backing_dev_info *bdi = wb->bdi;
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (bdi->congested_fn)
Tejun Heoec8a6f22015-05-22 17:13:41 -0400192 return bdi->congested_fn(bdi->congested_data, cong_bits);
193 return wb->congested->state & cong_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
Jens Axboe8aa7e842009-07-09 14:52:32 +0200196long congestion_wait(int sync, long timeout);
Mel Gorman0e093d992010-10-26 14:21:45 -0700197long wait_iff_congested(struct zone *zone, int sync, long timeout);
Wanpeng Li3965c9a2012-07-31 16:41:52 -0700198int pdflush_proc_obsolete(struct ctl_table *table, int write,
199 void __user *buffer, size_t *lenp, loff_t *ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Darrick J. Wong7d311cd2013-02-21 16:42:48 -0800201static inline bool bdi_cap_stable_pages_required(struct backing_dev_info *bdi)
202{
203 return bdi->capabilities & BDI_CAP_STABLE_WRITES;
204}
205
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700206static inline bool bdi_cap_writeback_dirty(struct backing_dev_info *bdi)
207{
208 return !(bdi->capabilities & BDI_CAP_NO_WRITEBACK);
209}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700211static inline bool bdi_cap_account_dirty(struct backing_dev_info *bdi)
212{
213 return !(bdi->capabilities & BDI_CAP_NO_ACCT_DIRTY);
214}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700216static inline bool bdi_cap_account_writeback(struct backing_dev_info *bdi)
217{
218 /* Paranoia: BDI_CAP_NO_WRITEBACK implies BDI_CAP_NO_ACCT_WB */
219 return !(bdi->capabilities & (BDI_CAP_NO_ACCT_WB |
220 BDI_CAP_NO_WRITEBACK));
221}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700223static inline bool mapping_cap_writeback_dirty(struct address_space *mapping)
224{
Christoph Hellwigde1414a2015-01-14 10:42:36 +0100225 return bdi_cap_writeback_dirty(inode_to_bdi(mapping->host));
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700226}
227
228static inline bool mapping_cap_account_dirty(struct address_space *mapping)
229{
Christoph Hellwigde1414a2015-01-14 10:42:36 +0100230 return bdi_cap_account_dirty(inode_to_bdi(mapping->host));
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700231}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Jens Axboe03ba3782009-09-09 09:08:54 +0200233static inline int bdi_sched_wait(void *word)
234{
235 schedule();
236 return 0;
237}
238
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400239#ifdef CONFIG_CGROUP_WRITEBACK
240
Tejun Heo52ebea72015-05-22 17:13:37 -0400241struct bdi_writeback_congested *
242wb_congested_get_create(struct backing_dev_info *bdi, int blkcg_id, gfp_t gfp);
243void wb_congested_put(struct bdi_writeback_congested *congested);
244struct bdi_writeback *wb_get_create(struct backing_dev_info *bdi,
245 struct cgroup_subsys_state *memcg_css,
246 gfp_t gfp);
Tejun Heo52ebea72015-05-22 17:13:37 -0400247void wb_memcg_offline(struct mem_cgroup *memcg);
248void wb_blkcg_offline(struct blkcg *blkcg);
Tejun Heo703c2702015-05-22 17:13:44 -0400249int inode_congested(struct inode *inode, int cong_bits);
Tejun Heo52ebea72015-05-22 17:13:37 -0400250
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400251/**
252 * inode_cgwb_enabled - test whether cgroup writeback is enabled on an inode
253 * @inode: inode of interest
254 *
255 * cgroup writeback requires support from both the bdi and filesystem.
Tejun Heo9badce02015-09-23 17:07:29 -0400256 * Also, both memcg and iocg have to be on the default hierarchy. Test
257 * whether all conditions are met.
258 *
259 * Note that the test result may change dynamically on the same inode
260 * depending on how memcg and iocg are configured.
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400261 */
262static inline bool inode_cgwb_enabled(struct inode *inode)
263{
264 struct backing_dev_info *bdi = inode_to_bdi(inode);
265
Tejun Heo9badce02015-09-23 17:07:29 -0400266 return cgroup_on_dfl(mem_cgroup_root_css->cgroup) &&
267 cgroup_on_dfl(blkcg_root_css->cgroup) &&
268 bdi_cap_account_dirty(bdi) &&
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400269 (bdi->capabilities & BDI_CAP_CGROUP_WRITEBACK) &&
Tejun Heo46b15ca2015-06-16 18:48:31 -0400270 (inode->i_sb->s_iflags & SB_I_CGROUPWB);
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400271}
272
Tejun Heo52ebea72015-05-22 17:13:37 -0400273/**
Tejun Heo52ebea72015-05-22 17:13:37 -0400274 * wb_find_current - find wb for %current on a bdi
275 * @bdi: bdi of interest
276 *
277 * Find the wb of @bdi which matches both the memcg and blkcg of %current.
278 * Must be called under rcu_read_lock() which protects the returend wb.
279 * NULL if not found.
280 */
281static inline struct bdi_writeback *wb_find_current(struct backing_dev_info *bdi)
282{
283 struct cgroup_subsys_state *memcg_css;
284 struct bdi_writeback *wb;
285
286 memcg_css = task_css(current, memory_cgrp_id);
287 if (!memcg_css->parent)
288 return &bdi->wb;
289
290 wb = radix_tree_lookup(&bdi->cgwb_tree, memcg_css->id);
291
292 /*
293 * %current's blkcg equals the effective blkcg of its memcg. No
294 * need to use the relatively expensive cgroup_get_e_css().
295 */
Tejun Heoc165b3e2015-08-18 14:55:29 -0700296 if (likely(wb && wb->blkcg_css == task_css(current, io_cgrp_id)))
Tejun Heo52ebea72015-05-22 17:13:37 -0400297 return wb;
298 return NULL;
299}
300
301/**
302 * wb_get_create_current - get or create wb for %current on a bdi
303 * @bdi: bdi of interest
304 * @gfp: allocation mask
305 *
306 * Equivalent to wb_get_create() on %current's memcg. This function is
307 * called from a relatively hot path and optimizes the common cases using
308 * wb_find_current().
309 */
310static inline struct bdi_writeback *
311wb_get_create_current(struct backing_dev_info *bdi, gfp_t gfp)
312{
313 struct bdi_writeback *wb;
314
315 rcu_read_lock();
316 wb = wb_find_current(bdi);
317 if (wb && unlikely(!wb_tryget(wb)))
318 wb = NULL;
319 rcu_read_unlock();
320
321 if (unlikely(!wb)) {
322 struct cgroup_subsys_state *memcg_css;
323
324 memcg_css = task_get_css(current, memory_cgrp_id);
325 wb = wb_get_create(bdi, memcg_css, gfp);
326 css_put(memcg_css);
327 }
328 return wb;
329}
330
331/**
Tejun Heoaaa2cac2015-05-28 14:50:55 -0400332 * inode_to_wb_is_valid - test whether an inode has a wb associated
333 * @inode: inode of interest
334 *
335 * Returns %true if @inode has a wb associated. May be called without any
336 * locking.
337 */
338static inline bool inode_to_wb_is_valid(struct inode *inode)
339{
340 return inode->i_wb;
341}
342
343/**
Tejun Heo52ebea72015-05-22 17:13:37 -0400344 * inode_to_wb - determine the wb of an inode
345 * @inode: inode of interest
346 *
Tejun Heoaaa2cac2015-05-28 14:50:55 -0400347 * Returns the wb @inode is currently associated with. The caller must be
348 * holding either @inode->i_lock, @inode->i_mapping->tree_lock, or the
349 * associated wb's list_lock.
Tejun Heo52ebea72015-05-22 17:13:37 -0400350 */
351static inline struct bdi_writeback *inode_to_wb(struct inode *inode)
352{
Tejun Heoaaa2cac2015-05-28 14:50:55 -0400353#ifdef CONFIG_LOCKDEP
354 WARN_ON_ONCE(debug_locks &&
355 (!lockdep_is_held(&inode->i_lock) &&
356 !lockdep_is_held(&inode->i_mapping->tree_lock) &&
357 !lockdep_is_held(&inode->i_wb->list_lock)));
358#endif
Tejun Heo52ebea72015-05-22 17:13:37 -0400359 return inode->i_wb;
360}
361
Tejun Heo682aa8e2015-05-28 14:50:53 -0400362/**
363 * unlocked_inode_to_wb_begin - begin unlocked inode wb access transaction
364 * @inode: target inode
365 * @lockedp: temp bool output param, to be passed to the end function
366 *
367 * The caller wants to access the wb associated with @inode but isn't
368 * holding inode->i_lock, mapping->tree_lock or wb->list_lock. This
369 * function determines the wb associated with @inode and ensures that the
370 * association doesn't change until the transaction is finished with
371 * unlocked_inode_to_wb_end().
372 *
373 * The caller must call unlocked_inode_to_wb_end() with *@lockdep
374 * afterwards and can't sleep during transaction. IRQ may or may not be
375 * disabled on return.
376 */
377static inline struct bdi_writeback *
378unlocked_inode_to_wb_begin(struct inode *inode, bool *lockedp)
379{
380 rcu_read_lock();
381
382 /*
383 * Paired with store_release in inode_switch_wb_work_fn() and
384 * ensures that we see the new wb if we see cleared I_WB_SWITCH.
385 */
386 *lockedp = smp_load_acquire(&inode->i_state) & I_WB_SWITCH;
387
388 if (unlikely(*lockedp))
389 spin_lock_irq(&inode->i_mapping->tree_lock);
Tejun Heoaaa2cac2015-05-28 14:50:55 -0400390
391 /*
392 * Protected by either !I_WB_SWITCH + rcu_read_lock() or tree_lock.
393 * inode_to_wb() will bark. Deref directly.
394 */
395 return inode->i_wb;
Tejun Heo682aa8e2015-05-28 14:50:53 -0400396}
397
398/**
399 * unlocked_inode_to_wb_end - end inode wb access transaction
400 * @inode: target inode
401 * @locked: *@lockedp from unlocked_inode_to_wb_begin()
402 */
403static inline void unlocked_inode_to_wb_end(struct inode *inode, bool locked)
404{
405 if (unlikely(locked))
406 spin_unlock_irq(&inode->i_mapping->tree_lock);
407
408 rcu_read_unlock();
409}
410
Tejun Heoebe41ab2015-05-22 17:13:50 -0400411struct wb_iter {
Tejun Heo1ed8d482015-08-18 14:54:52 -0700412 int start_memcg_id;
Tejun Heoebe41ab2015-05-22 17:13:50 -0400413 struct radix_tree_iter tree_iter;
414 void **slot;
415};
416
417static inline struct bdi_writeback *__wb_iter_next(struct wb_iter *iter,
418 struct backing_dev_info *bdi)
419{
420 struct radix_tree_iter *titer = &iter->tree_iter;
421
422 WARN_ON_ONCE(!rcu_read_lock_held());
423
Tejun Heo1ed8d482015-08-18 14:54:52 -0700424 if (iter->start_memcg_id >= 0) {
425 iter->slot = radix_tree_iter_init(titer, iter->start_memcg_id);
426 iter->start_memcg_id = -1;
Tejun Heoebe41ab2015-05-22 17:13:50 -0400427 } else {
428 iter->slot = radix_tree_next_slot(iter->slot, titer, 0);
429 }
430
431 if (!iter->slot)
432 iter->slot = radix_tree_next_chunk(&bdi->cgwb_tree, titer, 0);
433 if (iter->slot)
434 return *iter->slot;
435 return NULL;
436}
437
438static inline struct bdi_writeback *__wb_iter_init(struct wb_iter *iter,
439 struct backing_dev_info *bdi,
Tejun Heo1ed8d482015-08-18 14:54:52 -0700440 int start_memcg_id)
Tejun Heoebe41ab2015-05-22 17:13:50 -0400441{
Tejun Heo1ed8d482015-08-18 14:54:52 -0700442 iter->start_memcg_id = start_memcg_id;
Tejun Heoebe41ab2015-05-22 17:13:50 -0400443
Tejun Heo1ed8d482015-08-18 14:54:52 -0700444 if (start_memcg_id)
Tejun Heoebe41ab2015-05-22 17:13:50 -0400445 return __wb_iter_next(iter, bdi);
446 else
447 return &bdi->wb;
448}
449
450/**
Tejun Heo1ed8d482015-08-18 14:54:52 -0700451 * bdi_for_each_wb - walk all wb's of a bdi in ascending memcg ID order
Tejun Heoebe41ab2015-05-22 17:13:50 -0400452 * @wb_cur: cursor struct bdi_writeback pointer
453 * @bdi: bdi to walk wb's of
454 * @iter: pointer to struct wb_iter to be used as iteration buffer
Tejun Heo1ed8d482015-08-18 14:54:52 -0700455 * @start_memcg_id: memcg ID to start iteration from
Tejun Heoebe41ab2015-05-22 17:13:50 -0400456 *
457 * Iterate @wb_cur through the wb's (bdi_writeback's) of @bdi in ascending
Tejun Heo1ed8d482015-08-18 14:54:52 -0700458 * memcg ID order starting from @start_memcg_id. @iter is struct wb_iter
Tejun Heoebe41ab2015-05-22 17:13:50 -0400459 * to be used as temp storage during iteration. rcu_read_lock() must be
460 * held throughout iteration.
461 */
Tejun Heo1ed8d482015-08-18 14:54:52 -0700462#define bdi_for_each_wb(wb_cur, bdi, iter, start_memcg_id) \
463 for ((wb_cur) = __wb_iter_init(iter, bdi, start_memcg_id); \
Tejun Heoebe41ab2015-05-22 17:13:50 -0400464 (wb_cur); (wb_cur) = __wb_iter_next(iter, bdi))
465
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400466#else /* CONFIG_CGROUP_WRITEBACK */
467
468static inline bool inode_cgwb_enabled(struct inode *inode)
469{
470 return false;
471}
472
Tejun Heo52ebea72015-05-22 17:13:37 -0400473static inline struct bdi_writeback_congested *
474wb_congested_get_create(struct backing_dev_info *bdi, int blkcg_id, gfp_t gfp)
475{
Tejun Heoa13f35e2015-07-02 08:44:34 -0600476 atomic_inc(&bdi->wb_congested->refcnt);
477 return bdi->wb_congested;
Tejun Heo52ebea72015-05-22 17:13:37 -0400478}
479
480static inline void wb_congested_put(struct bdi_writeback_congested *congested)
481{
Tejun Heoa13f35e2015-07-02 08:44:34 -0600482 if (atomic_dec_and_test(&congested->refcnt))
483 kfree(congested);
Tejun Heo52ebea72015-05-22 17:13:37 -0400484}
485
Tejun Heo52ebea72015-05-22 17:13:37 -0400486static inline struct bdi_writeback *wb_find_current(struct backing_dev_info *bdi)
487{
488 return &bdi->wb;
489}
490
491static inline struct bdi_writeback *
492wb_get_create_current(struct backing_dev_info *bdi, gfp_t gfp)
493{
494 return &bdi->wb;
495}
496
Tejun Heoaaa2cac2015-05-28 14:50:55 -0400497static inline bool inode_to_wb_is_valid(struct inode *inode)
498{
499 return true;
500}
501
Tejun Heo52ebea72015-05-22 17:13:37 -0400502static inline struct bdi_writeback *inode_to_wb(struct inode *inode)
503{
504 return &inode_to_bdi(inode)->wb;
505}
506
Tejun Heo682aa8e2015-05-28 14:50:53 -0400507static inline struct bdi_writeback *
508unlocked_inode_to_wb_begin(struct inode *inode, bool *lockedp)
509{
510 return inode_to_wb(inode);
511}
512
513static inline void unlocked_inode_to_wb_end(struct inode *inode, bool locked)
514{
515}
516
Tejun Heo52ebea72015-05-22 17:13:37 -0400517static inline void wb_memcg_offline(struct mem_cgroup *memcg)
518{
519}
520
521static inline void wb_blkcg_offline(struct blkcg *blkcg)
522{
523}
524
Tejun Heoebe41ab2015-05-22 17:13:50 -0400525struct wb_iter {
526 int next_id;
527};
528
529#define bdi_for_each_wb(wb_cur, bdi, iter, start_blkcg_id) \
530 for ((iter)->next_id = (start_blkcg_id); \
531 ({ (wb_cur) = !(iter)->next_id++ ? &(bdi)->wb : NULL; }); )
532
Tejun Heo703c2702015-05-22 17:13:44 -0400533static inline int inode_congested(struct inode *inode, int cong_bits)
534{
535 return wb_congested(&inode_to_bdi(inode)->wb, cong_bits);
536}
537
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400538#endif /* CONFIG_CGROUP_WRITEBACK */
539
Tejun Heo703c2702015-05-22 17:13:44 -0400540static inline int inode_read_congested(struct inode *inode)
541{
542 return inode_congested(inode, 1 << WB_sync_congested);
543}
544
545static inline int inode_write_congested(struct inode *inode)
546{
547 return inode_congested(inode, 1 << WB_async_congested);
548}
549
550static inline int inode_rw_congested(struct inode *inode)
551{
552 return inode_congested(inode, (1 << WB_sync_congested) |
553 (1 << WB_async_congested));
554}
555
Tejun Heoec8a6f22015-05-22 17:13:41 -0400556static inline int bdi_congested(struct backing_dev_info *bdi, int cong_bits)
557{
558 return wb_congested(&bdi->wb, cong_bits);
559}
560
561static inline int bdi_read_congested(struct backing_dev_info *bdi)
562{
563 return bdi_congested(bdi, 1 << WB_sync_congested);
564}
565
566static inline int bdi_write_congested(struct backing_dev_info *bdi)
567{
568 return bdi_congested(bdi, 1 << WB_async_congested);
569}
570
571static inline int bdi_rw_congested(struct backing_dev_info *bdi)
572{
573 return bdi_congested(bdi, (1 << WB_sync_congested) |
574 (1 << WB_async_congested));
575}
576
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400577#endif /* _LINUX_BACKING_DEV_H */