Update of /cvsroot/linux-vax/kernel-2.4/fs/efs
In directory usw-pr-cvs1:/tmp/cvs-serv27691/efs
Modified Files:
inode.c super.c
Log Message:
sync 2.4.15 commit 11
Index: inode.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/fs/efs/inode.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -r1.1.1.1 -r1.2
--- inode.c 14 Jan 2001 16:39:06 -0000 1.1.1.1
+++ inode.c 9 Apr 2002 13:11:17 -0000 1.2
@@ -9,6 +9,8 @@
#include <linux/efs_fs.h>
#include <linux/efs_fs_sb.h>
+#include <linux/module.h>
+
extern int efs_get_block(struct inode *, long, struct buffer_head *, int);
static int efs_readpage(struct file *file, struct page *page)
@@ -302,3 +304,4 @@
return 0;
}
+MODULE_LICENSE("GPL");
Index: super.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/fs/efs/super.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -r1.1.1.1 -r1.2
--- super.c 14 Jan 2001 16:39:04 -0000 1.1.1.1
+++ super.c 9 Apr 2002 13:11:17 -0000 1.2
@@ -178,6 +178,7 @@
s->s_magic = EFS_SUPER_MAGIC;
s->s_blocksize = EFS_BLOCKSIZE;
s->s_blocksize_bits = EFS_BLOCKSIZE_BITS;
+
if (!(s->s_flags & MS_RDONLY)) {
#ifdef DEBUG
printk(KERN_INFO "EFS: forcing read-only mode\n");
|