Lines Matching refs:ts
591 struct timespec *ts, in vfat_build_slots() argument
655 fat_time_unix2fat(sbi, ts, &time, &date, &time_cs); in vfat_build_slots()
668 int cluster, struct timespec *ts, in vfat_add_entry() argument
683 err = vfat_build_slots(dir, qname->name, len, is_dir, cluster, ts, in vfat_add_entry()
693 dir->i_ctime = dir->i_mtime = dir->i_atime = *ts; in vfat_add_entry()
777 struct timespec ts; in vfat_create() local
782 ts = CURRENT_TIME_SEC; in vfat_create()
783 err = vfat_add_entry(dir, &dentry->d_name, 0, 0, &ts, &sinfo); in vfat_create()
795 inode->i_mtime = inode->i_atime = inode->i_ctime = ts; in vfat_create()
865 struct timespec ts; in vfat_mkdir() local
870 ts = CURRENT_TIME_SEC; in vfat_mkdir()
871 cluster = fat_alloc_new_dir(dir, &ts); in vfat_mkdir()
876 err = vfat_add_entry(dir, &dentry->d_name, 1, cluster, &ts, &sinfo); in vfat_mkdir()
891 inode->i_mtime = inode->i_atime = inode->i_ctime = ts; in vfat_mkdir()
914 struct timespec ts; in vfat_rename() local
937 ts = CURRENT_TIME_SEC; in vfat_rename()
948 &ts, &sinfo); in vfat_rename()
984 old_dir->i_ctime = old_dir->i_mtime = ts; in vfat_rename()
994 new_inode->i_ctime = ts; in vfat_rename()