summaryrefslogtreecommitdiff
path: root/libbcachefs/rebalance_types.h
blob: aaf5b9ca133c9f98c3925cf85ce1f62564a77a79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef _BCACHEFS_REBALANCE_TYPES_H
#define _BCACHEFS_REBALANCE_TYPES_H

#include "move_types.h"

enum rebalance_state {
	REBALANCE_WAITING,
	REBALANCE_THROTTLED,
	REBALANCE_RUNNING,
};

struct bch_fs_rebalance {
	struct task_struct __rcu *thread;
	struct bch_pd_controller pd;

	atomic64_t		work_unknown_dev;

	enum rebalance_state	state;
	unsigned long		throttled_until_iotime;
	unsigned long		throttled_until_cputime;
	struct bch_move_stats	move_stats;

	unsigned		enabled:1;
};

#endif /* _BCACHEFS_REBALANCE_TYPES_H */