Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 2 | |
| 3 | #ifndef BTRFS_INODE_MAP_H |
| 4 | #define BTRFS_INODE_MAP_H |
| 5 | |
| 6 | void btrfs_init_free_ino_ctl(struct btrfs_root *root); |
| 7 | void btrfs_unpin_free_ino(struct btrfs_root *root); |
| 8 | void btrfs_return_ino(struct btrfs_root *root, u64 objectid); |
| 9 | int btrfs_find_free_ino(struct btrfs_root *root, u64 *objectid); |
| 10 | int btrfs_save_ino_cache(struct btrfs_root *root, |
| 11 | struct btrfs_trans_handle *trans); |
| 12 | |
| 13 | int btrfs_find_free_objectid(struct btrfs_root *root, u64 *objectid); |
| 14 | int btrfs_find_highest_objectid(struct btrfs_root *root, u64 *objectid); |
| 15 | |
| 16 | #endif |