2019-07-10 23:12:15 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2017-10-06 01:41:44 +03:00
|
|
|
#ifndef _BCACHEFS_BTREE_GC_H
|
|
|
|
#define _BCACHEFS_BTREE_GC_H
|
2017-01-08 12:13:18 +03:00
|
|
|
|
2023-08-06 01:06:22 +03:00
|
|
|
#include "bkey.h"
|
2024-05-28 01:47:39 +03:00
|
|
|
#include "btree_gc_types.h"
|
2017-01-08 12:13:18 +03:00
|
|
|
#include "btree_types.h"
|
|
|
|
|
2023-07-21 01:09:44 +03:00
|
|
|
int bch2_check_topology(struct bch_fs *);
|
2024-05-03 22:22:22 +03:00
|
|
|
int bch2_check_allocations(struct bch_fs *);
|
2017-01-08 12:13:18 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* For concurrent mark and sweep (with other index updates), we define a total
|
|
|
|
* ordering of _all_ references GC walks:
|
|
|
|
*
|
|
|
|
* Note that some references will have the same GC position as others - e.g.
|
|
|
|
* everything within the same btree node; in those cases we're relying on
|
|
|
|
* whatever locking exists for where those references live, i.e. the write lock
|
|
|
|
* on a btree node.
|
|
|
|
*
|
|
|
|
* That locking is also required to ensure GC doesn't pass the updater in
|
|
|
|
* between the updater adding/removing the reference and updating the GC marks;
|
|
|
|
* without that, we would at best double count sometimes.
|
|
|
|
*
|
2017-03-20 02:56:34 +03:00
|
|
|
* That part is important - whenever calling bch2_mark_pointers(), a lock _must_
|
2017-01-08 12:13:18 +03:00
|
|
|
* be held that prevents GC from passing the position the updater is at.
|
|
|
|
*
|
|
|
|
* (What about the start of gc, when we're clearing all the marks? GC clears the
|
|
|
|
* mark with the gc pos seqlock held, and bch_mark_bucket checks against the gc
|
|
|
|
* position inside its cmpxchg loop, so crap magically works).
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Position of (the start of) a gc phase: */
|
|
|
|
static inline struct gc_pos gc_phase(enum gc_phase phase)
|
|
|
|
{
|
2024-05-28 01:47:39 +03:00
|
|
|
return (struct gc_pos) { .phase = phase, };
|
2018-11-23 11:04:34 +03:00
|
|
|
}
|
|
|
|
|
2024-05-03 22:22:22 +03:00
|
|
|
static inline struct gc_pos gc_pos_btree(enum btree_id btree, unsigned level,
|
|
|
|
struct bpos pos)
|
2018-06-27 21:41:51 +03:00
|
|
|
{
|
|
|
|
return (struct gc_pos) {
|
2024-05-28 01:47:39 +03:00
|
|
|
.phase = GC_PHASE_btree,
|
|
|
|
.btree = btree,
|
2018-06-27 21:41:51 +03:00
|
|
|
.level = level,
|
2024-05-03 22:22:22 +03:00
|
|
|
.pos = pos,
|
2018-06-27 21:41:51 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2024-05-28 01:47:39 +03:00
|
|
|
static inline int gc_btree_order(enum btree_id btree)
|
|
|
|
{
|
2024-06-04 00:03:54 +03:00
|
|
|
if (btree == BTREE_ID_alloc)
|
|
|
|
return -2;
|
2024-05-28 01:47:39 +03:00
|
|
|
if (btree == BTREE_ID_stripes)
|
|
|
|
return -1;
|
|
|
|
return btree;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int gc_pos_cmp(struct gc_pos l, struct gc_pos r)
|
|
|
|
{
|
2024-06-04 00:03:54 +03:00
|
|
|
return cmp_int(l.phase, r.phase) ?:
|
|
|
|
cmp_int(gc_btree_order(l.btree),
|
|
|
|
gc_btree_order(r.btree)) ?:
|
|
|
|
cmp_int(l.level, r.level) ?:
|
|
|
|
bpos_cmp(l.pos, r.pos);
|
2024-05-28 01:47:39 +03:00
|
|
|
}
|
|
|
|
|
2018-11-23 11:04:34 +03:00
|
|
|
static inline bool gc_visited(struct bch_fs *c, struct gc_pos pos)
|
2017-01-08 12:13:18 +03:00
|
|
|
{
|
|
|
|
unsigned seq;
|
|
|
|
bool ret;
|
|
|
|
|
|
|
|
do {
|
|
|
|
seq = read_seqcount_begin(&c->gc_pos_lock);
|
2019-02-10 03:54:14 +03:00
|
|
|
ret = gc_pos_cmp(pos, c->gc_pos) <= 0;
|
2017-01-08 12:13:18 +03:00
|
|
|
} while (read_seqcount_retry(&c->gc_pos_lock, seq));
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2024-06-17 18:31:26 +03:00
|
|
|
void bch2_gc_pos_to_text(struct printbuf *, struct gc_pos *);
|
|
|
|
|
2024-05-03 22:22:22 +03:00
|
|
|
int bch2_gc_gens(struct bch_fs *);
|
|
|
|
void bch2_gc_gens_async(struct bch_fs *);
|
|
|
|
void bch2_fs_gc_init(struct bch_fs *);
|
2022-04-08 03:56:27 +03:00
|
|
|
|
2017-10-06 01:41:44 +03:00
|
|
|
#endif /* _BCACHEFS_BTREE_GC_H */
|