diff options
author | Christoph Hellwig <hch@lst.de> | 2021-04-21 13:48:27 -0700 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2021-04-22 18:29:25 -0700 |
commit | 732de7dbdbd30df40a6d260a8da6fc5262039439 (patch) | |
tree | 88802739c2deae9ccc5227775ca6503fc9e1d5dc /fs/xfs/libxfs/xfs_log_format.h | |
parent | 6fc277c7c935c7e1fdee23e82da988d9d3cb6bef (diff) | |
download | linux-732de7dbdbd30df40a6d260a8da6fc5262039439.tar.bz2 |
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/libxfs/xfs_log_format.h')
-rw-r--r-- | fs/xfs/libxfs/xfs_log_format.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_log_format.h b/fs/xfs/libxfs/xfs_log_format.h index 5900772d678a..3e15ea29fb8d 100644 --- a/fs/xfs/libxfs/xfs_log_format.h +++ b/fs/xfs/libxfs/xfs_log_format.h @@ -371,7 +371,7 @@ static inline int xfs_ilog_fdata(int w) typedef uint64_t xfs_log_timestamp_t; /* Legacy timestamp encoding format. */ -struct xfs_legacy_ictimestamp { +struct xfs_log_legacy_timestamp { int32_t t_sec; /* timestamp seconds */ int32_t t_nsec; /* timestamp nanoseconds */ }; |