Linux 4.19.133
[linux/fpc-iii.git] / drivers / md / bcache / writeback.h
blobe75dc33339f6f64d7786183ee580f446365e5f92
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHE_WRITEBACK_H
3 #define _BCACHE_WRITEBACK_H
5 #define CUTOFF_WRITEBACK 40
6 #define CUTOFF_WRITEBACK_SYNC 70
8 #define MAX_WRITEBACKS_IN_PASS 5
9 #define MAX_WRITESIZE_IN_PASS 5000 /* *512b */
11 #define WRITEBACK_RATE_UPDATE_SECS_MAX 60
12 #define WRITEBACK_RATE_UPDATE_SECS_DEFAULT 5
15 * 14 (16384ths) is chosen here as something that each backing device
16 * should be a reasonable fraction of the share, and not to blow up
17 * until individual backing devices are a petabyte.
19 #define WRITEBACK_SHARE_SHIFT 14
21 static inline uint64_t bcache_dev_sectors_dirty(struct bcache_device *d)
23 uint64_t i, ret = 0;
25 for (i = 0; i < d->nr_stripes; i++)
26 ret += atomic_read(d->stripe_sectors_dirty + i);
28 return ret;
31 static inline unsigned int offset_to_stripe(struct bcache_device *d,
32 uint64_t offset)
34 do_div(offset, d->stripe_size);
35 return offset;
38 static inline bool bcache_dev_stripe_dirty(struct cached_dev *dc,
39 uint64_t offset,
40 unsigned int nr_sectors)
42 unsigned int stripe = offset_to_stripe(&dc->disk, offset);
44 while (1) {
45 if (atomic_read(dc->disk.stripe_sectors_dirty + stripe))
46 return true;
48 if (nr_sectors <= dc->disk.stripe_size)
49 return false;
51 nr_sectors -= dc->disk.stripe_size;
52 stripe++;
56 static inline bool should_writeback(struct cached_dev *dc, struct bio *bio,
57 unsigned int cache_mode, bool would_skip)
59 unsigned int in_use = dc->disk.c->gc_stats.in_use;
61 if (cache_mode != CACHE_MODE_WRITEBACK ||
62 test_bit(BCACHE_DEV_DETACHING, &dc->disk.flags) ||
63 in_use > CUTOFF_WRITEBACK_SYNC)
64 return false;
66 if (bio_op(bio) == REQ_OP_DISCARD)
67 return false;
69 if (dc->partial_stripes_expensive &&
70 bcache_dev_stripe_dirty(dc, bio->bi_iter.bi_sector,
71 bio_sectors(bio)))
72 return true;
74 if (would_skip)
75 return false;
77 return (op_is_sync(bio->bi_opf) ||
78 bio->bi_opf & (REQ_META|REQ_PRIO) ||
79 in_use <= CUTOFF_WRITEBACK);
82 static inline void bch_writeback_queue(struct cached_dev *dc)
84 if (!IS_ERR_OR_NULL(dc->writeback_thread))
85 wake_up_process(dc->writeback_thread);
88 static inline void bch_writeback_add(struct cached_dev *dc)
90 if (!atomic_read(&dc->has_dirty) &&
91 !atomic_xchg(&dc->has_dirty, 1)) {
92 if (BDEV_STATE(&dc->sb) != BDEV_STATE_DIRTY) {
93 SET_BDEV_STATE(&dc->sb, BDEV_STATE_DIRTY);
94 /* XXX: should do this synchronously */
95 bch_write_bdev_super(dc, NULL);
98 bch_writeback_queue(dc);
102 void bcache_dev_sectors_dirty_add(struct cache_set *c, unsigned int inode,
103 uint64_t offset, int nr_sectors);
105 void bch_sectors_dirty_init(struct bcache_device *d);
106 void bch_cached_dev_writeback_init(struct cached_dev *dc);
107 int bch_cached_dev_writeback_start(struct cached_dev *dc);
109 #endif