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