hc
2024-05-10 9999e48639b3cecb08ffb37358bcba3b48161b29
kernel/fs/xfs/xfs_bmap_util.h
....@@ -30,8 +30,6 @@
3030 }
3131 #endif /* CONFIG_XFS_RT */
3232
33
-int xfs_bmap_eof(struct xfs_inode *ip, xfs_fileoff_t endoff,
34
- int whichfork, int *eof);
3533 int xfs_bmap_punch_delalloc_range(struct xfs_inode *ip,
3634 xfs_fileoff_t start_fsb, xfs_fileoff_t length);
3735
....@@ -59,8 +57,6 @@
5957 xfs_off_t len, int alloc_type);
6058 int xfs_free_file_space(struct xfs_inode *ip, xfs_off_t offset,
6159 xfs_off_t len);
62
-int xfs_zero_file_space(struct xfs_inode *ip, xfs_off_t offset,
63
- xfs_off_t len);
6460 int xfs_collapse_file_space(struct xfs_inode *, xfs_off_t offset,
6561 xfs_off_t len);
6662 int xfs_insert_file_space(struct xfs_inode *, xfs_off_t offset,
....@@ -76,10 +72,11 @@
7672 xfs_daddr_t xfs_fsb_to_db(struct xfs_inode *ip, xfs_fsblock_t fsb);
7773
7874 xfs_extnum_t xfs_bmap_count_leaves(struct xfs_ifork *ifp, xfs_filblks_t *count);
79
-int xfs_flush_unmap_range(struct xfs_inode *ip, xfs_off_t offset,
80
- xfs_off_t len);
8175 int xfs_bmap_count_blocks(struct xfs_trans *tp, struct xfs_inode *ip,
8276 int whichfork, xfs_extnum_t *nextents,
8377 xfs_filblks_t *count);
8478
79
+int xfs_flush_unmap_range(struct xfs_inode *ip, xfs_off_t offset,
80
+ xfs_off_t len);
81
+
8582 #endif /* __XFS_BMAP_UTIL_H__ */