Lines Matching refs:ts
580 struct timespec *ts, in vfat_build_slots() argument
644 fat_time_unix2fat(sbi, ts, &time, &date, &time_cs); in vfat_build_slots()
656 int cluster, struct timespec *ts, in vfat_add_entry() argument
671 err = vfat_build_slots(dir, qname->name, len, is_dir, cluster, ts, in vfat_add_entry()
681 dir->i_ctime = dir->i_mtime = dir->i_atime = *ts; in vfat_add_entry()
775 struct timespec ts; in vfat_create() local
780 ts = CURRENT_TIME_SEC; in vfat_create()
781 err = vfat_add_entry(dir, &dentry->d_name, 0, 0, &ts, &sinfo); in vfat_create()
793 inode->i_mtime = inode->i_atime = inode->i_ctime = ts; in vfat_create()
864 struct timespec ts; in vfat_mkdir() local
869 ts = CURRENT_TIME_SEC; in vfat_mkdir()
870 cluster = fat_alloc_new_dir(dir, &ts); in vfat_mkdir()
875 err = vfat_add_entry(dir, &dentry->d_name, 1, cluster, &ts, &sinfo); in vfat_mkdir()
890 inode->i_mtime = inode->i_atime = inode->i_ctime = ts; in vfat_mkdir()
912 struct timespec ts; in vfat_rename() local
934 ts = CURRENT_TIME_SEC; in vfat_rename()
945 &ts, &sinfo); in vfat_rename()
979 old_dir->i_ctime = old_dir->i_mtime = ts; in vfat_rename()
989 new_inode->i_ctime = ts; in vfat_rename()