1
0
Fork 0

[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>
hifive-unleashed-5.1
Christoph Hellwig 2006-01-09 20:52:15 -08:00 committed by Linus Torvalds
parent 24a44dca35
commit 0d456fa426
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ v9fs_fill_super(struct super_block *sb, struct v9fs_session_info *v9ses,
sb->s_op = &v9fs_super_ops;
sb->s_flags = flags | MS_ACTIVE | MS_SYNCHRONOUS | MS_DIRSYNC |
MS_NODIRATIME | MS_NOATIME;
MS_NOATIME;
}
/**