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 | 9badce0 | 2015-09-23 17:07:29 -0400 | [diff] [blame] | 16 | #include <linux/memcontrol.h> |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 17 | #include <linux/blk-cgroup.h> |
Tejun Heo | 66114ca | 2015-05-22 17:13:32 -0400 | [diff] [blame] | 18 | #include <linux/backing-dev-defs.h> |
Tejun Heo | a13f35e | 2015-07-02 08:44:34 -0600 | [diff] [blame] | 19 | #include <linux/slab.h> |
Christoph Hellwig | de1414a | 2015-01-14 10:42:36 +0100 | [diff] [blame] | 20 | |
Mikulas Patocka | 8077c0d | 2013-10-14 12:14:13 -0400 | [diff] [blame] | 21 | int __must_check bdi_init(struct backing_dev_info *bdi); |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 22 | void bdi_destroy(struct backing_dev_info *bdi); |
| 23 | |
Joe Perches | d2cc4dd | 2012-11-29 08:37:03 -0600 | [diff] [blame] | 24 | __printf(3, 4) |
Peter Zijlstra | cf0ca9f | 2008-04-30 00:54:32 -0700 | [diff] [blame] | 25 | int bdi_register(struct backing_dev_info *bdi, struct device *parent, |
| 26 | const char *fmt, ...); |
| 27 | int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev); |
Christoph Hellwig | b4caecd | 2015-01-14 10:42:32 +0100 | [diff] [blame] | 28 | int __must_check bdi_setup_and_register(struct backing_dev_info *, char *); |
Tejun Heo | c00ddad | 2015-05-22 17:13:51 -0400 | [diff] [blame] | 29 | void wb_start_writeback(struct bdi_writeback *wb, long nr_pages, |
| 30 | bool range_cyclic, enum wb_reason reason); |
Tejun Heo | 9ecf4866 | 2015-05-22 17:13:54 -0400 | [diff] [blame] | 31 | void wb_start_background_writeback(struct bdi_writeback *wb); |
Tejun Heo | f0054bb | 2015-05-22 17:13:30 -0400 | [diff] [blame] | 32 | void wb_workfn(struct work_struct *work); |
Tejun Heo | f0054bb | 2015-05-22 17:13:30 -0400 | [diff] [blame] | 33 | void wb_wakeup_delayed(struct bdi_writeback *wb); |
Peter Zijlstra | cf0ca9f | 2008-04-30 00:54:32 -0700 | [diff] [blame] | 34 | |
Jens Axboe | 03ba378 | 2009-09-09 09:08:54 +0200 | [diff] [blame] | 35 | extern spinlock_t bdi_lock; |
Jens Axboe | 66f3b8e | 2009-09-02 09:19:46 +0200 | [diff] [blame] | 36 | extern struct list_head bdi_list; |
| 37 | |
Tejun Heo | 839a8e8 | 2013-04-01 19:08:06 -0700 | [diff] [blame] | 38 | extern struct workqueue_struct *bdi_wq; |
| 39 | |
Tejun Heo | d6c10f1 | 2015-05-22 17:13:45 -0400 | [diff] [blame] | 40 | static inline bool wb_has_dirty_io(struct bdi_writeback *wb) |
Jens Axboe | 03ba378 | 2009-09-09 09:08:54 +0200 | [diff] [blame] | 41 | { |
Tejun Heo | d6c10f1 | 2015-05-22 17:13:45 -0400 | [diff] [blame] | 42 | return test_bit(WB_has_dirty_io, &wb->state); |
Jens Axboe | 03ba378 | 2009-09-09 09:08:54 +0200 | [diff] [blame] | 43 | } |
| 44 | |
Tejun Heo | 95a46c6 | 2015-05-22 17:13:47 -0400 | [diff] [blame] | 45 | static inline bool bdi_has_dirty_io(struct backing_dev_info *bdi) |
Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 46 | { |
Tejun Heo | 95a46c6 | 2015-05-22 17:13:47 -0400 | [diff] [blame] | 47 | /* |
| 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 Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 52 | } |
| 53 | |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 54 | static inline void __add_wb_stat(struct bdi_writeback *wb, |
| 55 | enum wb_stat_item item, s64 amount) |
Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 56 | { |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 57 | __percpu_counter_add(&wb->stat[item], amount, WB_STAT_BATCH); |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 58 | } |
| 59 | |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 60 | static inline void __inc_wb_stat(struct bdi_writeback *wb, |
| 61 | enum wb_stat_item item) |
Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 62 | { |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 63 | __add_wb_stat(wb, item, 1); |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 64 | } |
| 65 | |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 66 | 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] | 67 | { |
| 68 | unsigned long flags; |
| 69 | |
| 70 | local_irq_save(flags); |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 71 | __inc_wb_stat(wb, item); |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 72 | local_irq_restore(flags); |
| 73 | } |
| 74 | |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 75 | static inline void __dec_wb_stat(struct bdi_writeback *wb, |
| 76 | enum wb_stat_item item) |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 77 | { |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 78 | __add_wb_stat(wb, item, -1); |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 81 | 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] | 82 | { |
| 83 | unsigned long flags; |
| 84 | |
| 85 | local_irq_save(flags); |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 86 | __dec_wb_stat(wb, item); |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 87 | local_irq_restore(flags); |
| 88 | } |
| 89 | |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 90 | 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] | 91 | { |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 92 | return percpu_counter_read_positive(&wb->stat[item]); |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 93 | } |
| 94 | |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 95 | static inline s64 __wb_stat_sum(struct bdi_writeback *wb, |
| 96 | enum wb_stat_item item) |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 97 | { |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 98 | return percpu_counter_sum_positive(&wb->stat[item]); |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 99 | } |
| 100 | |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 101 | 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] | 102 | { |
| 103 | s64 sum; |
| 104 | unsigned long flags; |
| 105 | |
| 106 | local_irq_save(flags); |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 107 | sum = __wb_stat_sum(wb, item); |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 108 | local_irq_restore(flags); |
| 109 | |
| 110 | return sum; |
| 111 | } |
| 112 | |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 113 | extern void wb_writeout_inc(struct bdi_writeback *wb); |
Miklos Szeredi | dd5656e | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 114 | |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 115 | /* |
| 116 | * maximal error of a stat counter. |
| 117 | */ |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 118 | static inline unsigned long wb_stat_error(struct bdi_writeback *wb) |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 119 | { |
| 120 | #ifdef CONFIG_SMP |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 121 | return nr_cpu_ids * WB_STAT_BATCH; |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 122 | #else |
| 123 | return 1; |
| 124 | #endif |
Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 125 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
Peter Zijlstra | 189d3c4 | 2008-04-30 00:54:35 -0700 | [diff] [blame] | 127 | 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] | 128 | 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] | 129 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | /* |
| 131 | * Flags in backing_dev_info::capability |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 132 | * |
| 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 Patlasov | 5a53748 | 2013-09-11 14:22:46 -0700 | [diff] [blame] | 144 | * BDI_CAP_STRICTLIMIT: Keep number of dirty pages below bdi threshold. |
Tejun Heo | 89e9b9e | 2015-05-22 17:13:36 -0400 | [diff] [blame] | 145 | * |
| 146 | * BDI_CAP_CGROUP_WRITEBACK: Supports cgroup-aware writeback. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | */ |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 148 | #define BDI_CAP_NO_ACCT_DIRTY 0x00000001 |
| 149 | #define BDI_CAP_NO_WRITEBACK 0x00000002 |
Christoph Hellwig | b4caecd | 2015-01-14 10:42:32 +0100 | [diff] [blame] | 150 | #define BDI_CAP_NO_ACCT_WB 0x00000004 |
| 151 | #define BDI_CAP_STABLE_WRITES 0x00000008 |
| 152 | #define BDI_CAP_STRICTLIMIT 0x00000010 |
Tejun Heo | 89e9b9e | 2015-05-22 17:13:36 -0400 | [diff] [blame] | 153 | #define BDI_CAP_CGROUP_WRITEBACK 0x00000020 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 155 | #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 Engel | 5129a46 | 2010-04-25 08:54:42 +0200 | [diff] [blame] | 158 | extern struct backing_dev_info noop_backing_dev_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
Tejun Heo | bc05873 | 2015-05-22 17:13:53 -0400 | [diff] [blame] | 160 | /** |
| 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 | */ |
| 167 | static inline bool writeback_in_progress(struct bdi_writeback *wb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | { |
Tejun Heo | bc05873 | 2015-05-22 17:13:53 -0400 | [diff] [blame] | 169 | return test_bit(WB_writeback_running, &wb->state); |
| 170 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | |
Tejun Heo | a212b10 | 2015-05-22 17:13:33 -0400 | [diff] [blame] | 172 | static 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 Heo | ec8a6f2 | 2015-05-22 17:13:41 -0400 | [diff] [blame] | 187 | static inline int wb_congested(struct bdi_writeback *wb, int cong_bits) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | { |
Tejun Heo | ec8a6f2 | 2015-05-22 17:13:41 -0400 | [diff] [blame] | 189 | struct backing_dev_info *bdi = wb->bdi; |
| 190 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | if (bdi->congested_fn) |
Tejun Heo | ec8a6f2 | 2015-05-22 17:13:41 -0400 | [diff] [blame] | 192 | return bdi->congested_fn(bdi->congested_data, cong_bits); |
| 193 | return wb->congested->state & cong_bits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | } |
| 195 | |
Jens Axboe | 8aa7e84 | 2009-07-09 14:52:32 +0200 | [diff] [blame] | 196 | long congestion_wait(int sync, long timeout); |
Mel Gorman | 0e093d99 | 2010-10-26 14:21:45 -0700 | [diff] [blame] | 197 | long wait_iff_congested(struct zone *zone, int sync, long timeout); |
Wanpeng Li | 3965c9a | 2012-07-31 16:41:52 -0700 | [diff] [blame] | 198 | int pdflush_proc_obsolete(struct ctl_table *table, int write, |
| 199 | void __user *buffer, size_t *lenp, loff_t *ppos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
Darrick J. Wong | 7d311cd | 2013-02-21 16:42:48 -0800 | [diff] [blame] | 201 | static inline bool bdi_cap_stable_pages_required(struct backing_dev_info *bdi) |
| 202 | { |
| 203 | return bdi->capabilities & BDI_CAP_STABLE_WRITES; |
| 204 | } |
| 205 | |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 206 | static inline bool bdi_cap_writeback_dirty(struct backing_dev_info *bdi) |
| 207 | { |
| 208 | return !(bdi->capabilities & BDI_CAP_NO_WRITEBACK); |
| 209 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 211 | static inline bool bdi_cap_account_dirty(struct backing_dev_info *bdi) |
| 212 | { |
| 213 | return !(bdi->capabilities & BDI_CAP_NO_ACCT_DIRTY); |
| 214 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 216 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 223 | static inline bool mapping_cap_writeback_dirty(struct address_space *mapping) |
| 224 | { |
Christoph Hellwig | de1414a | 2015-01-14 10:42:36 +0100 | [diff] [blame] | 225 | return bdi_cap_writeback_dirty(inode_to_bdi(mapping->host)); |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 226 | } |
| 227 | |
| 228 | static inline bool mapping_cap_account_dirty(struct address_space *mapping) |
| 229 | { |
Christoph Hellwig | de1414a | 2015-01-14 10:42:36 +0100 | [diff] [blame] | 230 | return bdi_cap_account_dirty(inode_to_bdi(mapping->host)); |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 231 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Jens Axboe | 03ba378 | 2009-09-09 09:08:54 +0200 | [diff] [blame] | 233 | static inline int bdi_sched_wait(void *word) |
| 234 | { |
| 235 | schedule(); |
| 236 | return 0; |
| 237 | } |
| 238 | |
Tejun Heo | 89e9b9e | 2015-05-22 17:13:36 -0400 | [diff] [blame] | 239 | #ifdef CONFIG_CGROUP_WRITEBACK |
| 240 | |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 241 | struct bdi_writeback_congested * |
| 242 | wb_congested_get_create(struct backing_dev_info *bdi, int blkcg_id, gfp_t gfp); |
| 243 | void wb_congested_put(struct bdi_writeback_congested *congested); |
| 244 | struct bdi_writeback *wb_get_create(struct backing_dev_info *bdi, |
| 245 | struct cgroup_subsys_state *memcg_css, |
| 246 | gfp_t gfp); |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 247 | void wb_memcg_offline(struct mem_cgroup *memcg); |
| 248 | void wb_blkcg_offline(struct blkcg *blkcg); |
Tejun Heo | 703c270 | 2015-05-22 17:13:44 -0400 | [diff] [blame] | 249 | int inode_congested(struct inode *inode, int cong_bits); |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 250 | |
Tejun Heo | 89e9b9e | 2015-05-22 17:13:36 -0400 | [diff] [blame] | 251 | /** |
| 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 Heo | 9badce0 | 2015-09-23 17:07:29 -0400 | [diff] [blame] | 256 | * 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 Heo | 89e9b9e | 2015-05-22 17:13:36 -0400 | [diff] [blame] | 261 | */ |
| 262 | static inline bool inode_cgwb_enabled(struct inode *inode) |
| 263 | { |
| 264 | struct backing_dev_info *bdi = inode_to_bdi(inode); |
| 265 | |
Tejun Heo | 9badce0 | 2015-09-23 17:07:29 -0400 | [diff] [blame] | 266 | return cgroup_on_dfl(mem_cgroup_root_css->cgroup) && |
| 267 | cgroup_on_dfl(blkcg_root_css->cgroup) && |
| 268 | bdi_cap_account_dirty(bdi) && |
Tejun Heo | 89e9b9e | 2015-05-22 17:13:36 -0400 | [diff] [blame] | 269 | (bdi->capabilities & BDI_CAP_CGROUP_WRITEBACK) && |
Tejun Heo | 46b15ca | 2015-06-16 18:48:31 -0400 | [diff] [blame] | 270 | (inode->i_sb->s_iflags & SB_I_CGROUPWB); |
Tejun Heo | 89e9b9e | 2015-05-22 17:13:36 -0400 | [diff] [blame] | 271 | } |
| 272 | |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 273 | /** |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 274 | * 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 | */ |
| 281 | static 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 Heo | c165b3e | 2015-08-18 14:55:29 -0700 | [diff] [blame] | 296 | if (likely(wb && wb->blkcg_css == task_css(current, io_cgrp_id))) |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 297 | 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 | */ |
| 310 | static inline struct bdi_writeback * |
| 311 | wb_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 Heo | aaa2cac | 2015-05-28 14:50:55 -0400 | [diff] [blame] | 332 | * 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 | */ |
| 338 | static inline bool inode_to_wb_is_valid(struct inode *inode) |
| 339 | { |
| 340 | return inode->i_wb; |
| 341 | } |
| 342 | |
| 343 | /** |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 344 | * inode_to_wb - determine the wb of an inode |
| 345 | * @inode: inode of interest |
| 346 | * |
Tejun Heo | aaa2cac | 2015-05-28 14:50:55 -0400 | [diff] [blame] | 347 | * 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 Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 350 | */ |
| 351 | static inline struct bdi_writeback *inode_to_wb(struct inode *inode) |
| 352 | { |
Tejun Heo | aaa2cac | 2015-05-28 14:50:55 -0400 | [diff] [blame] | 353 | #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 Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 359 | return inode->i_wb; |
| 360 | } |
| 361 | |
Tejun Heo | 682aa8e | 2015-05-28 14:50:53 -0400 | [diff] [blame] | 362 | /** |
| 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 | */ |
| 377 | static inline struct bdi_writeback * |
| 378 | unlocked_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 Heo | aaa2cac | 2015-05-28 14:50:55 -0400 | [diff] [blame] | 390 | |
| 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 Heo | 682aa8e | 2015-05-28 14:50:53 -0400 | [diff] [blame] | 396 | } |
| 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 | */ |
| 403 | static 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 Heo | ebe41ab | 2015-05-22 17:13:50 -0400 | [diff] [blame] | 411 | struct wb_iter { |
Tejun Heo | 1ed8d48 | 2015-08-18 14:54:52 -0700 | [diff] [blame] | 412 | int start_memcg_id; |
Tejun Heo | ebe41ab | 2015-05-22 17:13:50 -0400 | [diff] [blame] | 413 | struct radix_tree_iter tree_iter; |
| 414 | void **slot; |
| 415 | }; |
| 416 | |
| 417 | static 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 Heo | 1ed8d48 | 2015-08-18 14:54:52 -0700 | [diff] [blame] | 424 | 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 Heo | ebe41ab | 2015-05-22 17:13:50 -0400 | [diff] [blame] | 427 | } 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 | |
| 438 | static inline struct bdi_writeback *__wb_iter_init(struct wb_iter *iter, |
| 439 | struct backing_dev_info *bdi, |
Tejun Heo | 1ed8d48 | 2015-08-18 14:54:52 -0700 | [diff] [blame] | 440 | int start_memcg_id) |
Tejun Heo | ebe41ab | 2015-05-22 17:13:50 -0400 | [diff] [blame] | 441 | { |
Tejun Heo | 1ed8d48 | 2015-08-18 14:54:52 -0700 | [diff] [blame] | 442 | iter->start_memcg_id = start_memcg_id; |
Tejun Heo | ebe41ab | 2015-05-22 17:13:50 -0400 | [diff] [blame] | 443 | |
Tejun Heo | 1ed8d48 | 2015-08-18 14:54:52 -0700 | [diff] [blame] | 444 | if (start_memcg_id) |
Tejun Heo | ebe41ab | 2015-05-22 17:13:50 -0400 | [diff] [blame] | 445 | return __wb_iter_next(iter, bdi); |
| 446 | else |
| 447 | return &bdi->wb; |
| 448 | } |
| 449 | |
| 450 | /** |
Tejun Heo | 1ed8d48 | 2015-08-18 14:54:52 -0700 | [diff] [blame] | 451 | * bdi_for_each_wb - walk all wb's of a bdi in ascending memcg ID order |
Tejun Heo | ebe41ab | 2015-05-22 17:13:50 -0400 | [diff] [blame] | 452 | * @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 Heo | 1ed8d48 | 2015-08-18 14:54:52 -0700 | [diff] [blame] | 455 | * @start_memcg_id: memcg ID to start iteration from |
Tejun Heo | ebe41ab | 2015-05-22 17:13:50 -0400 | [diff] [blame] | 456 | * |
| 457 | * Iterate @wb_cur through the wb's (bdi_writeback's) of @bdi in ascending |
Tejun Heo | 1ed8d48 | 2015-08-18 14:54:52 -0700 | [diff] [blame] | 458 | * memcg ID order starting from @start_memcg_id. @iter is struct wb_iter |
Tejun Heo | ebe41ab | 2015-05-22 17:13:50 -0400 | [diff] [blame] | 459 | * to be used as temp storage during iteration. rcu_read_lock() must be |
| 460 | * held throughout iteration. |
| 461 | */ |
Tejun Heo | 1ed8d48 | 2015-08-18 14:54:52 -0700 | [diff] [blame] | 462 | #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 Heo | ebe41ab | 2015-05-22 17:13:50 -0400 | [diff] [blame] | 464 | (wb_cur); (wb_cur) = __wb_iter_next(iter, bdi)) |
| 465 | |
Tejun Heo | 89e9b9e | 2015-05-22 17:13:36 -0400 | [diff] [blame] | 466 | #else /* CONFIG_CGROUP_WRITEBACK */ |
| 467 | |
| 468 | static inline bool inode_cgwb_enabled(struct inode *inode) |
| 469 | { |
| 470 | return false; |
| 471 | } |
| 472 | |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 473 | static inline struct bdi_writeback_congested * |
| 474 | wb_congested_get_create(struct backing_dev_info *bdi, int blkcg_id, gfp_t gfp) |
| 475 | { |
Tejun Heo | a13f35e | 2015-07-02 08:44:34 -0600 | [diff] [blame] | 476 | atomic_inc(&bdi->wb_congested->refcnt); |
| 477 | return bdi->wb_congested; |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 478 | } |
| 479 | |
| 480 | static inline void wb_congested_put(struct bdi_writeback_congested *congested) |
| 481 | { |
Tejun Heo | a13f35e | 2015-07-02 08:44:34 -0600 | [diff] [blame] | 482 | if (atomic_dec_and_test(&congested->refcnt)) |
| 483 | kfree(congested); |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 484 | } |
| 485 | |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 486 | static inline struct bdi_writeback *wb_find_current(struct backing_dev_info *bdi) |
| 487 | { |
| 488 | return &bdi->wb; |
| 489 | } |
| 490 | |
| 491 | static inline struct bdi_writeback * |
| 492 | wb_get_create_current(struct backing_dev_info *bdi, gfp_t gfp) |
| 493 | { |
| 494 | return &bdi->wb; |
| 495 | } |
| 496 | |
Tejun Heo | aaa2cac | 2015-05-28 14:50:55 -0400 | [diff] [blame] | 497 | static inline bool inode_to_wb_is_valid(struct inode *inode) |
| 498 | { |
| 499 | return true; |
| 500 | } |
| 501 | |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 502 | static inline struct bdi_writeback *inode_to_wb(struct inode *inode) |
| 503 | { |
| 504 | return &inode_to_bdi(inode)->wb; |
| 505 | } |
| 506 | |
Tejun Heo | 682aa8e | 2015-05-28 14:50:53 -0400 | [diff] [blame] | 507 | static inline struct bdi_writeback * |
| 508 | unlocked_inode_to_wb_begin(struct inode *inode, bool *lockedp) |
| 509 | { |
| 510 | return inode_to_wb(inode); |
| 511 | } |
| 512 | |
| 513 | static inline void unlocked_inode_to_wb_end(struct inode *inode, bool locked) |
| 514 | { |
| 515 | } |
| 516 | |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 517 | static inline void wb_memcg_offline(struct mem_cgroup *memcg) |
| 518 | { |
| 519 | } |
| 520 | |
| 521 | static inline void wb_blkcg_offline(struct blkcg *blkcg) |
| 522 | { |
| 523 | } |
| 524 | |
Tejun Heo | ebe41ab | 2015-05-22 17:13:50 -0400 | [diff] [blame] | 525 | struct 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 Heo | 703c270 | 2015-05-22 17:13:44 -0400 | [diff] [blame] | 533 | static 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 Heo | 89e9b9e | 2015-05-22 17:13:36 -0400 | [diff] [blame] | 538 | #endif /* CONFIG_CGROUP_WRITEBACK */ |
| 539 | |
Tejun Heo | 703c270 | 2015-05-22 17:13:44 -0400 | [diff] [blame] | 540 | static inline int inode_read_congested(struct inode *inode) |
| 541 | { |
| 542 | return inode_congested(inode, 1 << WB_sync_congested); |
| 543 | } |
| 544 | |
| 545 | static inline int inode_write_congested(struct inode *inode) |
| 546 | { |
| 547 | return inode_congested(inode, 1 << WB_async_congested); |
| 548 | } |
| 549 | |
| 550 | static 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 Heo | ec8a6f2 | 2015-05-22 17:13:41 -0400 | [diff] [blame] | 556 | static inline int bdi_congested(struct backing_dev_info *bdi, int cong_bits) |
| 557 | { |
| 558 | return wb_congested(&bdi->wb, cong_bits); |
| 559 | } |
| 560 | |
| 561 | static inline int bdi_read_congested(struct backing_dev_info *bdi) |
| 562 | { |
| 563 | return bdi_congested(bdi, 1 << WB_sync_congested); |
| 564 | } |
| 565 | |
| 566 | static inline int bdi_write_congested(struct backing_dev_info *bdi) |
| 567 | { |
| 568 | return bdi_congested(bdi, 1 << WB_async_congested); |
| 569 | } |
| 570 | |
| 571 | static 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 Heo | 89e9b9e | 2015-05-22 17:13:36 -0400 | [diff] [blame] | 577 | #endif /* _LINUX_BACKING_DEV_H */ |