Searched refs:gran (Results 1 – 1 of 1) sorted by relevance
2163 struct timespec64 timespec64_trunc(struct timespec64 t, unsigned gran) in timespec64_trunc() argument2166 if (gran == 1) { in timespec64_trunc()2168 } else if (gran == NSEC_PER_SEC) { in timespec64_trunc()2170 } else if (gran > 1 && gran < NSEC_PER_SEC) { in timespec64_trunc()2171 t.tv_nsec -= t.tv_nsec % gran; in timespec64_trunc()2173 WARN(1, "illegal file time granularity: %u", gran); in timespec64_trunc()2191 unsigned int gran = sb->s_time_gran; in timestamp_truncate() local2198 if (gran == 1) in timestamp_truncate()2200 else if (gran == NSEC_PER_SEC) in timestamp_truncate()2202 else if (gran > 1 && gran < NSEC_PER_SEC) in timestamp_truncate()[all …]