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