]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/journal_reclaim.h
rust: Fix ptr casting in Fs::open()
[bcachefs-tools-debian] / libbcachefs / journal_reclaim.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_JOURNAL_RECLAIM_H
3 #define _BCACHEFS_JOURNAL_RECLAIM_H
4
5 #define JOURNAL_PIN     (32 * 1024)
6
7 static inline void journal_reclaim_kick(struct journal *j)
8 {
9         struct task_struct *p = READ_ONCE(j->reclaim_thread);
10
11         j->reclaim_kicked = true;
12         if (p)
13                 wake_up_process(p);
14 }
15
16 unsigned bch2_journal_dev_buckets_available(struct journal *,
17                                             struct journal_device *,
18                                             enum journal_space_from);
19 void bch2_journal_space_available(struct journal *);
20
21 static inline bool journal_pin_active(struct journal_entry_pin *pin)
22 {
23         return pin->seq != 0;
24 }
25
26 static inline struct journal_entry_pin_list *
27 journal_seq_pin(struct journal *j, u64 seq)
28 {
29         EBUG_ON(seq < j->pin.front || seq >= j->pin.back);
30
31         return &j->pin.data[seq & j->pin.mask];
32 }
33
34 void __bch2_journal_pin_put(struct journal *, u64);
35 void bch2_journal_pin_put(struct journal *, u64);
36 void bch2_journal_pin_drop(struct journal *, struct journal_entry_pin *);
37
38 void bch2_journal_pin_set(struct journal *, u64, struct journal_entry_pin *,
39                           journal_pin_flush_fn);
40
41 static inline void bch2_journal_pin_add(struct journal *j, u64 seq,
42                                         struct journal_entry_pin *pin,
43                                         journal_pin_flush_fn flush_fn)
44 {
45         if (unlikely(!journal_pin_active(pin) || pin->seq > seq))
46                 bch2_journal_pin_set(j, seq, pin, flush_fn);
47 }
48
49 static inline void bch2_journal_pin_copy(struct journal *j,
50                                          struct journal_entry_pin *dst,
51                                          struct journal_entry_pin *src,
52                                          journal_pin_flush_fn flush_fn)
53 {
54         /* Guard against racing with journal_pin_drop(src): */
55         u64 seq = READ_ONCE(src->seq);
56
57         if (seq)
58                 bch2_journal_pin_add(j, seq, dst, flush_fn);
59 }
60
61 static inline void bch2_journal_pin_update(struct journal *j, u64 seq,
62                                            struct journal_entry_pin *pin,
63                                            journal_pin_flush_fn flush_fn)
64 {
65         if (unlikely(!journal_pin_active(pin) || pin->seq < seq))
66                 bch2_journal_pin_set(j, seq, pin, flush_fn);
67 }
68
69 void bch2_journal_pin_flush(struct journal *, struct journal_entry_pin *);
70
71 void bch2_journal_do_discards(struct journal *);
72 int bch2_journal_reclaim(struct journal *);
73
74 void bch2_journal_reclaim_stop(struct journal *);
75 int bch2_journal_reclaim_start(struct journal *);
76
77 bool bch2_journal_flush_pins(struct journal *, u64);
78
79 static inline bool bch2_journal_flush_all_pins(struct journal *j)
80 {
81         return bch2_journal_flush_pins(j, U64_MAX);
82 }
83
84 int bch2_journal_flush_device_pins(struct journal *, int);
85
86 #endif /* _BCACHEFS_JOURNAL_RECLAIM_H */