]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/io.h
Update bcachefs sources to d7f6da1d60 bcachefs: fix missing include
[bcachefs-tools-debian] / libbcachefs / io.h
1 #ifndef _BCACHEFS_IO_H
2 #define _BCACHEFS_IO_H
3
4 #include "checksum.h"
5 #include "io_types.h"
6
7 #define to_wbio(_bio)                   \
8         container_of((_bio), struct bch_write_bio, bio)
9
10 #define to_rbio(_bio)                   \
11         container_of((_bio), struct bch_read_bio, bio)
12
13 void bch2_bio_free_pages_pool(struct bch_fs *, struct bio *);
14 void bch2_bio_alloc_pages_pool(struct bch_fs *, struct bio *, size_t);
15 void bch2_bio_alloc_more_pages_pool(struct bch_fs *, struct bio *, size_t);
16
17 void bch2_latency_acct(struct bch_dev *, u64, int);
18
19 void bch2_submit_wbio_replicas(struct bch_write_bio *, struct bch_fs *,
20                                enum bch_data_type, const struct bkey_i *);
21
22 #define BLK_STS_REMOVED         ((__force blk_status_t)128)
23
24 enum bch_write_flags {
25         BCH_WRITE_ALLOC_NOWAIT          = (1 << 0),
26         BCH_WRITE_CACHED                = (1 << 1),
27         BCH_WRITE_FLUSH                 = (1 << 2),
28         BCH_WRITE_DATA_ENCODED          = (1 << 3),
29         BCH_WRITE_PAGES_STABLE          = (1 << 4),
30         BCH_WRITE_PAGES_OWNED           = (1 << 5),
31         BCH_WRITE_ONLY_SPECIFIED_DEVS   = (1 << 6),
32         BCH_WRITE_NOPUT_RESERVATION     = (1 << 7),
33         BCH_WRITE_NOMARK_REPLICAS       = (1 << 8),
34
35         /* Internal: */
36         BCH_WRITE_JOURNAL_SEQ_PTR       = (1 << 9),
37 };
38
39 static inline u64 *op_journal_seq(struct bch_write_op *op)
40 {
41         return (op->flags & BCH_WRITE_JOURNAL_SEQ_PTR)
42                 ? op->journal_seq_p : &op->journal_seq;
43 }
44
45 static inline void op_journal_seq_set(struct bch_write_op *op, u64 *journal_seq)
46 {
47         op->journal_seq_p = journal_seq;
48         op->flags |= BCH_WRITE_JOURNAL_SEQ_PTR;
49 }
50
51 static inline struct workqueue_struct *index_update_wq(struct bch_write_op *op)
52 {
53         return op->alloc_reserve == RESERVE_MOVINGGC
54                 ? op->c->copygc_wq
55                 : op->c->wq;
56 }
57
58 int bch2_write_index_default(struct bch_write_op *);
59
60 static inline void bch2_write_op_init(struct bch_write_op *op, struct bch_fs *c,
61                                       struct bch_io_opts opts)
62 {
63         op->c                   = c;
64         op->io_wq               = index_update_wq(op);
65         op->flags               = 0;
66         op->written             = 0;
67         op->error               = 0;
68         op->csum_type           = bch2_data_checksum_type(c, opts.data_checksum);
69         op->compression_type    = bch2_compression_opt_to_type[opts.compression];
70         op->nr_replicas         = 0;
71         op->nr_replicas_required = c->opts.data_replicas_required;
72         op->alloc_reserve       = RESERVE_NONE;
73         op->open_buckets.nr     = 0;
74         op->devs_have.nr        = 0;
75         op->target              = 0;
76         op->opts                = opts;
77         op->pos                 = POS_MAX;
78         op->version             = ZERO_VERSION;
79         op->write_point         = (struct write_point_specifier) { 0 };
80         op->res                 = (struct disk_reservation) { 0 };
81         op->journal_seq         = 0;
82         op->index_update_fn     = bch2_write_index_default;
83 }
84
85 void bch2_write(struct closure *);
86
87 static inline struct bch_write_bio *wbio_init(struct bio *bio)
88 {
89         struct bch_write_bio *wbio = to_wbio(bio);
90
91         memset(wbio, 0, offsetof(struct bch_write_bio, bio));
92         return wbio;
93 }
94
95 struct bch_devs_mask;
96 struct cache_promote_op;
97 struct extent_pick_ptr;
98
99 int __bch2_read_extent(struct bch_fs *, struct bch_read_bio *, struct bvec_iter,
100                        struct bkey_s_c, struct bch_devs_mask *, unsigned);
101 void bch2_read(struct bch_fs *, struct bch_read_bio *, u64);
102
103 enum bch_read_flags {
104         BCH_READ_RETRY_IF_STALE         = 1 << 0,
105         BCH_READ_MAY_PROMOTE            = 1 << 1,
106         BCH_READ_USER_MAPPED            = 1 << 2,
107         BCH_READ_NODECODE               = 1 << 3,
108         BCH_READ_LAST_FRAGMENT          = 1 << 4,
109
110         /* internal: */
111         BCH_READ_MUST_BOUNCE            = 1 << 5,
112         BCH_READ_MUST_CLONE             = 1 << 6,
113         BCH_READ_IN_RETRY               = 1 << 7,
114 };
115
116 static inline void bch2_read_extent(struct bch_fs *c,
117                                     struct bch_read_bio *rbio,
118                                     struct bkey_s_c k,
119                                     unsigned flags)
120 {
121         __bch2_read_extent(c, rbio, rbio->bio.bi_iter, k, NULL, flags);
122 }
123
124 static inline struct bch_read_bio *rbio_init(struct bio *bio,
125                                              struct bch_io_opts opts)
126 {
127         struct bch_read_bio *rbio = to_rbio(bio);
128
129         rbio->_state    = 0;
130         rbio->promote   = NULL;
131         rbio->opts      = opts;
132         return rbio;
133 }
134
135 void bch2_fs_io_exit(struct bch_fs *);
136 int bch2_fs_io_init(struct bch_fs *);
137
138 #endif /* _BCACHEFS_IO_H */