Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[PATCH] 9p: remove superflous MS_NODIRATIME assignment

MS_NOATIME implies MS_NODIRATIME

Signed-off-by: Christoph Hellwig <hch@lst.de>
Cc: Eric Van Hensbergen <ericvh@ericvh.myip.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Christoph Hellwig and committed by
Linus Torvalds
0d456fa4 24a44dca

+1 -1
+1 -1
fs/9p/vfs_super.c
··· 91 91 sb->s_op = &v9fs_super_ops; 92 92 93 93 sb->s_flags = flags | MS_ACTIVE | MS_SYNCHRONOUS | MS_DIRSYNC | 94 - MS_NODIRATIME | MS_NOATIME; 94 + MS_NOATIME; 95 95 } 96 96 97 97 /**