diff options
author | Christoph Hellwig <hch@lst.de> | 2021-04-21 22:48:27 +0200 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2021-04-23 03:29:17 +0200 |
commit | 6fc277c7c935c7e1fdee23e82da988d9d3cb6bef (patch) | |
tree | 711b27a7f7ee2c22d3377f24c6b7d0e7b8826c9c /fs/xfs/xfs_inode_item.c | |
parent | xfs: remove xfs_quiesce_attr declaration (diff) | |
download | linux-6fc277c7c935c7e1fdee23e82da988d9d3cb6bef.tar.xz linux-6fc277c7c935c7e1fdee23e82da988d9d3cb6bef.zip |
xfs: rename xfs_ictimestamp_t
Rename xfs_ictimestamp_t to xfs_log_timestamp_t 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 c1b32680f71c..6cc4ca15209c 100644 --- a/fs/xfs/xfs_inode_item.c +++ b/fs/xfs/xfs_inode_item.c @@ -299,13 +299,13 @@ xfs_inode_item_format_attr_fork( * Convert an incore timestamp to a log timestamp. Note that the log format * specifies host endian format! */ -static inline xfs_ictimestamp_t +static inline xfs_log_timestamp_t xfs_inode_to_log_dinode_ts( struct xfs_inode *ip, const struct timespec64 tv) { struct xfs_legacy_ictimestamp *lits; - xfs_ictimestamp_t its; + xfs_log_timestamp_t its; if (xfs_inode_has_bigtime(ip)) return xfs_inode_encode_bigtime(tv); |