summaryrefslogtreecommitdiffstats
path: root/fs/udf/udfdecl.h
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2018-06-20 04:15:13 -0400
committerJan Kara <jack@suse.cz>2018-06-27 07:58:00 -0400
commitc3b9cecd89b806e14544af596396e18abd00f145 (patch)
tree8fa7396a50bf30ba9c5fa6da54cbda067e686c55 /fs/udf/udfdecl.h
parent813835028e9ae1f18cd11bb0ec591d0f0577d96a (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/udfdecl.h')
-rw-r--r--fs/udf/udfdecl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/udf/udfdecl.h b/fs/udf/udfdecl.h
index 84c47dde4d26..ee246769dee4 100644
--- a/fs/udf/udfdecl.h
+++ b/fs/udf/udfdecl.h
@@ -258,8 +258,8 @@ extern struct long_ad *udf_get_filelongad(uint8_t *, int, uint32_t *, int);
258extern struct short_ad *udf_get_fileshortad(uint8_t *, int, uint32_t *, int); 258extern struct short_ad *udf_get_fileshortad(uint8_t *, int, uint32_t *, int);
259 259
260/* udftime.c */ 260/* udftime.c */
261extern void udf_disk_stamp_to_time(struct timespec *dest, 261extern void udf_disk_stamp_to_time(struct timespec64 *dest,
262 struct timestamp src); 262 struct timestamp src);
263extern void udf_time_to_disk_stamp(struct timestamp *dest, struct timespec src); 263extern void udf_time_to_disk_stamp(struct timestamp *dest, struct timespec64 src);
264 264
265#endif /* __UDF_DECL_H */ 265#endif /* __UDF_DECL_H */