On Thursday 12 November 2015 21:26:02 DengChao wrote:
static void hpfs_update_directory_times(struct inode *dir) {
time_t t = get_seconds();
time64_t t = ktime_get_real_seconds(); if (t == dir->i_mtime.tv_sec && t == dir->i_ctime.tv_sec) return;
It's too early for this change, as the i_mtime and i_ctime fields are still using time_t. We first have to change the generic VFS code.
Arnd