2019-07-10 23:12:15 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2018-04-11 02:19:09 +03:00
|
|
|
#ifndef _BCACHEFS_REPLICAS_H
|
|
|
|
#define _BCACHEFS_REPLICAS_H
|
|
|
|
|
2022-10-22 20:25:25 +03:00
|
|
|
#include "bkey.h"
|
2024-03-17 02:29:22 +03:00
|
|
|
#include "eytzinger.h"
|
2018-11-04 03:11:29 +03:00
|
|
|
#include "replicas_types.h"
|
|
|
|
|
2023-11-21 03:33:52 +03:00
|
|
|
void bch2_replicas_entry_sort(struct bch_replicas_entry_v1 *);
|
2019-01-23 23:49:44 +03:00
|
|
|
void bch2_replicas_entry_to_text(struct printbuf *,
|
2023-11-21 03:33:52 +03:00
|
|
|
struct bch_replicas_entry_v1 *);
|
2023-11-26 05:51:30 +03:00
|
|
|
int bch2_replicas_entry_validate(struct bch_replicas_entry_v1 *,
|
2024-09-22 08:13:01 +03:00
|
|
|
struct bch_fs *, struct printbuf *);
|
2019-01-23 23:49:44 +03:00
|
|
|
void bch2_cpu_replicas_to_text(struct printbuf *, struct bch_replicas_cpu *);
|
|
|
|
|
2023-11-21 03:33:52 +03:00
|
|
|
static inline struct bch_replicas_entry_v1 *
|
2019-01-23 23:49:44 +03:00
|
|
|
cpu_replicas_entry(struct bch_replicas_cpu *r, unsigned i)
|
|
|
|
{
|
|
|
|
return (void *) r->entries + r->entry_size * i;
|
|
|
|
}
|
|
|
|
|
2019-01-14 04:36:38 +03:00
|
|
|
int bch2_replicas_entry_idx(struct bch_fs *,
|
2023-11-21 03:33:52 +03:00
|
|
|
struct bch_replicas_entry_v1 *);
|
2019-01-23 23:49:44 +03:00
|
|
|
|
2023-11-21 03:33:52 +03:00
|
|
|
void bch2_devlist_to_replicas(struct bch_replicas_entry_v1 *,
|
2019-01-23 23:49:44 +03:00
|
|
|
enum bch_data_type,
|
|
|
|
struct bch_devs_list);
|
2024-06-04 00:03:54 +03:00
|
|
|
|
|
|
|
bool bch2_replicas_marked_locked(struct bch_fs *,
|
|
|
|
struct bch_replicas_entry_v1 *);
|
2023-11-21 03:33:52 +03:00
|
|
|
bool bch2_replicas_marked(struct bch_fs *, struct bch_replicas_entry_v1 *);
|
2019-01-23 23:49:44 +03:00
|
|
|
int bch2_mark_replicas(struct bch_fs *,
|
2023-11-21 03:33:52 +03:00
|
|
|
struct bch_replicas_entry_v1 *);
|
2019-01-23 23:49:44 +03:00
|
|
|
|
2023-11-21 03:33:52 +03:00
|
|
|
void bch2_bkey_to_replicas(struct bch_replicas_entry_v1 *, struct bkey_s_c);
|
2018-04-11 02:19:09 +03:00
|
|
|
|
2023-11-21 03:33:52 +03:00
|
|
|
static inline void bch2_replicas_entry_cached(struct bch_replicas_entry_v1 *e,
|
2019-01-23 23:49:44 +03:00
|
|
|
unsigned dev)
|
|
|
|
{
|
2020-08-24 23:05:04 +03:00
|
|
|
e->data_type = BCH_DATA_cached;
|
2019-01-23 23:49:44 +03:00
|
|
|
e->nr_devs = 1;
|
|
|
|
e->nr_required = 1;
|
|
|
|
e->devs[0] = dev;
|
|
|
|
}
|
2018-04-11 02:19:09 +03:00
|
|
|
|
2021-02-13 00:02:38 +03:00
|
|
|
bool bch2_have_enough_devs(struct bch_fs *, struct bch_devs_mask,
|
|
|
|
unsigned, bool);
|
|
|
|
|
2022-02-21 13:38:44 +03:00
|
|
|
unsigned bch2_sb_dev_has_data(struct bch_sb *, unsigned);
|
2018-04-11 02:19:09 +03:00
|
|
|
unsigned bch2_dev_has_data(struct bch_fs *, struct bch_dev *);
|
|
|
|
|
|
|
|
int bch2_replicas_gc_end(struct bch_fs *, int);
|
|
|
|
int bch2_replicas_gc_start(struct bch_fs *, unsigned);
|
2019-05-09 02:13:46 +03:00
|
|
|
int bch2_replicas_gc2(struct bch_fs *);
|
2018-04-11 02:19:09 +03:00
|
|
|
|
2019-02-10 03:54:14 +03:00
|
|
|
#define for_each_cpu_replicas_entry(_r, _i) \
|
|
|
|
for (_i = (_r)->entries; \
|
|
|
|
(void *) (_i) < (void *) (_r)->entries + (_r)->nr * (_r)->entry_size;\
|
|
|
|
_i = (void *) (_i) + (_r)->entry_size)
|
|
|
|
|
2018-04-11 02:19:09 +03:00
|
|
|
/* iterate over superblock replicas - used by userspace tools: */
|
|
|
|
|
2018-11-04 03:11:29 +03:00
|
|
|
#define replicas_entry_next(_i) \
|
|
|
|
((typeof(_i)) ((void *) (_i) + replicas_entry_bytes(_i)))
|
2018-04-11 02:19:09 +03:00
|
|
|
|
|
|
|
#define for_each_replicas_entry(_r, _i) \
|
|
|
|
for (_i = (_r)->entries; \
|
|
|
|
(void *) (_i) < vstruct_end(&(_r)->field) && (_i)->data_type;\
|
|
|
|
(_i) = replicas_entry_next(_i))
|
|
|
|
|
2018-11-13 03:20:40 +03:00
|
|
|
#define for_each_replicas_entry_v0(_r, _i) \
|
|
|
|
for (_i = (_r)->entries; \
|
|
|
|
(void *) (_i) < vstruct_end(&(_r)->field) && (_i)->data_type;\
|
|
|
|
(_i) = replicas_entry_next(_i))
|
|
|
|
|
2018-04-11 02:19:09 +03:00
|
|
|
int bch2_sb_replicas_to_cpu_replicas(struct bch_fs *);
|
|
|
|
|
|
|
|
extern const struct bch_sb_field_ops bch_sb_field_ops_replicas;
|
2018-11-13 03:20:40 +03:00
|
|
|
extern const struct bch_sb_field_ops bch_sb_field_ops_replicas_v0;
|
2018-04-11 02:19:09 +03:00
|
|
|
|
2021-04-22 01:13:43 +03:00
|
|
|
void bch2_fs_replicas_exit(struct bch_fs *);
|
2019-02-10 03:54:14 +03:00
|
|
|
|
2018-04-11 02:19:09 +03:00
|
|
|
#endif /* _BCACHEFS_REPLICAS_H */
|