Linux 6.13-rc4
[linux.git] / fs / btrfs / orphan.h
blobaa54a88a60de1eb0187aa4afcb123ec6424f7513
1 /* SPDX-License-Identifier: GPL-2.0 */
3 #ifndef BTRFS_ORPHAN_H
4 #define BTRFS_ORPHAN_H
6 #include <linux/types.h>
8 struct btrfs_trans_handle;
9 struct btrfs_root;
11 int btrfs_insert_orphan_item(struct btrfs_trans_handle *trans,
12 struct btrfs_root *root, u64 offset);
13 int btrfs_del_orphan_item(struct btrfs_trans_handle *trans,
14 struct btrfs_root *root, u64 offset);
16 #endif