The patch titled ocfs2: relative atime support has been removed from the -mm tree. Its filename was ocfs2-relative-atime-support.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: ocfs2: relative atime support From: Mark Fasheh <mark.fasheh@xxxxxxxxxx> Update ocfs2_should_update_atime() to understand the MNT_RELATIME flag and to test against mtime / ctime accordingly. [akpm@xxxxxxxx: cleanups] Signed-off-by: Mark Fasheh <mark.fasheh@xxxxxxxxxx> Cc: Valerie Henson <val_henson@xxxxxxxxxxxxxxx> Cc: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Cc: Christoph Hellwig <hch@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/ocfs2/file.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff -puN fs/ocfs2/file.c~ocfs2-relative-atime-support fs/ocfs2/file.c --- a/fs/ocfs2/file.c~ocfs2-relative-atime-support +++ a/fs/ocfs2/file.c @@ -153,6 +153,14 @@ int ocfs2_should_update_atime(struct ino ((vfsmnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))) return 0; + if (vfsmnt->mnt_flags & MNT_RELATIME) { + if ((timespec_compare(&inode->i_atime, &inode->i_mtime) <= 0) || + (timespec_compare(&inode->i_atime, &inode->i_ctime) <= 0)) + return 1; + + return 0; + } + now = CURRENT_TIME; if ((now.tv_sec - inode->i_atime.tv_sec <= osb->s_atime_quantum)) return 0; _ Patches currently in -mm which might be from mark.fasheh@xxxxxxxxxx are conditionally-check-expected_preempt_count-in-__resched_legal.patch git-ocfs2.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html