mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-03-16 12:04:08 +00:00
12 lines
307 B
C
12 lines
307 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
|
||
|
#ifndef BTRFS_ORPHAN_H
|
||
|
#define BTRFS_ORPHAN_H
|
||
|
|
||
|
int btrfs_insert_orphan_item(struct btrfs_trans_handle *trans,
|
||
|
struct btrfs_root *root, u64 offset);
|
||
|
int btrfs_del_orphan_item(struct btrfs_trans_handle *trans,
|
||
|
struct btrfs_root *root, u64 offset);
|
||
|
|
||
|
#endif
|