Lines Matching refs:newattrs
22 struct iattr newattrs; in utimes_common() local
34 newattrs.ia_valid = ATTR_CTIME | ATTR_MTIME | ATTR_ATIME; in utimes_common()
37 newattrs.ia_valid &= ~ATTR_ATIME; in utimes_common()
39 newattrs.ia_atime = timestamp_truncate(times[0], inode); in utimes_common()
40 newattrs.ia_valid |= ATTR_ATIME_SET; in utimes_common()
44 newattrs.ia_valid &= ~ATTR_MTIME; in utimes_common()
46 newattrs.ia_mtime = timestamp_truncate(times[1], inode); in utimes_common()
47 newattrs.ia_valid |= ATTR_MTIME_SET; in utimes_common()
54 newattrs.ia_valid |= ATTR_TIMES_SET; in utimes_common()
56 newattrs.ia_valid |= ATTR_TOUCH; in utimes_common()
60 error = notify_change2(path->mnt, path->dentry, &newattrs, &delegated_inode); in utimes_common()