]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/io_types.h
b23727d212b9d9353a0f9bc3531c9508d0c29351
[bcachefs-tools-debian] / libbcachefs / io_types.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_IO_TYPES_H
3 #define _BCACHEFS_IO_TYPES_H
4
5 #include "alloc_types.h"
6 #include "btree_types.h"
7 #include "buckets_types.h"
8 #include "extents_types.h"
9 #include "keylist_types.h"
10 #include "opts.h"
11 #include "super_types.h"
12
13 #include <linux/llist.h>
14 #include <linux/workqueue.h>
15
16 struct bch_read_bio {
17         struct bch_fs           *c;
18         u64                     start_time;
19         u64                     submit_time;
20
21         /*
22          * Reads will often have to be split, and if the extent being read from
23          * was checksummed or compressed we'll also have to allocate bounce
24          * buffers and copy the data back into the original bio.
25          *
26          * If we didn't have to split, we have to save and restore the original
27          * bi_end_io - @split below indicates which:
28          */
29         union {
30         struct bch_read_bio     *parent;
31         bio_end_io_t            *end_io;
32         };
33
34         /*
35          * Saved copy of bio->bi_iter, from submission time - allows us to
36          * resubmit on IO error, and also to copy data back to the original bio
37          * when we're bouncing:
38          */
39         struct bvec_iter        bvec_iter;
40
41         unsigned                offset_into_extent;
42
43         u16                     flags;
44         union {
45         struct {
46         u16                     bounce:1,
47                                 split:1,
48                                 kmalloc:1,
49                                 have_ioref:1,
50                                 narrow_crcs:1,
51                                 hole:1,
52                                 retry:2,
53                                 context:2;
54         };
55         u16                     _state;
56         };
57
58         struct bch_devs_list    devs_have;
59
60         struct extent_ptr_decoded pick;
61         /* start pos of data we read (may not be pos of data we want) */
62         struct bpos             pos;
63         struct bversion         version;
64
65         struct promote_op       *promote;
66
67         struct bch_io_opts      opts;
68
69         struct work_struct      work;
70
71         struct bio              bio;
72 };
73
74 struct bch_write_bio {
75         struct bch_fs           *c;
76         struct bch_write_bio    *parent;
77
78         u64                     submit_time;
79
80         struct bch_devs_list    failed;
81         u8                      dev;
82
83         unsigned                split:1,
84                                 bounce:1,
85                                 put_bio:1,
86                                 have_ioref:1,
87                                 used_mempool:1;
88
89         struct bio              bio;
90 };
91
92 struct bch_write_op {
93         struct closure          cl;
94         struct bch_fs           *c;
95         void                    (*end_io)(struct bch_write_op *);
96         u64                     start_time;
97
98         unsigned                written; /* sectors */
99         u16                     flags;
100         s16                     error; /* dio write path expects it to hold -ERESTARTSYS... */
101
102         unsigned                csum_type:4;
103         unsigned                compression_type:4;
104         unsigned                nr_replicas:4;
105         unsigned                nr_replicas_required:4;
106         unsigned                alloc_reserve:3;
107         unsigned                incompressible:1;
108
109         struct bch_devs_list    devs_have;
110         u16                     target;
111         u16                     nonce;
112         struct bch_io_opts      opts;
113
114         struct bpos             pos;
115         struct bversion         version;
116
117         /* For BCH_WRITE_DATA_ENCODED: */
118         struct bch_extent_crc_unpacked crc;
119
120         struct write_point_specifier write_point;
121
122         struct disk_reservation res;
123
124         struct open_buckets     open_buckets;
125
126         /*
127          * If caller wants to flush but hasn't passed us a journal_seq ptr, we
128          * still need to stash the journal_seq somewhere:
129          */
130         union {
131                 u64                     *journal_seq_p;
132                 u64                     journal_seq;
133         };
134         u64                     new_i_size;
135         s64                     i_sectors_delta;
136
137         int                     (*index_update_fn)(struct bch_write_op *);
138
139         struct bch_devs_mask    failed;
140
141         struct keylist          insert_keys;
142         u64                     inline_keys[BKEY_EXTENT_U64s_MAX * 2];
143
144         /* Must be last: */
145         struct bch_write_bio    wbio;
146 };
147
148 #endif /* _BCACHEFS_IO_TYPES_H */