mtd/fs/jffs2 super.c,1.95,1.96

David Woodhouse dwmw2 at infradead.org
Tue Jul 13 04:57:33 EDT 2004


Update of /home/cvs/mtd/fs/jffs2
In directory phoenix.infradead.org:/tmp/cvs-serv28638

Modified Files:
	super.c 
Log Message:
Fix flags mangling

Index: super.c
===================================================================
RCS file: /home/cvs/mtd/fs/jffs2/super.c,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- super.c	25 May 2004 11:25:25 -0000	1.95
+++ super.c	13 Jul 2004 08:57:30 -0000	1.96
@@ -130,7 +130,7 @@
 		  mtd->index, mtd->name));
 
 	sb->s_op = &jffs2_super_operations;
-	sb->s_flags = flags;
+	sb->s_flags |= MS_NOATIME;
 
 	ret = jffs2_do_fill_super(sb, data, (flags&MS_VERBOSE)?1:0);
 





More information about the linux-mtd-cvs mailing list