blob: dada09331d2eb78e4f2e40841ed6f2de1d88f453 [file] [log] [blame]
Kent Overstreet1c6fdbd2017-03-16 22:18:50 -08001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _BCACHEFS_SUPER_H
3#define _BCACHEFS_SUPER_H
4
5#include "extents.h"
6
7#include "bcachefs_ioctl.h"
8
9#include <linux/math64.h>
10
Kent Overstreet3c471b62023-11-26 17:05:02 -050011extern const char * const bch2_fs_flag_strs[];
12
Kent Overstreet1c6fdbd2017-03-16 22:18:50 -080013struct bch_fs *bch2_dev_to_fs(dev_t);
14struct bch_fs *bch2_uuid_to_fs(__uuid_t);
15
16bool bch2_dev_state_allowed(struct bch_fs *, struct bch_dev *,
17 enum bch_member_state, int);
18int __bch2_dev_set_state(struct bch_fs *, struct bch_dev *,
19 enum bch_member_state, int);
20int bch2_dev_set_state(struct bch_fs *, struct bch_dev *,
21 enum bch_member_state, int);
22
23int bch2_dev_fail(struct bch_dev *, int);
24int bch2_dev_remove(struct bch_fs *, struct bch_dev *, int);
25int bch2_dev_add(struct bch_fs *, const char *);
26int bch2_dev_online(struct bch_fs *, const char *);
27int bch2_dev_offline(struct bch_fs *, struct bch_dev *, int);
28int bch2_dev_resize(struct bch_fs *, struct bch_dev *, u64);
29struct bch_dev *bch2_dev_lookup(struct bch_fs *, const char *);
30
31bool bch2_fs_emergency_read_only(struct bch_fs *);
32void bch2_fs_read_only(struct bch_fs *);
Kent Overstreet134915f2019-03-21 22:19:57 -040033
34int bch2_fs_read_write(struct bch_fs *);
35int bch2_fs_read_write_early(struct bch_fs *);
Kent Overstreet1c6fdbd2017-03-16 22:18:50 -080036
Kent Overstreeta672fb82020-08-24 15:16:32 -040037/*
38 * Only for use in the recovery/fsck path:
39 */
40static inline void bch2_fs_lazy_rw(struct bch_fs *c)
41{
Kent Overstreet3c471b62023-11-26 17:05:02 -050042 if (!test_bit(BCH_FS_rw, &c->flags) &&
43 !test_bit(BCH_FS_was_rw, &c->flags))
Kent Overstreeta672fb82020-08-24 15:16:32 -040044 bch2_fs_read_write_early(c);
45}
46
Kent Overstreetd5e4dcc2020-09-08 18:30:32 -040047void __bch2_fs_stop(struct bch_fs *);
48void bch2_fs_free(struct bch_fs *);
Kent Overstreet1c6fdbd2017-03-16 22:18:50 -080049void bch2_fs_stop(struct bch_fs *);
50
Kent Overstreet619f5be2019-04-17 18:21:19 -040051int bch2_fs_start(struct bch_fs *);
Kent Overstreet1c6fdbd2017-03-16 22:18:50 -080052struct bch_fs *bch2_fs_open(char * const *, unsigned, struct bch_opts);
Kent Overstreet1c6fdbd2017-03-16 22:18:50 -080053
54#endif /* _BCACHEFS_SUPER_H */