The patch titled Subject: hfs: update timestamp on truncate() has been removed from the -mm tree. Its filename was hfs-update-timestamp-on-truncate.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Ernesto A. Fernández <ernesto.mnd.fernandez@xxxxxxxxx> Subject: hfs: update timestamp on truncate() The vfs takes care of updating mtime on ftruncate(), but on truncate() it must be done by the module. Link: http://lkml.kernel.org/r/e1611eda2985b672ed2d8677350b4ad8c2d07e8a.1539316825.git.ernesto.mnd.fernandez@xxxxxxxxx Signed-off-by: Ernesto A. Fernández <ernesto.mnd.fernandez@xxxxxxxxx> Reviewed-by: Vyacheslav Dubeyko <slava@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/hfs/inode.c | 2 ++ 1 file changed, 2 insertions(+) --- a/fs/hfs/inode.c~hfs-update-timestamp-on-truncate +++ a/fs/hfs/inode.c @@ -642,6 +642,8 @@ int hfs_inode_setattr(struct dentry *den truncate_setsize(inode, attr->ia_size); hfs_file_truncate(inode); + inode->i_atime = inode->i_mtime = inode->i_ctime = + current_time(inode); } setattr_copy(inode, attr); _ Patches currently in -mm which might be from ernesto.mnd.fernandez@xxxxxxxxx are