Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.2-rc3 11 lines 307 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2 3#ifndef BTRFS_ORPHAN_H 4#define BTRFS_ORPHAN_H 5 6int btrfs_insert_orphan_item(struct btrfs_trans_handle *trans, 7 struct btrfs_root *root, u64 offset); 8int btrfs_del_orphan_item(struct btrfs_trans_handle *trans, 9 struct btrfs_root *root, u64 offset); 10 11#endif