xfs: rename compat_time_t to old_time32_t

The compat_time_t type has been removed everywhere else,
as most users rely on old_time32_t for both native and
compat mode handling of 32-bit time_t.

Remove the last one in xfs.

Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
This commit is contained in:
Arnd Bergmann
2020-01-02 13:27:44 -08:00
committed by Darrick J. Wong
parent fd6988496e
commit 3b62f000c8
2 changed files with 2 additions and 2 deletions

View File

@@ -32,7 +32,7 @@
#endif
typedef struct compat_xfs_bstime {
compat_time_t tv_sec; /* seconds */
old_time32_t tv_sec; /* seconds */
__s32 tv_nsec; /* and nanoseconds */
} compat_xfs_bstime_t;