blob: c52a48cb9a66379971be13008bd8cdfba087807e [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 Heo52ebea72015-05-22 17:13:37 -040016#include <linux/blk-cgroup.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040017#include <linux/backing-dev-defs.h>
Tejun Heoa13f35e2015-07-02 08:44:34 -060018#include <linux/slab.h>
Christoph Hellwigde1414a2015-01-14 10:42:36 +010019
Mikulas Patocka8077c0d2013-10-14 12:14:13 -040020int __must_check bdi_init(struct backing_dev_info *bdi);
Jan Kara33c17052017-02-02 15:56:51 +010021
22static inline struct backing_dev_info *bdi_get(struct backing_dev_info *bdi)
23{
24 kref_get(&bdi->refcnt);
25 return bdi;
26}
27
28void bdi_put(struct backing_dev_info *bdi);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070029
Joe Perchesd2cc4dd2012-11-29 08:37:03 -060030__printf(3, 4)
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070031int bdi_register(struct backing_dev_info *bdi, struct device *parent,
32 const char *fmt, ...);
33int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev);
Dan Williamsdf08c322016-07-31 11:15:13 -070034int bdi_register_owner(struct backing_dev_info *bdi, struct device *owner);
Tejun Heob02176f2015-09-08 12:20:22 -040035void bdi_unregister(struct backing_dev_info *bdi);
36
Christoph Hellwigb4caecd2015-01-14 10:42:32 +010037int __must_check bdi_setup_and_register(struct backing_dev_info *, char *);
Tejun Heob02176f2015-09-08 12:20:22 -040038void bdi_destroy(struct backing_dev_info *bdi);
Jan Kara33c17052017-02-02 15:56:51 +010039struct backing_dev_info *bdi_alloc_node(gfp_t gfp_mask, int node_id);
Tejun Heob02176f2015-09-08 12:20:22 -040040
Tejun Heoc00ddad2015-05-22 17:13:51 -040041void wb_start_writeback(struct bdi_writeback *wb, long nr_pages,
42 bool range_cyclic, enum wb_reason reason);
Tejun Heo9ecf48662015-05-22 17:13:54 -040043void wb_start_background_writeback(struct bdi_writeback *wb);
Tejun Heof0054bb2015-05-22 17:13:30 -040044void wb_workfn(struct work_struct *work);
Tejun Heof0054bb2015-05-22 17:13:30 -040045void wb_wakeup_delayed(struct bdi_writeback *wb);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -070046
Jens Axboe03ba3782009-09-09 09:08:54 +020047extern spinlock_t bdi_lock;
Jens Axboe66f3b8e2009-09-02 09:19:46 +020048extern struct list_head bdi_list;
49
Tejun Heo839a8e82013-04-01 19:08:06 -070050extern struct workqueue_struct *bdi_wq;
51
Tejun Heod6c10f12015-05-22 17:13:45 -040052static inline bool wb_has_dirty_io(struct bdi_writeback *wb)
Jens Axboe03ba3782009-09-09 09:08:54 +020053{
Tejun Heod6c10f12015-05-22 17:13:45 -040054 return test_bit(WB_has_dirty_io, &wb->state);
Jens Axboe03ba3782009-09-09 09:08:54 +020055}
56
Tejun Heo95a46c62015-05-22 17:13:47 -040057static inline bool bdi_has_dirty_io(struct backing_dev_info *bdi)
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -070058{
Tejun Heo95a46c62015-05-22 17:13:47 -040059 /*
60 * @bdi->tot_write_bandwidth is guaranteed to be > 0 if there are
61 * any dirty wbs. See wb_update_write_bandwidth().
62 */
63 return atomic_long_read(&bdi->tot_write_bandwidth);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -070064}
65
Tejun Heo93f78d82015-05-22 17:13:27 -040066static inline void __add_wb_stat(struct bdi_writeback *wb,
67 enum wb_stat_item item, s64 amount)
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -070068{
Tejun Heo93f78d82015-05-22 17:13:27 -040069 __percpu_counter_add(&wb->stat[item], amount, WB_STAT_BATCH);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070070}
71
Tejun Heo93f78d82015-05-22 17:13:27 -040072static inline void __inc_wb_stat(struct bdi_writeback *wb,
73 enum wb_stat_item item)
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -070074{
Tejun Heo93f78d82015-05-22 17:13:27 -040075 __add_wb_stat(wb, item, 1);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070076}
77
Tejun Heo93f78d82015-05-22 17:13:27 -040078static inline void inc_wb_stat(struct bdi_writeback *wb, enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070079{
80 unsigned long flags;
81
82 local_irq_save(flags);
Tejun Heo93f78d82015-05-22 17:13:27 -040083 __inc_wb_stat(wb, item);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070084 local_irq_restore(flags);
85}
86
Tejun Heo93f78d82015-05-22 17:13:27 -040087static inline void __dec_wb_stat(struct bdi_writeback *wb,
88 enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070089{
Tejun Heo93f78d82015-05-22 17:13:27 -040090 __add_wb_stat(wb, item, -1);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070091}
92
Tejun Heo93f78d82015-05-22 17:13:27 -040093static inline void dec_wb_stat(struct bdi_writeback *wb, enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070094{
95 unsigned long flags;
96
97 local_irq_save(flags);
Tejun Heo93f78d82015-05-22 17:13:27 -040098 __dec_wb_stat(wb, item);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -070099 local_irq_restore(flags);
100}
101
Tejun Heo93f78d82015-05-22 17:13:27 -0400102static inline s64 wb_stat(struct bdi_writeback *wb, enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700103{
Tejun Heo93f78d82015-05-22 17:13:27 -0400104 return percpu_counter_read_positive(&wb->stat[item]);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700105}
106
Tejun Heo93f78d82015-05-22 17:13:27 -0400107static inline s64 __wb_stat_sum(struct bdi_writeback *wb,
108 enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700109{
Tejun Heo93f78d82015-05-22 17:13:27 -0400110 return percpu_counter_sum_positive(&wb->stat[item]);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700111}
112
Tejun Heo93f78d82015-05-22 17:13:27 -0400113static inline s64 wb_stat_sum(struct bdi_writeback *wb, enum wb_stat_item item)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700114{
115 s64 sum;
116 unsigned long flags;
117
118 local_irq_save(flags);
Tejun Heo93f78d82015-05-22 17:13:27 -0400119 sum = __wb_stat_sum(wb, item);
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700120 local_irq_restore(flags);
121
122 return sum;
123}
124
Tejun Heo93f78d82015-05-22 17:13:27 -0400125extern void wb_writeout_inc(struct bdi_writeback *wb);
Miklos Szeredidd5656e2008-04-30 00:54:37 -0700126
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700127/*
128 * maximal error of a stat counter.
129 */
Tejun Heo93f78d82015-05-22 17:13:27 -0400130static inline unsigned long wb_stat_error(struct bdi_writeback *wb)
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700131{
132#ifdef CONFIG_SMP
Tejun Heo93f78d82015-05-22 17:13:27 -0400133 return nr_cpu_ids * WB_STAT_BATCH;
Peter Zijlstrab2e8fb62007-10-16 23:25:47 -0700134#else
135 return 1;
136#endif
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700137}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700139int bdi_set_min_ratio(struct backing_dev_info *bdi, unsigned int min_ratio);
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700140int bdi_set_max_ratio(struct backing_dev_info *bdi, unsigned int max_ratio);
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/*
143 * Flags in backing_dev_info::capability
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700144 *
145 * The first three flags control whether dirty pages will contribute to the
146 * VM's accounting and whether writepages() should be called for dirty pages
147 * (something that would not, for example, be appropriate for ramfs)
148 *
149 * WARNING: these flags are closely related and should not normally be
150 * used separately. The BDI_CAP_NO_ACCT_AND_WRITEBACK combines these
151 * three flags into a single convenience macro.
152 *
153 * BDI_CAP_NO_ACCT_DIRTY: Dirty pages shouldn't contribute to accounting
154 * BDI_CAP_NO_WRITEBACK: Don't write pages back
155 * BDI_CAP_NO_ACCT_WB: Don't automatically account writeback pages
Maxim Patlasov5a537482013-09-11 14:22:46 -0700156 * BDI_CAP_STRICTLIMIT: Keep number of dirty pages below bdi threshold.
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400157 *
158 * BDI_CAP_CGROUP_WRITEBACK: Supports cgroup-aware writeback.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 */
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700160#define BDI_CAP_NO_ACCT_DIRTY 0x00000001
161#define BDI_CAP_NO_WRITEBACK 0x00000002
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100162#define BDI_CAP_NO_ACCT_WB 0x00000004
163#define BDI_CAP_STABLE_WRITES 0x00000008
164#define BDI_CAP_STRICTLIMIT 0x00000010
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400165#define BDI_CAP_CGROUP_WRITEBACK 0x00000020
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700167#define BDI_CAP_NO_ACCT_AND_WRITEBACK \
168 (BDI_CAP_NO_WRITEBACK | BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_ACCT_WB)
169
Jörn Engel5129a462010-04-25 08:54:42 +0200170extern struct backing_dev_info noop_backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Tejun Heobc058732015-05-22 17:13:53 -0400172/**
173 * writeback_in_progress - determine whether there is writeback in progress
174 * @wb: bdi_writeback of interest
175 *
176 * Determine whether there is writeback waiting to be handled against a
177 * bdi_writeback.
178 */
179static inline bool writeback_in_progress(struct bdi_writeback *wb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Tejun Heobc058732015-05-22 17:13:53 -0400181 return test_bit(WB_writeback_running, &wb->state);
182}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Tejun Heoa212b102015-05-22 17:13:33 -0400184static inline struct backing_dev_info *inode_to_bdi(struct inode *inode)
185{
186 struct super_block *sb;
187
188 if (!inode)
189 return &noop_backing_dev_info;
190
191 sb = inode->i_sb;
192#ifdef CONFIG_BLOCK
193 if (sb_is_blkdev_sb(sb))
Jan Karab8439982017-02-02 15:56:53 +0100194 return I_BDEV(inode)->bd_bdi;
Tejun Heoa212b102015-05-22 17:13:33 -0400195#endif
196 return sb->s_bdi;
197}
198
Tejun Heoec8a6f22015-05-22 17:13:41 -0400199static inline int wb_congested(struct bdi_writeback *wb, int cong_bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Tejun Heoec8a6f22015-05-22 17:13:41 -0400201 struct backing_dev_info *bdi = wb->bdi;
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (bdi->congested_fn)
Tejun Heoec8a6f22015-05-22 17:13:41 -0400204 return bdi->congested_fn(bdi->congested_data, cong_bits);
205 return wb->congested->state & cong_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
Jens Axboe8aa7e842009-07-09 14:52:32 +0200208long congestion_wait(int sync, long timeout);
Mel Gorman599d0c92016-07-28 15:45:31 -0700209long wait_iff_congested(struct pglist_data *pgdat, int sync, long timeout);
Wanpeng Li3965c9a2012-07-31 16:41:52 -0700210int pdflush_proc_obsolete(struct ctl_table *table, int write,
211 void __user *buffer, size_t *lenp, loff_t *ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Darrick J. Wong7d311cd2013-02-21 16:42:48 -0800213static inline bool bdi_cap_stable_pages_required(struct backing_dev_info *bdi)
214{
215 return bdi->capabilities & BDI_CAP_STABLE_WRITES;
216}
217
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700218static inline bool bdi_cap_writeback_dirty(struct backing_dev_info *bdi)
219{
220 return !(bdi->capabilities & BDI_CAP_NO_WRITEBACK);
221}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700223static inline bool bdi_cap_account_dirty(struct backing_dev_info *bdi)
224{
225 return !(bdi->capabilities & BDI_CAP_NO_ACCT_DIRTY);
226}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700228static inline bool bdi_cap_account_writeback(struct backing_dev_info *bdi)
229{
230 /* Paranoia: BDI_CAP_NO_WRITEBACK implies BDI_CAP_NO_ACCT_WB */
231 return !(bdi->capabilities & (BDI_CAP_NO_ACCT_WB |
232 BDI_CAP_NO_WRITEBACK));
233}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700235static inline bool mapping_cap_writeback_dirty(struct address_space *mapping)
236{
Christoph Hellwigde1414a2015-01-14 10:42:36 +0100237 return bdi_cap_writeback_dirty(inode_to_bdi(mapping->host));
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700238}
239
240static inline bool mapping_cap_account_dirty(struct address_space *mapping)
241{
Christoph Hellwigde1414a2015-01-14 10:42:36 +0100242 return bdi_cap_account_dirty(inode_to_bdi(mapping->host));
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700243}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Jens Axboe03ba3782009-09-09 09:08:54 +0200245static inline int bdi_sched_wait(void *word)
246{
247 schedule();
248 return 0;
249}
250
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400251#ifdef CONFIG_CGROUP_WRITEBACK
252
Tejun Heo52ebea72015-05-22 17:13:37 -0400253struct bdi_writeback_congested *
254wb_congested_get_create(struct backing_dev_info *bdi, int blkcg_id, gfp_t gfp);
255void wb_congested_put(struct bdi_writeback_congested *congested);
256struct bdi_writeback *wb_get_create(struct backing_dev_info *bdi,
257 struct cgroup_subsys_state *memcg_css,
258 gfp_t gfp);
Tejun Heo52ebea72015-05-22 17:13:37 -0400259void wb_memcg_offline(struct mem_cgroup *memcg);
260void wb_blkcg_offline(struct blkcg *blkcg);
Tejun Heo703c2702015-05-22 17:13:44 -0400261int inode_congested(struct inode *inode, int cong_bits);
Tejun Heo52ebea72015-05-22 17:13:37 -0400262
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400263/**
264 * inode_cgwb_enabled - test whether cgroup writeback is enabled on an inode
265 * @inode: inode of interest
266 *
267 * cgroup writeback requires support from both the bdi and filesystem.
Tejun Heo9badce02015-09-23 17:07:29 -0400268 * Also, both memcg and iocg have to be on the default hierarchy. Test
269 * whether all conditions are met.
270 *
271 * Note that the test result may change dynamically on the same inode
272 * depending on how memcg and iocg are configured.
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400273 */
274static inline bool inode_cgwb_enabled(struct inode *inode)
275{
276 struct backing_dev_info *bdi = inode_to_bdi(inode);
277
Tejun Heoc0522902015-09-24 16:59:19 -0400278 return cgroup_subsys_on_dfl(memory_cgrp_subsys) &&
279 cgroup_subsys_on_dfl(io_cgrp_subsys) &&
Tejun Heo9badce02015-09-23 17:07:29 -0400280 bdi_cap_account_dirty(bdi) &&
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400281 (bdi->capabilities & BDI_CAP_CGROUP_WRITEBACK) &&
Tejun Heo46b15ca2015-06-16 18:48:31 -0400282 (inode->i_sb->s_iflags & SB_I_CGROUPWB);
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400283}
284
Tejun Heo52ebea72015-05-22 17:13:37 -0400285/**
Tejun Heo52ebea72015-05-22 17:13:37 -0400286 * wb_find_current - find wb for %current on a bdi
287 * @bdi: bdi of interest
288 *
289 * Find the wb of @bdi which matches both the memcg and blkcg of %current.
290 * Must be called under rcu_read_lock() which protects the returend wb.
291 * NULL if not found.
292 */
293static inline struct bdi_writeback *wb_find_current(struct backing_dev_info *bdi)
294{
295 struct cgroup_subsys_state *memcg_css;
296 struct bdi_writeback *wb;
297
298 memcg_css = task_css(current, memory_cgrp_id);
299 if (!memcg_css->parent)
300 return &bdi->wb;
301
302 wb = radix_tree_lookup(&bdi->cgwb_tree, memcg_css->id);
303
304 /*
305 * %current's blkcg equals the effective blkcg of its memcg. No
306 * need to use the relatively expensive cgroup_get_e_css().
307 */
Tejun Heoc165b3e2015-08-18 14:55:29 -0700308 if (likely(wb && wb->blkcg_css == task_css(current, io_cgrp_id)))
Tejun Heo52ebea72015-05-22 17:13:37 -0400309 return wb;
310 return NULL;
311}
312
313/**
314 * wb_get_create_current - get or create wb for %current on a bdi
315 * @bdi: bdi of interest
316 * @gfp: allocation mask
317 *
318 * Equivalent to wb_get_create() on %current's memcg. This function is
319 * called from a relatively hot path and optimizes the common cases using
320 * wb_find_current().
321 */
322static inline struct bdi_writeback *
323wb_get_create_current(struct backing_dev_info *bdi, gfp_t gfp)
324{
325 struct bdi_writeback *wb;
326
327 rcu_read_lock();
328 wb = wb_find_current(bdi);
329 if (wb && unlikely(!wb_tryget(wb)))
330 wb = NULL;
331 rcu_read_unlock();
332
333 if (unlikely(!wb)) {
334 struct cgroup_subsys_state *memcg_css;
335
336 memcg_css = task_get_css(current, memory_cgrp_id);
337 wb = wb_get_create(bdi, memcg_css, gfp);
338 css_put(memcg_css);
339 }
340 return wb;
341}
342
343/**
Tejun Heoaaa2cac2015-05-28 14:50:55 -0400344 * inode_to_wb_is_valid - test whether an inode has a wb associated
345 * @inode: inode of interest
346 *
347 * Returns %true if @inode has a wb associated. May be called without any
348 * locking.
349 */
350static inline bool inode_to_wb_is_valid(struct inode *inode)
351{
352 return inode->i_wb;
353}
354
355/**
Tejun Heo52ebea72015-05-22 17:13:37 -0400356 * inode_to_wb - determine the wb of an inode
357 * @inode: inode of interest
358 *
Tejun Heoaaa2cac2015-05-28 14:50:55 -0400359 * Returns the wb @inode is currently associated with. The caller must be
360 * holding either @inode->i_lock, @inode->i_mapping->tree_lock, or the
361 * associated wb's list_lock.
Tejun Heo52ebea72015-05-22 17:13:37 -0400362 */
363static inline struct bdi_writeback *inode_to_wb(struct inode *inode)
364{
Tejun Heoaaa2cac2015-05-28 14:50:55 -0400365#ifdef CONFIG_LOCKDEP
366 WARN_ON_ONCE(debug_locks &&
367 (!lockdep_is_held(&inode->i_lock) &&
368 !lockdep_is_held(&inode->i_mapping->tree_lock) &&
369 !lockdep_is_held(&inode->i_wb->list_lock)));
370#endif
Tejun Heo52ebea72015-05-22 17:13:37 -0400371 return inode->i_wb;
372}
373
Tejun Heo682aa8e2015-05-28 14:50:53 -0400374/**
375 * unlocked_inode_to_wb_begin - begin unlocked inode wb access transaction
376 * @inode: target inode
377 * @lockedp: temp bool output param, to be passed to the end function
378 *
379 * The caller wants to access the wb associated with @inode but isn't
380 * holding inode->i_lock, mapping->tree_lock or wb->list_lock. This
381 * function determines the wb associated with @inode and ensures that the
382 * association doesn't change until the transaction is finished with
383 * unlocked_inode_to_wb_end().
384 *
385 * The caller must call unlocked_inode_to_wb_end() with *@lockdep
386 * afterwards and can't sleep during transaction. IRQ may or may not be
387 * disabled on return.
388 */
389static inline struct bdi_writeback *
390unlocked_inode_to_wb_begin(struct inode *inode, bool *lockedp)
391{
392 rcu_read_lock();
393
394 /*
395 * Paired with store_release in inode_switch_wb_work_fn() and
396 * ensures that we see the new wb if we see cleared I_WB_SWITCH.
397 */
398 *lockedp = smp_load_acquire(&inode->i_state) & I_WB_SWITCH;
399
400 if (unlikely(*lockedp))
401 spin_lock_irq(&inode->i_mapping->tree_lock);
Tejun Heoaaa2cac2015-05-28 14:50:55 -0400402
403 /*
404 * Protected by either !I_WB_SWITCH + rcu_read_lock() or tree_lock.
405 * inode_to_wb() will bark. Deref directly.
406 */
407 return inode->i_wb;
Tejun Heo682aa8e2015-05-28 14:50:53 -0400408}
409
410/**
411 * unlocked_inode_to_wb_end - end inode wb access transaction
412 * @inode: target inode
413 * @locked: *@lockedp from unlocked_inode_to_wb_begin()
414 */
415static inline void unlocked_inode_to_wb_end(struct inode *inode, bool locked)
416{
417 if (unlikely(locked))
418 spin_unlock_irq(&inode->i_mapping->tree_lock);
419
420 rcu_read_unlock();
421}
422
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400423#else /* CONFIG_CGROUP_WRITEBACK */
424
425static inline bool inode_cgwb_enabled(struct inode *inode)
426{
427 return false;
428}
429
Tejun Heo52ebea72015-05-22 17:13:37 -0400430static inline struct bdi_writeback_congested *
431wb_congested_get_create(struct backing_dev_info *bdi, int blkcg_id, gfp_t gfp)
432{
Tejun Heoa13f35e2015-07-02 08:44:34 -0600433 atomic_inc(&bdi->wb_congested->refcnt);
434 return bdi->wb_congested;
Tejun Heo52ebea72015-05-22 17:13:37 -0400435}
436
437static inline void wb_congested_put(struct bdi_writeback_congested *congested)
438{
Tejun Heoa13f35e2015-07-02 08:44:34 -0600439 if (atomic_dec_and_test(&congested->refcnt))
440 kfree(congested);
Tejun Heo52ebea72015-05-22 17:13:37 -0400441}
442
Tejun Heo52ebea72015-05-22 17:13:37 -0400443static inline struct bdi_writeback *wb_find_current(struct backing_dev_info *bdi)
444{
445 return &bdi->wb;
446}
447
448static inline struct bdi_writeback *
449wb_get_create_current(struct backing_dev_info *bdi, gfp_t gfp)
450{
451 return &bdi->wb;
452}
453
Tejun Heoaaa2cac2015-05-28 14:50:55 -0400454static inline bool inode_to_wb_is_valid(struct inode *inode)
455{
456 return true;
457}
458
Tejun Heo52ebea72015-05-22 17:13:37 -0400459static inline struct bdi_writeback *inode_to_wb(struct inode *inode)
460{
461 return &inode_to_bdi(inode)->wb;
462}
463
Tejun Heo682aa8e2015-05-28 14:50:53 -0400464static inline struct bdi_writeback *
465unlocked_inode_to_wb_begin(struct inode *inode, bool *lockedp)
466{
467 return inode_to_wb(inode);
468}
469
470static inline void unlocked_inode_to_wb_end(struct inode *inode, bool locked)
471{
472}
473
Tejun Heo52ebea72015-05-22 17:13:37 -0400474static inline void wb_memcg_offline(struct mem_cgroup *memcg)
475{
476}
477
478static inline void wb_blkcg_offline(struct blkcg *blkcg)
479{
480}
481
Tejun Heo703c2702015-05-22 17:13:44 -0400482static inline int inode_congested(struct inode *inode, int cong_bits)
483{
484 return wb_congested(&inode_to_bdi(inode)->wb, cong_bits);
485}
486
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400487#endif /* CONFIG_CGROUP_WRITEBACK */
488
Tejun Heo703c2702015-05-22 17:13:44 -0400489static inline int inode_read_congested(struct inode *inode)
490{
491 return inode_congested(inode, 1 << WB_sync_congested);
492}
493
494static inline int inode_write_congested(struct inode *inode)
495{
496 return inode_congested(inode, 1 << WB_async_congested);
497}
498
499static inline int inode_rw_congested(struct inode *inode)
500{
501 return inode_congested(inode, (1 << WB_sync_congested) |
502 (1 << WB_async_congested));
503}
504
Tejun Heoec8a6f22015-05-22 17:13:41 -0400505static inline int bdi_congested(struct backing_dev_info *bdi, int cong_bits)
506{
507 return wb_congested(&bdi->wb, cong_bits);
508}
509
510static inline int bdi_read_congested(struct backing_dev_info *bdi)
511{
512 return bdi_congested(bdi, 1 << WB_sync_congested);
513}
514
515static inline int bdi_write_congested(struct backing_dev_info *bdi)
516{
517 return bdi_congested(bdi, 1 << WB_async_congested);
518}
519
520static inline int bdi_rw_congested(struct backing_dev_info *bdi)
521{
522 return bdi_congested(bdi, (1 << WB_sync_congested) |
523 (1 << WB_async_congested));
524}
525
Tejun Heo89e9b9e2015-05-22 17:13:36 -0400526#endif /* _LINUX_BACKING_DEV_H */