orphan.h 380 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef BTRFS_ORPHAN_H
  3. #define BTRFS_ORPHAN_H
  4. #include <linux/types.h>
  5. struct btrfs_trans_handle;
  6. struct btrfs_root;
  7. int btrfs_insert_orphan_item(struct btrfs_trans_handle *trans,
  8. struct btrfs_root *root, u64 offset);
  9. int btrfs_del_orphan_item(struct btrfs_trans_handle *trans,
  10. struct btrfs_root *root, u64 offset);
  11. #endif