diff options
author | 2024-07-02 11:22:37 -0700 | |
---|---|---|
committer | 2024-07-02 11:36:57 -0700 | |
commit | e9d2b35bb9d3ff372fad27998fc3969ced3f563d (patch) | |
tree | 06cfdcc1940c404b6cb8e51a1685b7603fd753e0 /fs/xfs/xfs_trans.h | |
parent | xfs: split new inode creation into two pieces (diff) | |
download | wireguard-linux-e9d2b35bb9d3ff372fad27998fc3969ced3f563d.tar.xz wireguard-linux-e9d2b35bb9d3ff372fad27998fc3969ced3f563d.zip |
xfs: hoist new inode initialization functions to libxfs
Move all the code that initializes a new inode's attributes from the
icreate_args structure and the parent directory into libxfs.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/xfs_trans.h')
-rw-r--r-- | fs/xfs/xfs_trans.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/xfs/xfs_trans.h b/fs/xfs/xfs_trans.h index 1636663707dc..f97e8c68641f 100644 --- a/fs/xfs/xfs_trans.h +++ b/fs/xfs/xfs_trans.h @@ -224,7 +224,6 @@ void xfs_trans_stale_inode_buf(xfs_trans_t *, struct xfs_buf *); bool xfs_trans_ordered_buf(xfs_trans_t *, struct xfs_buf *); void xfs_trans_dquot_buf(xfs_trans_t *, struct xfs_buf *, uint); void xfs_trans_inode_alloc_buf(xfs_trans_t *, struct xfs_buf *); -void xfs_trans_ichgtime(struct xfs_trans *, struct xfs_inode *, int); void xfs_trans_ijoin(struct xfs_trans *, struct xfs_inode *, uint); void xfs_trans_log_buf(struct xfs_trans *, struct xfs_buf *, uint, uint); |