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()
662 int cluster, struct timespec *ts, in vfat_add_entry() argument
677 err = vfat_build_slots(dir, qname->name, len, is_dir, cluster, ts, in vfat_add_entry()
687 dir->i_ctime = dir->i_mtime = dir->i_atime = *ts; in vfat_add_entry()
779 struct timespec ts; in vfat_create() local
784 ts = CURRENT_TIME_SEC; in vfat_create()
785 err = vfat_add_entry(dir, &dentry->d_name, 0, 0, &ts, &sinfo); in vfat_create()
797 inode->i_mtime = inode->i_atime = inode->i_ctime = ts; in vfat_create()
867 struct timespec ts; in vfat_mkdir() local
872 ts = CURRENT_TIME_SEC; in vfat_mkdir()
873 cluster = fat_alloc_new_dir(dir, &ts); in vfat_mkdir()
878 err = vfat_add_entry(dir, &dentry->d_name, 1, cluster, &ts, &sinfo); in vfat_mkdir()
893 inode->i_mtime = inode->i_atime = inode->i_ctime = ts; in vfat_mkdir()
916 struct timespec ts; in vfat_rename() local
938 ts = CURRENT_TIME_SEC; in vfat_rename()
949 &ts, &sinfo); in vfat_rename()
983 old_dir->i_ctime = old_dir->i_mtime = ts; in vfat_rename()
993 new_inode->i_ctime = ts; in vfat_rename()