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 | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 11 | #include <linux/percpu_counter.h> |
| 12 | #include <linux/log2.h> |
Peter Zijlstra | 04fbfdc | 2007-10-16 23:25:50 -0700 | [diff] [blame] | 13 | #include <linux/proportions.h> |
Peter Zijlstra | cf0ca9f | 2008-04-30 00:54:32 -0700 | [diff] [blame] | 14 | #include <linux/kernel.h> |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 15 | #include <linux/fs.h> |
Jens Axboe | 03ba378 | 2009-09-09 09:08:54 +0200 | [diff] [blame] | 16 | #include <linux/sched.h> |
| 17 | #include <linux/writeback.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <asm/atomic.h> |
| 19 | |
Andrew Morton | 3fcfab1 | 2006-10-19 23:28:16 -0700 | [diff] [blame] | 20 | struct page; |
Peter Zijlstra | cf0ca9f | 2008-04-30 00:54:32 -0700 | [diff] [blame] | 21 | struct device; |
Miklos Szeredi | 76f1418 | 2008-04-30 00:54:36 -0700 | [diff] [blame] | 22 | struct dentry; |
Andrew Morton | 3fcfab1 | 2006-10-19 23:28:16 -0700 | [diff] [blame] | 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | /* |
| 25 | * Bits in backing_dev_info.state |
| 26 | */ |
| 27 | enum bdi_state { |
Jens Axboe | 03ba378 | 2009-09-09 09:08:54 +0200 | [diff] [blame] | 28 | BDI_pending, /* On its way to being activated */ |
| 29 | BDI_wb_alloc, /* Default embedded wb allocated */ |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 30 | BDI_async_congested, /* The async (write) queue is getting full */ |
| 31 | BDI_sync_congested, /* The sync queue is getting full */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | BDI_unused, /* Available bits start here */ |
| 33 | }; |
| 34 | |
| 35 | typedef int (congested_fn)(void *, int); |
| 36 | |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 37 | enum bdi_stat_item { |
Peter Zijlstra | c9e51e4 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 38 | BDI_RECLAIMABLE, |
Peter Zijlstra | 69cb51d | 2007-10-16 23:25:48 -0700 | [diff] [blame] | 39 | BDI_WRITEBACK, |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 40 | NR_BDI_STAT_ITEMS |
| 41 | }; |
| 42 | |
| 43 | #define BDI_STAT_BATCH (8*(1+ilog2(nr_cpu_ids))) |
| 44 | |
Jens Axboe | 03ba378 | 2009-09-09 09:08:54 +0200 | [diff] [blame] | 45 | struct bdi_writeback { |
| 46 | struct list_head list; /* hangs off the bdi */ |
| 47 | |
| 48 | struct backing_dev_info *bdi; /* our parent bdi */ |
| 49 | unsigned int nr; |
| 50 | |
| 51 | unsigned long last_old_flush; /* last old data flush */ |
| 52 | |
| 53 | struct task_struct *task; /* writeback task */ |
| 54 | struct list_head b_dirty; /* dirty inodes */ |
| 55 | struct list_head b_io; /* parked for writeback */ |
| 56 | struct list_head b_more_io; /* parked for more writeback */ |
| 57 | }; |
| 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | struct backing_dev_info { |
Jens Axboe | 66f3b8e | 2009-09-02 09:19:46 +0200 | [diff] [blame] | 60 | struct list_head bdi_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | unsigned long ra_pages; /* max readahead in PAGE_CACHE_SIZE units */ |
| 62 | unsigned long state; /* Always use atomic bitops on this */ |
| 63 | unsigned int capabilities; /* Device capabilities */ |
| 64 | congested_fn *congested_fn; /* Function pointer if device is md/dm */ |
| 65 | void *congested_data; /* Pointer to aux data for congested func */ |
| 66 | void (*unplug_io_fn)(struct backing_dev_info *, struct page *); |
| 67 | void *unplug_io_data; |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 68 | |
| 69 | struct percpu_counter bdi_stat[NR_BDI_STAT_ITEMS]; |
Peter Zijlstra | 04fbfdc | 2007-10-16 23:25:50 -0700 | [diff] [blame] | 70 | |
| 71 | struct prop_local_percpu completions; |
| 72 | int dirty_exceeded; |
Peter Zijlstra | cf0ca9f | 2008-04-30 00:54:32 -0700 | [diff] [blame] | 73 | |
Peter Zijlstra | 189d3c4 | 2008-04-30 00:54:35 -0700 | [diff] [blame] | 74 | unsigned int min_ratio; |
Peter Zijlstra | a42dde0 | 2008-04-30 00:54:36 -0700 | [diff] [blame] | 75 | unsigned int max_ratio, max_prop_frac; |
Peter Zijlstra | 189d3c4 | 2008-04-30 00:54:35 -0700 | [diff] [blame] | 76 | |
Jens Axboe | 03ba378 | 2009-09-09 09:08:54 +0200 | [diff] [blame] | 77 | struct bdi_writeback wb; /* default writeback info for this bdi */ |
| 78 | spinlock_t wb_lock; /* protects update side of wb_list */ |
| 79 | struct list_head wb_list; /* the flusher threads hanging off this bdi */ |
| 80 | unsigned long wb_mask; /* bitmask of registered tasks */ |
| 81 | unsigned int wb_cnt; /* number of registered tasks */ |
Miklos Szeredi | 76f1418 | 2008-04-30 00:54:36 -0700 | [diff] [blame] | 82 | |
Jens Axboe | 03ba378 | 2009-09-09 09:08:54 +0200 | [diff] [blame] | 83 | struct list_head work_list; |
| 84 | |
| 85 | struct device *dev; |
Jens Axboe | 66f3b8e | 2009-09-02 09:19:46 +0200 | [diff] [blame] | 86 | |
Miklos Szeredi | 76f1418 | 2008-04-30 00:54:36 -0700 | [diff] [blame] | 87 | #ifdef CONFIG_DEBUG_FS |
| 88 | struct dentry *debug_dir; |
| 89 | struct dentry *debug_stats; |
| 90 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | }; |
| 92 | |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 93 | int bdi_init(struct backing_dev_info *bdi); |
| 94 | void bdi_destroy(struct backing_dev_info *bdi); |
| 95 | |
Peter Zijlstra | cf0ca9f | 2008-04-30 00:54:32 -0700 | [diff] [blame] | 96 | int bdi_register(struct backing_dev_info *bdi, struct device *parent, |
| 97 | const char *fmt, ...); |
| 98 | int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev); |
| 99 | void bdi_unregister(struct backing_dev_info *bdi); |
Jens Axboe | 03ba378 | 2009-09-09 09:08:54 +0200 | [diff] [blame] | 100 | void bdi_start_writeback(struct writeback_control *wbc); |
| 101 | int bdi_writeback_task(struct bdi_writeback *wb); |
| 102 | int bdi_has_dirty_io(struct backing_dev_info *bdi); |
Peter Zijlstra | cf0ca9f | 2008-04-30 00:54:32 -0700 | [diff] [blame] | 103 | |
Jens Axboe | 03ba378 | 2009-09-09 09:08:54 +0200 | [diff] [blame] | 104 | extern spinlock_t bdi_lock; |
Jens Axboe | 66f3b8e | 2009-09-02 09:19:46 +0200 | [diff] [blame] | 105 | extern struct list_head bdi_list; |
| 106 | |
Jens Axboe | 03ba378 | 2009-09-09 09:08:54 +0200 | [diff] [blame] | 107 | static inline int wb_has_dirty_io(struct bdi_writeback *wb) |
| 108 | { |
| 109 | return !list_empty(&wb->b_dirty) || |
| 110 | !list_empty(&wb->b_io) || |
| 111 | !list_empty(&wb->b_more_io); |
| 112 | } |
| 113 | |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 114 | static inline void __add_bdi_stat(struct backing_dev_info *bdi, |
| 115 | enum bdi_stat_item item, s64 amount) |
Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 116 | { |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 117 | __percpu_counter_add(&bdi->bdi_stat[item], amount, BDI_STAT_BATCH); |
Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 118 | } |
| 119 | |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 120 | static inline void __inc_bdi_stat(struct backing_dev_info *bdi, |
| 121 | enum bdi_stat_item item) |
Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 122 | { |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 123 | __add_bdi_stat(bdi, item, 1); |
| 124 | } |
| 125 | |
| 126 | static inline void inc_bdi_stat(struct backing_dev_info *bdi, |
| 127 | enum bdi_stat_item item) |
| 128 | { |
| 129 | unsigned long flags; |
| 130 | |
| 131 | local_irq_save(flags); |
| 132 | __inc_bdi_stat(bdi, item); |
| 133 | local_irq_restore(flags); |
| 134 | } |
| 135 | |
| 136 | static inline void __dec_bdi_stat(struct backing_dev_info *bdi, |
| 137 | enum bdi_stat_item item) |
| 138 | { |
| 139 | __add_bdi_stat(bdi, item, -1); |
| 140 | } |
| 141 | |
| 142 | static inline void dec_bdi_stat(struct backing_dev_info *bdi, |
| 143 | enum bdi_stat_item item) |
| 144 | { |
| 145 | unsigned long flags; |
| 146 | |
| 147 | local_irq_save(flags); |
| 148 | __dec_bdi_stat(bdi, item); |
| 149 | local_irq_restore(flags); |
| 150 | } |
| 151 | |
| 152 | static inline s64 bdi_stat(struct backing_dev_info *bdi, |
| 153 | enum bdi_stat_item item) |
| 154 | { |
| 155 | return percpu_counter_read_positive(&bdi->bdi_stat[item]); |
| 156 | } |
| 157 | |
| 158 | static inline s64 __bdi_stat_sum(struct backing_dev_info *bdi, |
| 159 | enum bdi_stat_item item) |
| 160 | { |
| 161 | return percpu_counter_sum_positive(&bdi->bdi_stat[item]); |
| 162 | } |
| 163 | |
| 164 | static inline s64 bdi_stat_sum(struct backing_dev_info *bdi, |
| 165 | enum bdi_stat_item item) |
| 166 | { |
| 167 | s64 sum; |
| 168 | unsigned long flags; |
| 169 | |
| 170 | local_irq_save(flags); |
| 171 | sum = __bdi_stat_sum(bdi, item); |
| 172 | local_irq_restore(flags); |
| 173 | |
| 174 | return sum; |
| 175 | } |
| 176 | |
Miklos Szeredi | dd5656e | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 177 | extern void bdi_writeout_inc(struct backing_dev_info *bdi); |
| 178 | |
Peter Zijlstra | b2e8fb6 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 179 | /* |
| 180 | * maximal error of a stat counter. |
| 181 | */ |
| 182 | static inline unsigned long bdi_stat_error(struct backing_dev_info *bdi) |
| 183 | { |
| 184 | #ifdef CONFIG_SMP |
| 185 | return nr_cpu_ids * BDI_STAT_BATCH; |
| 186 | #else |
| 187 | return 1; |
| 188 | #endif |
Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 189 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | |
Peter Zijlstra | 189d3c4 | 2008-04-30 00:54:35 -0700 | [diff] [blame] | 191 | 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] | 192 | 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] | 193 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | /* |
| 195 | * Flags in backing_dev_info::capability |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 196 | * |
| 197 | * The first three flags control whether dirty pages will contribute to the |
| 198 | * VM's accounting and whether writepages() should be called for dirty pages |
| 199 | * (something that would not, for example, be appropriate for ramfs) |
| 200 | * |
| 201 | * WARNING: these flags are closely related and should not normally be |
| 202 | * used separately. The BDI_CAP_NO_ACCT_AND_WRITEBACK combines these |
| 203 | * three flags into a single convenience macro. |
| 204 | * |
| 205 | * BDI_CAP_NO_ACCT_DIRTY: Dirty pages shouldn't contribute to accounting |
| 206 | * BDI_CAP_NO_WRITEBACK: Don't write pages back |
| 207 | * BDI_CAP_NO_ACCT_WB: Don't automatically account writeback pages |
| 208 | * |
| 209 | * These flags let !MMU mmap() govern direct device mapping vs immediate |
| 210 | * copying more easily for MAP_PRIVATE, especially for ROM filesystems. |
| 211 | * |
| 212 | * BDI_CAP_MAP_COPY: Copy can be mapped (MAP_PRIVATE) |
| 213 | * BDI_CAP_MAP_DIRECT: Can be mapped directly (MAP_SHARED) |
| 214 | * BDI_CAP_READ_MAP: Can be mapped for reading |
| 215 | * BDI_CAP_WRITE_MAP: Can be mapped for writing |
| 216 | * BDI_CAP_EXEC_MAP: Can be mapped for execution |
Rik van Riel | 4f98a2f | 2008-10-18 20:26:32 -0700 | [diff] [blame] | 217 | * |
| 218 | * BDI_CAP_SWAP_BACKED: Count shmem/tmpfs objects as swap-backed. |
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 | #define BDI_CAP_NO_ACCT_DIRTY 0x00000001 |
| 221 | #define BDI_CAP_NO_WRITEBACK 0x00000002 |
| 222 | #define BDI_CAP_MAP_COPY 0x00000004 |
| 223 | #define BDI_CAP_MAP_DIRECT 0x00000008 |
| 224 | #define BDI_CAP_READ_MAP 0x00000010 |
| 225 | #define BDI_CAP_WRITE_MAP 0x00000020 |
| 226 | #define BDI_CAP_EXEC_MAP 0x00000040 |
| 227 | #define BDI_CAP_NO_ACCT_WB 0x00000080 |
Rik van Riel | 4f98a2f | 2008-10-18 20:26:32 -0700 | [diff] [blame] | 228 | #define BDI_CAP_SWAP_BACKED 0x00000100 |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 229 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | #define BDI_CAP_VMFLAGS \ |
| 231 | (BDI_CAP_READ_MAP | BDI_CAP_WRITE_MAP | BDI_CAP_EXEC_MAP) |
| 232 | |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 233 | #define BDI_CAP_NO_ACCT_AND_WRITEBACK \ |
| 234 | (BDI_CAP_NO_WRITEBACK | BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_ACCT_WB) |
| 235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | #if defined(VM_MAYREAD) && \ |
| 237 | (BDI_CAP_READ_MAP != VM_MAYREAD || \ |
| 238 | BDI_CAP_WRITE_MAP != VM_MAYWRITE || \ |
| 239 | BDI_CAP_EXEC_MAP != VM_MAYEXEC) |
| 240 | #error please change backing_dev_info::capabilities flags |
| 241 | #endif |
| 242 | |
| 243 | extern struct backing_dev_info default_backing_dev_info; |
| 244 | void default_unplug_io_fn(struct backing_dev_info *bdi, struct page *page); |
| 245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | int writeback_in_progress(struct backing_dev_info *bdi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
| 248 | static inline int bdi_congested(struct backing_dev_info *bdi, int bdi_bits) |
| 249 | { |
| 250 | if (bdi->congested_fn) |
| 251 | return bdi->congested_fn(bdi->congested_data, bdi_bits); |
| 252 | return (bdi->state & bdi_bits); |
| 253 | } |
| 254 | |
| 255 | static inline int bdi_read_congested(struct backing_dev_info *bdi) |
| 256 | { |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 257 | return bdi_congested(bdi, 1 << BDI_sync_congested); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | static inline int bdi_write_congested(struct backing_dev_info *bdi) |
| 261 | { |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 262 | return bdi_congested(bdi, 1 << BDI_async_congested); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | static inline int bdi_rw_congested(struct backing_dev_info *bdi) |
| 266 | { |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 267 | return bdi_congested(bdi, (1 << BDI_sync_congested) | |
| 268 | (1 << BDI_async_congested)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | } |
| 270 | |
Trond Myklebust | 373c0a7e | 2009-07-11 10:06:54 -0400 | [diff] [blame] | 271 | enum { |
| 272 | BLK_RW_ASYNC = 0, |
| 273 | BLK_RW_SYNC = 1, |
| 274 | }; |
| 275 | |
Jens Axboe | 8aa7e84 | 2009-07-09 14:52:32 +0200 | [diff] [blame] | 276 | void clear_bdi_congested(struct backing_dev_info *bdi, int sync); |
| 277 | void set_bdi_congested(struct backing_dev_info *bdi, int sync); |
| 278 | long congestion_wait(int sync, long timeout); |
Andrew Morton | 3fcfab1 | 2006-10-19 23:28:16 -0700 | [diff] [blame] | 279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 281 | static inline bool bdi_cap_writeback_dirty(struct backing_dev_info *bdi) |
| 282 | { |
| 283 | return !(bdi->capabilities & BDI_CAP_NO_WRITEBACK); |
| 284 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 286 | static inline bool bdi_cap_account_dirty(struct backing_dev_info *bdi) |
| 287 | { |
| 288 | return !(bdi->capabilities & BDI_CAP_NO_ACCT_DIRTY); |
| 289 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 291 | static inline bool bdi_cap_account_writeback(struct backing_dev_info *bdi) |
| 292 | { |
| 293 | /* Paranoia: BDI_CAP_NO_WRITEBACK implies BDI_CAP_NO_ACCT_WB */ |
| 294 | return !(bdi->capabilities & (BDI_CAP_NO_ACCT_WB | |
| 295 | BDI_CAP_NO_WRITEBACK)); |
| 296 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | |
Rik van Riel | 4f98a2f | 2008-10-18 20:26:32 -0700 | [diff] [blame] | 298 | static inline bool bdi_cap_swap_backed(struct backing_dev_info *bdi) |
| 299 | { |
| 300 | return bdi->capabilities & BDI_CAP_SWAP_BACKED; |
| 301 | } |
| 302 | |
Jens Axboe | 03ba378 | 2009-09-09 09:08:54 +0200 | [diff] [blame] | 303 | static inline bool bdi_cap_flush_forker(struct backing_dev_info *bdi) |
| 304 | { |
| 305 | return bdi == &default_backing_dev_info; |
| 306 | } |
| 307 | |
Miklos Szeredi | e4ad08f | 2008-04-30 00:54:37 -0700 | [diff] [blame] | 308 | static inline bool mapping_cap_writeback_dirty(struct address_space *mapping) |
| 309 | { |
| 310 | return bdi_cap_writeback_dirty(mapping->backing_dev_info); |
| 311 | } |
| 312 | |
| 313 | static inline bool mapping_cap_account_dirty(struct address_space *mapping) |
| 314 | { |
| 315 | return bdi_cap_account_dirty(mapping->backing_dev_info); |
| 316 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | |
Rik van Riel | 4f98a2f | 2008-10-18 20:26:32 -0700 | [diff] [blame] | 318 | static inline bool mapping_cap_swap_backed(struct address_space *mapping) |
| 319 | { |
| 320 | return bdi_cap_swap_backed(mapping->backing_dev_info); |
| 321 | } |
| 322 | |
Jens Axboe | 03ba378 | 2009-09-09 09:08:54 +0200 | [diff] [blame] | 323 | static inline int bdi_sched_wait(void *word) |
| 324 | { |
| 325 | schedule(); |
| 326 | return 0; |
| 327 | } |
| 328 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | #endif /* _LINUX_BACKING_DEV_H */ |