diff options
author | Arnd Bergmann <arnd@arndb.de> | 2018-06-20 10:15:13 +0200 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2018-06-27 13:58:00 +0200 |
commit | c3b9cecd89b806e14544af596396e18abd00f145 (patch) | |
tree | 8fa7396a50bf30ba9c5fa6da54cbda067e686c55 /fs/udf/udf_i.h | |
parent | 813835028e9ae1f18cd11bb0ec591d0f0577d96a (diff) |
udf: convert inode stamps to timespec64
The VFS structures are finally converted to always use 64-bit timestamps,
and this file system can represent a long range of on-disk timestamps
already, so now let's fit in the missing bits for udf.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/udf/udf_i.h')
-rw-r--r-- | fs/udf/udf_i.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/udf/udf_i.h b/fs/udf/udf_i.h index 630426ffb775..2ef0e212f08a 100644 --- a/fs/udf/udf_i.h +++ b/fs/udf/udf_i.h @@ -28,7 +28,7 @@ struct udf_ext_cache { */ struct udf_inode_info { - struct timespec i_crtime; + struct timespec64 i_crtime; /* Physical address of inode */ struct kernel_lb_addr i_location; __u64 i_unique; |