On Fri, 2018-10-12 at 01:22 -0300, Ernesto A. Fernández wrote: > The vfs takes care of updating ctime and mtime on ftruncate(), but on > truncate() it must be done by the module. > > This patch can be tested with xfstests generic/313. > > Signed-off-by: Ernesto A. Fernández <ernesto.mnd.fernandez@xxxxxxxxx> > --- > fs/hfsplus/inode.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/fs/hfsplus/inode.c b/fs/hfsplus/inode.c > index 8e9427a42b81..d7ab9d8c4b67 100644 > --- a/fs/hfsplus/inode.c > +++ b/fs/hfsplus/inode.c > @@ -261,6 +261,7 @@ static int hfsplus_setattr(struct dentry *dentry, struct iattr *attr) > } > truncate_setsize(inode, attr->ia_size); > hfsplus_file_truncate(inode); > + inode->i_mtime = inode->i_ctime = current_time(inode); > } > > setattr_copy(inode, attr); Looks good. Reviewed-by: Vyacheslav Dubeyko <slava@xxxxxxxxxxx> Thanks, Vyacheslav Dubeyko.