bcachefs: Erasure coding fixes & refactoring
[linux-block.git] / fs / bcachefs / rebalance.h
CommitLineData
1c6fdbd8
KO
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _BCACHEFS_REBALANCE_H
3#define _BCACHEFS_REBALANCE_H
4
5#include "rebalance_types.h"
6
7static inline void rebalance_wakeup(struct bch_fs *c)
8{
9 struct task_struct *p;
10
11 rcu_read_lock();
12 p = rcu_dereference(c->rebalance.thread);
13 if (p)
14 wake_up_process(p);
15 rcu_read_unlock();
16}
17
18void bch2_rebalance_add_key(struct bch_fs *, struct bkey_s_c,
19 struct bch_io_opts *);
20void bch2_rebalance_add_work(struct bch_fs *, u64);
21
7807e143 22void bch2_rebalance_work_to_text(struct printbuf *, struct bch_fs *);
1c6fdbd8
KO
23
24void bch2_rebalance_stop(struct bch_fs *);
25int bch2_rebalance_start(struct bch_fs *);
26void bch2_fs_rebalance_init(struct bch_fs *);
27
28#endif /* _BCACHEFS_REBALANCE_H */