Lines Matching refs:ts
586 struct timespec *ts, in vfat_build_slots() argument
650 fat_time_unix2fat(sbi, ts, &time, &date, &time_cs); in vfat_build_slots()
663 int cluster, struct timespec *ts, in vfat_add_entry() argument
678 err = vfat_build_slots(dir, qname->name, len, is_dir, cluster, ts, in vfat_add_entry()
688 dir->i_ctime = dir->i_mtime = dir->i_atime = *ts; in vfat_add_entry()
780 struct timespec ts; in vfat_create() local
785 ts = CURRENT_TIME_SEC; in vfat_create()
786 err = vfat_add_entry(dir, &dentry->d_name, 0, 0, &ts, &sinfo); in vfat_create()
798 inode->i_mtime = inode->i_atime = inode->i_ctime = ts; in vfat_create()
868 struct timespec ts; in vfat_mkdir() local
873 ts = CURRENT_TIME_SEC; in vfat_mkdir()
874 cluster = fat_alloc_new_dir(dir, &ts); in vfat_mkdir()
879 err = vfat_add_entry(dir, &dentry->d_name, 1, cluster, &ts, &sinfo); in vfat_mkdir()
894 inode->i_mtime = inode->i_atime = inode->i_ctime = ts; in vfat_mkdir()
917 struct timespec ts; in vfat_rename() local
940 ts = CURRENT_TIME_SEC; in vfat_rename()
951 &ts, &sinfo); in vfat_rename()
987 old_dir->i_ctime = old_dir->i_mtime = ts; in vfat_rename()
997 new_inode->i_ctime = ts; in vfat_rename()