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()
667 int is_dir, int cluster, struct timespec *ts, in vfat_add_entry() argument
682 err = vfat_build_slots(dir, qname->name, len, is_dir, cluster, ts, in vfat_add_entry()
692 dir->i_ctime = dir->i_mtime = dir->i_atime = *ts; in vfat_add_entry()
786 struct timespec ts; in vfat_create() local
791 ts = current_time(dir); in vfat_create()
792 err = vfat_add_entry(dir, &dentry->d_name, 0, 0, &ts, &sinfo); in vfat_create()
804 inode->i_mtime = inode->i_atime = inode->i_ctime = ts; in vfat_create()
875 struct timespec ts; in vfat_mkdir() local
880 ts = current_time(dir); in vfat_mkdir()
881 cluster = fat_alloc_new_dir(dir, &ts); in vfat_mkdir()
886 err = vfat_add_entry(dir, &dentry->d_name, 1, cluster, &ts, &sinfo); in vfat_mkdir()
901 inode->i_mtime = inode->i_atime = inode->i_ctime = ts; in vfat_mkdir()
924 struct timespec ts; in vfat_rename() local
949 ts = current_time(old_dir); in vfat_rename()
960 &ts, &sinfo); in vfat_rename()
994 old_dir->i_ctime = old_dir->i_mtime = ts; in vfat_rename()
1004 new_inode->i_ctime = ts; in vfat_rename()