mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-02 00:00:03 +03:00
19 lines
600 B
C
19 lines
600 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _BCACHEFS_EXTENT_UPDATE_H
|
|
#define _BCACHEFS_EXTENT_UPDATE_H
|
|
|
|
#include "bcachefs.h"
|
|
|
|
int bch2_extent_atomic_end(struct btree_iter *, struct bkey_i *,
|
|
struct bpos *);
|
|
int bch2_extent_trim_atomic(struct bkey_i *, struct btree_iter *);
|
|
int bch2_extent_is_atomic(struct bkey_i *, struct btree_iter *);
|
|
|
|
enum btree_insert_ret
|
|
bch2_extent_can_insert(struct btree_trans *, struct btree_insert_entry *,
|
|
unsigned *);
|
|
void bch2_insert_fixup_extent(struct btree_trans *,
|
|
struct btree_insert_entry *);
|
|
|
|
#endif /* _BCACHEFS_EXTENT_UPDATE_H */
|