Lines Matching refs:ts
581 struct timespec64 *ts, in vfat_build_slots() argument
645 fat_time_unix2fat(sbi, ts, &time, &date, &time_cs); in vfat_build_slots()
657 int is_dir, int cluster, struct timespec64 *ts, in vfat_add_entry() argument
672 err = vfat_build_slots(dir, qname->name, len, is_dir, cluster, ts, in vfat_add_entry()
682 fat_truncate_time(dir, ts, S_CTIME|S_MTIME); in vfat_add_entry()
765 struct timespec64 ts; in vfat_create() local
770 ts = current_time(dir); in vfat_create()
771 err = vfat_add_entry(dir, &dentry->d_name, 0, 0, &ts, &sinfo); in vfat_create()
783 fat_truncate_time(inode, &ts, S_ATIME|S_CTIME|S_MTIME); in vfat_create()
854 struct timespec64 ts; in vfat_mkdir() local
859 ts = current_time(dir); in vfat_mkdir()
860 cluster = fat_alloc_new_dir(dir, &ts); in vfat_mkdir()
865 err = vfat_add_entry(dir, &dentry->d_name, 1, cluster, &ts, &sinfo); in vfat_mkdir()
880 fat_truncate_time(inode, &ts, S_ATIME|S_CTIME|S_MTIME); in vfat_mkdir()
903 struct timespec64 ts; in vfat_rename() local
928 ts = current_time(old_dir); in vfat_rename()
939 &ts, &sinfo); in vfat_rename()
973 fat_truncate_time(old_dir, &ts, S_CTIME|S_MTIME); in vfat_rename()
983 fat_truncate_time(new_inode, &ts, S_CTIME); in vfat_rename()