diff options
author | Christoph Hellwig <hch@lst.de> | 2021-04-21 23:48:27 +0300 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2021-04-23 04:29:25 +0300 |
commit | 732de7dbdbd30df40a6d260a8da6fc5262039439 (patch) | |
tree | 88802739c2deae9ccc5227775ca6503fc9e1d5dc /fs/xfs/xfs_inode_item.c | |
parent | 6fc277c7c935c7e1fdee23e82da988d9d3cb6bef (diff) | |
download | linux-732de7dbdbd30df40a6d260a8da6fc5262039439.tar.xz |
xfs: rename struct xfs_legacy_ictimestamp
Rename struct xfs_legacy_ictimestamp to struct xfs_log_legacy_timestamp
as it is a type used for logging timestamps with no relationship to the
in-core inode.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Diffstat (limited to 'fs/xfs/xfs_inode_item.c')
-rw-r--r-- | fs/xfs/xfs_inode_item.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_inode_item.c b/fs/xfs/xfs_inode_item.c index 6cc4ca15209c..6764d12342da 100644 --- a/fs/xfs/xfs_inode_item.c +++ b/fs/xfs/xfs_inode_item.c @@ -304,13 +304,13 @@ xfs_inode_to_log_dinode_ts( struct xfs_inode *ip, const struct timespec64 tv) { - struct xfs_legacy_ictimestamp *lits; + struct xfs_log_legacy_timestamp *lits; xfs_log_timestamp_t its; if (xfs_inode_has_bigtime(ip)) return xfs_inode_encode_bigtime(tv); - lits = (struct xfs_legacy_ictimestamp *)&its; + lits = (struct xfs_log_legacy_timestamp *)&its; lits->t_sec = tv.tv_sec; lits->t_nsec = tv.tv_nsec; |