mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-12-09 00:00:17 +03:00
Some checks are pending
build / bcachefs-tools-deb (ubuntu-22.04) (push) Waiting to run
build / bcachefs-tools-deb (ubuntu-24.04) (push) Waiting to run
build / bcachefs-tools-rpm (push) Waiting to run
build / bcachefs-tools-msrv (push) Waiting to run
Nix Flake actions / nix-matrix (push) Waiting to run
Nix Flake actions / ${{ matrix.name }} (${{ matrix.system }}) (push) Blocked by required conditions
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
13 lines
359 B
C
13 lines
359 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_trans *, struct btree_iter *,
|
|
struct bpos *);
|
|
int bch2_extent_trim_atomic(struct btree_trans *, struct btree_iter *,
|
|
struct bkey_i *);
|
|
|
|
#endif /* _BCACHEFS_EXTENT_UPDATE_H */
|