diff options
author | Darrick J. Wong <djwong@kernel.org> | 2024-04-15 14:54:08 -0700 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2024-04-15 14:54:08 -0700 |
commit | 3fc4844585c761e69654a237df41ffc5e51262e9 (patch) | |
tree | bae84d48ab68aff62389e6a1b318c0fe81d1818f /fs/xfs/xfs_iops.h | |
parent | a4db266a705c5518f3049074fd233b6c57daab00 (diff) | |
download | linux-stable-3fc4844585c761e69654a237df41ffc5e51262e9.tar.gz linux-stable-3fc4844585c761e69654a237df41ffc5e51262e9.tar.bz2 linux-stable-3fc4844585c761e69654a237df41ffc5e51262e9.zip |
xfs: move xfs_iops.c declarations out of xfs_inode.h
Similarly, move declarations of public symbols of xfs_iops.c from
xfs_inode.h to xfs_iops.h.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/xfs_iops.h')
-rw-r--r-- | fs/xfs/xfs_iops.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/xfs/xfs_iops.h b/fs/xfs/xfs_iops.h index 7f84a0843b24..8a38c3e2ed0e 100644 --- a/fs/xfs/xfs_iops.h +++ b/fs/xfs/xfs_iops.h @@ -19,4 +19,8 @@ int xfs_vn_setattr_size(struct mnt_idmap *idmap, int xfs_inode_init_security(struct inode *inode, struct inode *dir, const struct qstr *qstr); +extern void xfs_setup_inode(struct xfs_inode *ip); +extern void xfs_setup_iops(struct xfs_inode *ip); +extern void xfs_diflags_to_iflags(struct xfs_inode *ip, bool init); + #endif /* __XFS_IOPS_H__ */ |