]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/journal_types.h
Update bcachefs sources to 4837f82ee1 bcachefs: Use cached iterators for alloc btree
[bcachefs-tools-debian] / libbcachefs / journal_types.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_JOURNAL_TYPES_H
3 #define _BCACHEFS_JOURNAL_TYPES_H
4
5 #include <linux/cache.h>
6 #include <linux/workqueue.h>
7
8 #include "alloc_types.h"
9 #include "super_types.h"
10 #include "fifo.h"
11
12 struct journal_res;
13
14 /*
15  * We put two of these in struct journal; we used them for writes to the
16  * journal that are being staged or in flight.
17  */
18 struct journal_buf {
19         struct jset             *data;
20
21         BKEY_PADDED(key);
22
23         struct closure_waitlist wait;
24
25         unsigned                buf_size;       /* size in bytes of @data */
26         unsigned                sectors;        /* maximum size for current entry */
27         unsigned                disk_sectors;   /* maximum size entry could have been, if
28                                                    buf_size was bigger */
29         unsigned                u64s_reserved;
30         /* bloom filter: */
31         unsigned long           has_inode[1024 / sizeof(unsigned long)];
32 };
33
34 /*
35  * Something that makes a journal entry dirty - i.e. a btree node that has to be
36  * flushed:
37  */
38
39 struct journal_entry_pin_list {
40         struct list_head                list;
41         struct list_head                flushed;
42         atomic_t                        count;
43         struct bch_devs_list            devs;
44 };
45
46 struct journal;
47 struct journal_entry_pin;
48 typedef void (*journal_pin_flush_fn)(struct journal *j,
49                                 struct journal_entry_pin *, u64);
50
51 struct journal_entry_pin {
52         struct list_head                list;
53         journal_pin_flush_fn            flush;
54         u64                             seq;
55 };
56
57 struct journal_res {
58         bool                    ref;
59         u8                      idx;
60         u16                     u64s;
61         u32                     offset;
62         u64                     seq;
63 };
64
65 /*
66  * For reserving space in the journal prior to getting a reservation on a
67  * particular journal entry:
68  */
69 struct journal_preres {
70         unsigned                u64s;
71 };
72
73 union journal_res_state {
74         struct {
75                 atomic64_t      counter;
76         };
77
78         struct {
79                 u64             v;
80         };
81
82         struct {
83                 u64             cur_entry_offset:20,
84                                 idx:1,
85                                 prev_buf_unwritten:1,
86                                 buf0_count:21,
87                                 buf1_count:21;
88         };
89 };
90
91 union journal_preres_state {
92         struct {
93                 atomic64_t      counter;
94         };
95
96         struct {
97                 u64             v;
98         };
99
100         struct {
101                 u32             reserved;
102                 u32             remaining;
103         };
104 };
105
106 /* bytes: */
107 #define JOURNAL_ENTRY_SIZE_MIN          (64U << 10) /* 64k */
108 #define JOURNAL_ENTRY_SIZE_MAX          (4U  << 20) /* 4M */
109
110 /*
111  * We stash some journal state as sentinal values in cur_entry_offset:
112  * note - cur_entry_offset is in units of u64s
113  */
114 #define JOURNAL_ENTRY_OFFSET_MAX        ((1U << 20) - 1)
115
116 #define JOURNAL_ENTRY_CLOSED_VAL        (JOURNAL_ENTRY_OFFSET_MAX - 1)
117 #define JOURNAL_ENTRY_ERROR_VAL         (JOURNAL_ENTRY_OFFSET_MAX)
118
119 /*
120  * JOURNAL_NEED_WRITE - current (pending) journal entry should be written ASAP,
121  * either because something's waiting on the write to complete or because it's
122  * been dirty too long and the timer's expired.
123  */
124
125 enum {
126         JOURNAL_REPLAY_DONE,
127         JOURNAL_STARTED,
128         JOURNAL_RECLAIM_STARTED,
129         JOURNAL_NEED_WRITE,
130         JOURNAL_NOT_EMPTY,
131         JOURNAL_MAY_GET_UNRESERVED,
132 };
133
134 /* Embedded in struct bch_fs */
135 struct journal {
136         /* Fastpath stuff up front: */
137
138         unsigned long           flags;
139
140         union journal_res_state reservations;
141
142         /* Max size of current journal entry */
143         unsigned                cur_entry_u64s;
144         unsigned                cur_entry_sectors;
145
146         /*
147          * 0, or -ENOSPC if waiting on journal reclaim, or -EROFS if
148          * insufficient devices:
149          */
150         int                     cur_entry_error;
151
152         union journal_preres_state prereserved;
153
154         /* Reserved space in journal entry to be used just prior to write */
155         unsigned                entry_u64s_reserved;
156
157         unsigned                buf_size_want;
158
159         /*
160          * Two journal entries -- one is currently open for new entries, the
161          * other is possibly being written out.
162          */
163         struct journal_buf      buf[2];
164
165         spinlock_t              lock;
166
167         /* if nonzero, we may not open a new journal entry: */
168         unsigned                blocked;
169
170         /* Used when waiting because the journal was full */
171         wait_queue_head_t       wait;
172         struct closure_waitlist async_wait;
173         struct closure_waitlist preres_wait;
174
175         struct closure          io;
176         struct delayed_work     write_work;
177
178         /* Sequence number of most recent journal entry (last entry in @pin) */
179         atomic64_t              seq;
180
181         /* seq, last_seq from the most recent journal entry successfully written */
182         u64                     seq_ondisk;
183         u64                     last_seq_ondisk;
184
185         /*
186          * FIFO of journal entries whose btree updates have not yet been
187          * written out.
188          *
189          * Each entry is a reference count. The position in the FIFO is the
190          * entry's sequence number relative to @seq.
191          *
192          * The journal entry itself holds a reference count, put when the
193          * journal entry is written out. Each btree node modified by the journal
194          * entry also holds a reference count, put when the btree node is
195          * written.
196          *
197          * When a reference count reaches zero, the journal entry is no longer
198          * needed. When all journal entries in the oldest journal bucket are no
199          * longer needed, the bucket can be discarded and reused.
200          */
201         struct {
202                 u64 front, back, size, mask;
203                 struct journal_entry_pin_list *data;
204         }                       pin;
205
206         u64                     replay_journal_seq;
207         u64                     replay_journal_seq_end;
208
209         struct write_point      wp;
210         spinlock_t              err_lock;
211
212         struct delayed_work     reclaim_work;
213         struct mutex            reclaim_lock;
214         unsigned long           last_flushed;
215         struct journal_entry_pin *flush_in_progress;
216         wait_queue_head_t       pin_flush_wait;
217
218         /* protects advancing ja->discard_idx: */
219         struct mutex            discard_lock;
220         bool                    can_discard;
221
222         unsigned                write_delay_ms;
223         unsigned                reclaim_delay_ms;
224
225         u64                     res_get_blocked_start;
226         u64                     need_write_time;
227         u64                     write_start_time;
228
229         struct time_stats       *write_time;
230         struct time_stats       *delay_time;
231         struct time_stats       *blocked_time;
232         struct time_stats       *flush_seq_time;
233
234 #ifdef CONFIG_DEBUG_LOCK_ALLOC
235         struct lockdep_map      res_map;
236 #endif
237 };
238
239 /*
240  * Embedded in struct bch_dev. First three fields refer to the array of journal
241  * buckets, in bch_sb.
242  */
243 struct journal_device {
244         /*
245          * For each journal bucket, contains the max sequence number of the
246          * journal writes it contains - so we know when a bucket can be reused.
247          */
248         u64                     *bucket_seq;
249
250         unsigned                sectors_free;
251
252         /*
253          * discard_idx <= dirty_idx_ondisk <= dirty_idx <= cur_idx:
254          */
255         unsigned                discard_idx;            /* Next bucket to discard */
256         unsigned                dirty_idx_ondisk;
257         unsigned                dirty_idx;
258         unsigned                cur_idx;                /* Journal bucket we're currently writing to */
259         unsigned                nr;
260
261         u64                     *buckets;
262
263         /* Bio for journal reads/writes to this device */
264         struct bio              *bio;
265
266         /* for bch_journal_read_device */
267         struct closure          read;
268 };
269
270 /*
271  * journal_entry_res - reserve space in every journal entry:
272  */
273 struct journal_entry_res {
274         unsigned                u64s;
275 };
276
277 #endif /* _BCACHEFS_JOURNAL_TYPES_H */