[RFC 30/32] fuse: convert to struct inode_time

2014-05-30 Thread Arnd Bergmann
fuse uses 64-bit seconds for inode timestamps in the user interface, which will work basically forever, but the VFS uses struct timespec for timestamps, which is only good until 2038 on 32-bit CPUs. This gets us one small step closer to lifting the VFS limit by using struct inode_time in fuse.

[RFC 30/32] fuse: convert to struct inode_time

2014-05-30 Thread Arnd Bergmann
fuse uses 64-bit seconds for inode timestamps in the user interface, which will work basically forever, but the VFS uses struct timespec for timestamps, which is only good until 2038 on 32-bit CPUs. This gets us one small step closer to lifting the VFS limit by using struct inode_time in fuse.