diff options
author | Arnd Bergmann <arnd@arndb.de> | 2020-01-03 00:27:44 +0300 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2020-01-06 19:57:36 +0300 |
commit | 3b62f000c86ac7139f79912136b85eacf233b173 (patch) | |
tree | a5f41dc0260917bf3dfa72a7495b73071baa2310 /fs/xfs/xfs_ioctl32.h | |
parent | fd6988496e79a6a4bdb514a4655d2920209eb85d (diff) | |
download | linux-3b62f000c86ac7139f79912136b85eacf233b173.tar.xz |
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>
Diffstat (limited to 'fs/xfs/xfs_ioctl32.h')
-rw-r--r-- | fs/xfs/xfs_ioctl32.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_ioctl32.h b/fs/xfs/xfs_ioctl32.h index 8c7743cd490e..053de7d894cd 100644 --- a/fs/xfs/xfs_ioctl32.h +++ b/fs/xfs/xfs_ioctl32.h @@ -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; |