84cdcfbc763f8995fe1b9f02c2e753c5b0c61996
[sfrench/cifs-2.6.git] / include / linux / backing-dev.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * include/linux/backing-dev.h
4  *
5  * low-level device information and state which is propagated up through
6  * to high-level code.
7  */
8
9 #ifndef _LINUX_BACKING_DEV_H
10 #define _LINUX_BACKING_DEV_H
11
12 #include <linux/kernel.h>
13 #include <linux/fs.h>
14 #include <linux/sched.h>
15 #include <linux/blkdev.h>
16 #include <linux/writeback.h>
17 #include <linux/blk-cgroup.h>
18 #include <linux/backing-dev-defs.h>
19 #include <linux/slab.h>
20
21 static inline struct backing_dev_info *bdi_get(struct backing_dev_info *bdi)
22 {
23         kref_get(&bdi->refcnt);
24         return bdi;
25 }
26
27 struct backing_dev_info *bdi_get_by_id(u64 id);
28 void bdi_put(struct backing_dev_info *bdi);
29
30 __printf(2, 3)
31 int bdi_register(struct backing_dev_info *bdi, const char *fmt, ...);
32 __printf(2, 0)
33 int bdi_register_va(struct backing_dev_info *bdi, const char *fmt,
34                     va_list args);
35 int bdi_register_owner(struct backing_dev_info *bdi, struct device *owner);
36 void bdi_unregister(struct backing_dev_info *bdi);
37
38 struct backing_dev_info *bdi_alloc_node(gfp_t gfp_mask, int node_id);
39 static inline struct backing_dev_info *bdi_alloc(gfp_t gfp_mask)
40 {
41         return bdi_alloc_node(gfp_mask, NUMA_NO_NODE);
42 }
43
44 void wb_start_background_writeback(struct bdi_writeback *wb);
45 void wb_workfn(struct work_struct *work);
46 void wb_wakeup_delayed(struct bdi_writeback *wb);
47
48 void wb_wait_for_completion(struct wb_completion *done);
49
50 extern spinlock_t bdi_lock;
51 extern struct list_head bdi_list;
52
53 extern struct workqueue_struct *bdi_wq;
54 extern struct workqueue_struct *bdi_async_bio_wq;
55
56 static inline bool wb_has_dirty_io(struct bdi_writeback *wb)
57 {
58         return test_bit(WB_has_dirty_io, &wb->state);
59 }
60
61 static inline bool bdi_has_dirty_io(struct backing_dev_info *bdi)
62 {
63         /*
64          * @bdi->tot_write_bandwidth is guaranteed to be > 0 if there are
65          * any dirty wbs.  See wb_update_write_bandwidth().
66          */
67         return atomic_long_read(&bdi->tot_write_bandwidth);
68 }
69
70 static inline void __add_wb_stat(struct bdi_writeback *wb,
71                                  enum wb_stat_item item, s64 amount)
72 {
73         percpu_counter_add_batch(&wb->stat[item], amount, WB_STAT_BATCH);
74 }
75
76 static inline void inc_wb_stat(struct bdi_writeback *wb, enum wb_stat_item item)
77 {
78         __add_wb_stat(wb, item, 1);
79 }
80
81 static inline void dec_wb_stat(struct bdi_writeback *wb, enum wb_stat_item item)
82 {
83         __add_wb_stat(wb, item, -1);
84 }
85
86 static inline s64 wb_stat(struct bdi_writeback *wb, enum wb_stat_item item)
87 {
88         return percpu_counter_read_positive(&wb->stat[item]);
89 }
90
91 static inline s64 wb_stat_sum(struct bdi_writeback *wb, enum wb_stat_item item)
92 {
93         return percpu_counter_sum_positive(&wb->stat[item]);
94 }
95
96 extern void wb_writeout_inc(struct bdi_writeback *wb);
97
98 /*
99  * maximal error of a stat counter.
100  */
101 static inline unsigned long wb_stat_error(void)
102 {
103 #ifdef CONFIG_SMP
104         return nr_cpu_ids * WB_STAT_BATCH;
105 #else
106         return 1;
107 #endif
108 }
109
110 int bdi_set_min_ratio(struct backing_dev_info *bdi, unsigned int min_ratio);
111 int bdi_set_max_ratio(struct backing_dev_info *bdi, unsigned int max_ratio);
112
113 /*
114  * Flags in backing_dev_info::capability
115  *
116  * The first three flags control whether dirty pages will contribute to the
117  * VM's accounting and whether writepages() should be called for dirty pages
118  * (something that would not, for example, be appropriate for ramfs)
119  *
120  * WARNING: these flags are closely related and should not normally be
121  * used separately.  The BDI_CAP_NO_ACCT_AND_WRITEBACK combines these
122  * three flags into a single convenience macro.
123  *
124  * BDI_CAP_NO_ACCT_DIRTY:  Dirty pages shouldn't contribute to accounting
125  * BDI_CAP_NO_WRITEBACK:   Don't write pages back
126  * BDI_CAP_NO_ACCT_WB:     Don't automatically account writeback pages
127  * BDI_CAP_STRICTLIMIT:    Keep number of dirty pages below bdi threshold.
128  *
129  * BDI_CAP_CGROUP_WRITEBACK: Supports cgroup-aware writeback.
130  * BDI_CAP_SYNCHRONOUS_IO: Device is so fast that asynchronous IO would be
131  *                         inefficient.
132  */
133 #define BDI_CAP_NO_ACCT_DIRTY   0x00000001
134 #define BDI_CAP_NO_WRITEBACK    0x00000002
135 #define BDI_CAP_NO_ACCT_WB      0x00000004
136 #define BDI_CAP_STABLE_WRITES   0x00000008
137 #define BDI_CAP_STRICTLIMIT     0x00000010
138 #define BDI_CAP_CGROUP_WRITEBACK 0x00000020
139 #define BDI_CAP_SYNCHRONOUS_IO  0x00000040
140
141 #define BDI_CAP_NO_ACCT_AND_WRITEBACK \
142         (BDI_CAP_NO_WRITEBACK | BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_ACCT_WB)
143
144 extern struct backing_dev_info noop_backing_dev_info;
145
146 /**
147  * writeback_in_progress - determine whether there is writeback in progress
148  * @wb: bdi_writeback of interest
149  *
150  * Determine whether there is writeback waiting to be handled against a
151  * bdi_writeback.
152  */
153 static inline bool writeback_in_progress(struct bdi_writeback *wb)
154 {
155         return test_bit(WB_writeback_running, &wb->state);
156 }
157
158 static inline struct backing_dev_info *inode_to_bdi(struct inode *inode)
159 {
160         struct super_block *sb;
161
162         if (!inode)
163                 return &noop_backing_dev_info;
164
165         sb = inode->i_sb;
166 #ifdef CONFIG_BLOCK
167         if (sb_is_blkdev_sb(sb))
168                 return I_BDEV(inode)->bd_bdi;
169 #endif
170         return sb->s_bdi;
171 }
172
173 static inline int wb_congested(struct bdi_writeback *wb, int cong_bits)
174 {
175         struct backing_dev_info *bdi = wb->bdi;
176
177         if (bdi->congested_fn)
178                 return bdi->congested_fn(bdi->congested_data, cong_bits);
179         return wb->congested->state & cong_bits;
180 }
181
182 long congestion_wait(int sync, long timeout);
183 long wait_iff_congested(int sync, long timeout);
184
185 static inline bool bdi_cap_synchronous_io(struct backing_dev_info *bdi)
186 {
187         return bdi->capabilities & BDI_CAP_SYNCHRONOUS_IO;
188 }
189
190 static inline bool bdi_cap_stable_pages_required(struct backing_dev_info *bdi)
191 {
192         return bdi->capabilities & BDI_CAP_STABLE_WRITES;
193 }
194
195 static inline bool bdi_cap_writeback_dirty(struct backing_dev_info *bdi)
196 {
197         return !(bdi->capabilities & BDI_CAP_NO_WRITEBACK);
198 }
199
200 static inline bool bdi_cap_account_dirty(struct backing_dev_info *bdi)
201 {
202         return !(bdi->capabilities & BDI_CAP_NO_ACCT_DIRTY);
203 }
204
205 static inline bool bdi_cap_account_writeback(struct backing_dev_info *bdi)
206 {
207         /* Paranoia: BDI_CAP_NO_WRITEBACK implies BDI_CAP_NO_ACCT_WB */
208         return !(bdi->capabilities & (BDI_CAP_NO_ACCT_WB |
209                                       BDI_CAP_NO_WRITEBACK));
210 }
211
212 static inline bool mapping_cap_writeback_dirty(struct address_space *mapping)
213 {
214         return bdi_cap_writeback_dirty(inode_to_bdi(mapping->host));
215 }
216
217 static inline bool mapping_cap_account_dirty(struct address_space *mapping)
218 {
219         return bdi_cap_account_dirty(inode_to_bdi(mapping->host));
220 }
221
222 static inline int bdi_sched_wait(void *word)
223 {
224         schedule();
225         return 0;
226 }
227
228 #ifdef CONFIG_CGROUP_WRITEBACK
229
230 struct bdi_writeback_congested *
231 wb_congested_get_create(struct backing_dev_info *bdi, int blkcg_id, gfp_t gfp);
232 void wb_congested_put(struct bdi_writeback_congested *congested);
233 struct bdi_writeback *wb_get_create(struct backing_dev_info *bdi,
234                                     struct cgroup_subsys_state *memcg_css,
235                                     gfp_t gfp);
236 void wb_memcg_offline(struct mem_cgroup *memcg);
237 void wb_blkcg_offline(struct blkcg *blkcg);
238 int inode_congested(struct inode *inode, int cong_bits);
239
240 /**
241  * inode_cgwb_enabled - test whether cgroup writeback is enabled on an inode
242  * @inode: inode of interest
243  *
244  * cgroup writeback requires support from both the bdi and filesystem.
245  * Also, both memcg and iocg have to be on the default hierarchy.  Test
246  * whether all conditions are met.
247  *
248  * Note that the test result may change dynamically on the same inode
249  * depending on how memcg and iocg are configured.
250  */
251 static inline bool inode_cgwb_enabled(struct inode *inode)
252 {
253         struct backing_dev_info *bdi = inode_to_bdi(inode);
254
255         return cgroup_subsys_on_dfl(memory_cgrp_subsys) &&
256                 cgroup_subsys_on_dfl(io_cgrp_subsys) &&
257                 bdi_cap_account_dirty(bdi) &&
258                 (bdi->capabilities & BDI_CAP_CGROUP_WRITEBACK) &&
259                 (inode->i_sb->s_iflags & SB_I_CGROUPWB);
260 }
261
262 /**
263  * wb_find_current - find wb for %current on a bdi
264  * @bdi: bdi of interest
265  *
266  * Find the wb of @bdi which matches both the memcg and blkcg of %current.
267  * Must be called under rcu_read_lock() which protects the returend wb.
268  * NULL if not found.
269  */
270 static inline struct bdi_writeback *wb_find_current(struct backing_dev_info *bdi)
271 {
272         struct cgroup_subsys_state *memcg_css;
273         struct bdi_writeback *wb;
274
275         memcg_css = task_css(current, memory_cgrp_id);
276         if (!memcg_css->parent)
277                 return &bdi->wb;
278
279         wb = radix_tree_lookup(&bdi->cgwb_tree, memcg_css->id);
280
281         /*
282          * %current's blkcg equals the effective blkcg of its memcg.  No
283          * need to use the relatively expensive cgroup_get_e_css().
284          */
285         if (likely(wb && wb->blkcg_css == task_css(current, io_cgrp_id)))
286                 return wb;
287         return NULL;
288 }
289
290 /**
291  * wb_get_create_current - get or create wb for %current on a bdi
292  * @bdi: bdi of interest
293  * @gfp: allocation mask
294  *
295  * Equivalent to wb_get_create() on %current's memcg.  This function is
296  * called from a relatively hot path and optimizes the common cases using
297  * wb_find_current().
298  */
299 static inline struct bdi_writeback *
300 wb_get_create_current(struct backing_dev_info *bdi, gfp_t gfp)
301 {
302         struct bdi_writeback *wb;
303
304         rcu_read_lock();
305         wb = wb_find_current(bdi);
306         if (wb && unlikely(!wb_tryget(wb)))
307                 wb = NULL;
308         rcu_read_unlock();
309
310         if (unlikely(!wb)) {
311                 struct cgroup_subsys_state *memcg_css;
312
313                 memcg_css = task_get_css(current, memory_cgrp_id);
314                 wb = wb_get_create(bdi, memcg_css, gfp);
315                 css_put(memcg_css);
316         }
317         return wb;
318 }
319
320 /**
321  * inode_to_wb_is_valid - test whether an inode has a wb associated
322  * @inode: inode of interest
323  *
324  * Returns %true if @inode has a wb associated.  May be called without any
325  * locking.
326  */
327 static inline bool inode_to_wb_is_valid(struct inode *inode)
328 {
329         return inode->i_wb;
330 }
331
332 /**
333  * inode_to_wb - determine the wb of an inode
334  * @inode: inode of interest
335  *
336  * Returns the wb @inode is currently associated with.  The caller must be
337  * holding either @inode->i_lock, the i_pages lock, or the
338  * associated wb's list_lock.
339  */
340 static inline struct bdi_writeback *inode_to_wb(const struct inode *inode)
341 {
342 #ifdef CONFIG_LOCKDEP
343         WARN_ON_ONCE(debug_locks &&
344                      (!lockdep_is_held(&inode->i_lock) &&
345                       !lockdep_is_held(&inode->i_mapping->i_pages.xa_lock) &&
346                       !lockdep_is_held(&inode->i_wb->list_lock)));
347 #endif
348         return inode->i_wb;
349 }
350
351 /**
352  * unlocked_inode_to_wb_begin - begin unlocked inode wb access transaction
353  * @inode: target inode
354  * @cookie: output param, to be passed to the end function
355  *
356  * The caller wants to access the wb associated with @inode but isn't
357  * holding inode->i_lock, the i_pages lock or wb->list_lock.  This
358  * function determines the wb associated with @inode and ensures that the
359  * association doesn't change until the transaction is finished with
360  * unlocked_inode_to_wb_end().
361  *
362  * The caller must call unlocked_inode_to_wb_end() with *@cookie afterwards and
363  * can't sleep during the transaction.  IRQs may or may not be disabled on
364  * return.
365  */
366 static inline struct bdi_writeback *
367 unlocked_inode_to_wb_begin(struct inode *inode, struct wb_lock_cookie *cookie)
368 {
369         rcu_read_lock();
370
371         /*
372          * Paired with store_release in inode_switch_wbs_work_fn() and
373          * ensures that we see the new wb if we see cleared I_WB_SWITCH.
374          */
375         cookie->locked = smp_load_acquire(&inode->i_state) & I_WB_SWITCH;
376
377         if (unlikely(cookie->locked))
378                 xa_lock_irqsave(&inode->i_mapping->i_pages, cookie->flags);
379
380         /*
381          * Protected by either !I_WB_SWITCH + rcu_read_lock() or the i_pages
382          * lock.  inode_to_wb() will bark.  Deref directly.
383          */
384         return inode->i_wb;
385 }
386
387 /**
388  * unlocked_inode_to_wb_end - end inode wb access transaction
389  * @inode: target inode
390  * @cookie: @cookie from unlocked_inode_to_wb_begin()
391  */
392 static inline void unlocked_inode_to_wb_end(struct inode *inode,
393                                             struct wb_lock_cookie *cookie)
394 {
395         if (unlikely(cookie->locked))
396                 xa_unlock_irqrestore(&inode->i_mapping->i_pages, cookie->flags);
397
398         rcu_read_unlock();
399 }
400
401 #else   /* CONFIG_CGROUP_WRITEBACK */
402
403 static inline bool inode_cgwb_enabled(struct inode *inode)
404 {
405         return false;
406 }
407
408 static inline struct bdi_writeback_congested *
409 wb_congested_get_create(struct backing_dev_info *bdi, int blkcg_id, gfp_t gfp)
410 {
411         refcount_inc(&bdi->wb_congested->refcnt);
412         return bdi->wb_congested;
413 }
414
415 static inline void wb_congested_put(struct bdi_writeback_congested *congested)
416 {
417         if (refcount_dec_and_test(&congested->refcnt))
418                 kfree(congested);
419 }
420
421 static inline struct bdi_writeback *wb_find_current(struct backing_dev_info *bdi)
422 {
423         return &bdi->wb;
424 }
425
426 static inline struct bdi_writeback *
427 wb_get_create_current(struct backing_dev_info *bdi, gfp_t gfp)
428 {
429         return &bdi->wb;
430 }
431
432 static inline bool inode_to_wb_is_valid(struct inode *inode)
433 {
434         return true;
435 }
436
437 static inline struct bdi_writeback *inode_to_wb(struct inode *inode)
438 {
439         return &inode_to_bdi(inode)->wb;
440 }
441
442 static inline struct bdi_writeback *
443 unlocked_inode_to_wb_begin(struct inode *inode, struct wb_lock_cookie *cookie)
444 {
445         return inode_to_wb(inode);
446 }
447
448 static inline void unlocked_inode_to_wb_end(struct inode *inode,
449                                             struct wb_lock_cookie *cookie)
450 {
451 }
452
453 static inline void wb_memcg_offline(struct mem_cgroup *memcg)
454 {
455 }
456
457 static inline void wb_blkcg_offline(struct blkcg *blkcg)
458 {
459 }
460
461 static inline int inode_congested(struct inode *inode, int cong_bits)
462 {
463         return wb_congested(&inode_to_bdi(inode)->wb, cong_bits);
464 }
465
466 #endif  /* CONFIG_CGROUP_WRITEBACK */
467
468 static inline int inode_read_congested(struct inode *inode)
469 {
470         return inode_congested(inode, 1 << WB_sync_congested);
471 }
472
473 static inline int inode_write_congested(struct inode *inode)
474 {
475         return inode_congested(inode, 1 << WB_async_congested);
476 }
477
478 static inline int inode_rw_congested(struct inode *inode)
479 {
480         return inode_congested(inode, (1 << WB_sync_congested) |
481                                       (1 << WB_async_congested));
482 }
483
484 static inline int bdi_congested(struct backing_dev_info *bdi, int cong_bits)
485 {
486         return wb_congested(&bdi->wb, cong_bits);
487 }
488
489 static inline int bdi_read_congested(struct backing_dev_info *bdi)
490 {
491         return bdi_congested(bdi, 1 << WB_sync_congested);
492 }
493
494 static inline int bdi_write_congested(struct backing_dev_info *bdi)
495 {
496         return bdi_congested(bdi, 1 << WB_async_congested);
497 }
498
499 static inline int bdi_rw_congested(struct backing_dev_info *bdi)
500 {
501         return bdi_congested(bdi, (1 << WB_sync_congested) |
502                                   (1 << WB_async_congested));
503 }
504
505 #endif  /* _LINUX_BACKING_DEV_H */