patch-1.3.58 linux/fs/xiafs/inode.c
Next file: linux/include/asm-alpha/param.h
Previous file: linux/fs/umsdos/inode.c
Back to the patch index
Back to the overall index
- Lines: 29
- Date:
Mon Jan 15 07:59:13 1996
- Orig file:
v1.3.57/linux/fs/xiafs/inode.c
- Orig date:
Mon Nov 27 12:48:32 1995
diff -u --recursive --new-file v1.3.57/linux/fs/xiafs/inode.c linux/fs/xiafs/inode.c
@@ -511,17 +511,25 @@
return err;
}
-#ifdef MODULE
-
/* Every kernel module contains stuff like this. */
static struct file_system_type xiafs_fs_type = {
xiafs_read_super, "xiafs", 1, NULL
};
+int init_xiafs_fs(void)
+{
+ return register_filesystem(&xiafs_fs_type);
+}
+
+#ifdef MODULE
int init_module(void)
{
- return register_filesystem(&xiafs_fs_type);
+ int status;
+
+ if ((status = init_xiafs_fs()) == 0)
+ register_symtab(0);
+ return status;
}
void cleanup_module(void)
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov
with Sam's (original) version of this