patch-1.3.58 linux/fs/ncpfs/inode.c
Next file: linux/fs/nfs/inode.c
Previous file: linux/fs/ncpfs/dir.c
Back to the patch index
Back to the overall index
- Lines: 38
- Date:
Mon Jan 15 07:59:11 1996
- Orig file:
v1.3.57/linux/fs/ncpfs/inode.c
- Orig date:
Tue Jan 2 16:46:28 1996
diff -u --recursive --new-file v1.3.57/linux/fs/ncpfs/inode.c linux/fs/ncpfs/inode.c
@@ -483,25 +483,31 @@
int ncp_current_malloced;
#endif
-#ifdef MODULE
-
static struct file_system_type ncp_fs_type = {
ncp_read_super, "ncpfs", 0, NULL
};
-int
+int init_ncp_fs(void)
+{
+ return register_filesystem(&ncp_fs_type);
+}
+
+#ifdef MODULE
init_module( void)
{
+ int status;
+
DPRINTK("ncpfs: init_module called\n");
#ifdef DEBUG_NCP_MALLOC
ncp_malloced = 0;
ncp_current_malloced = 0;
#endif
-
ncp_init_dir_cache();
- register_filesystem(&ncp_fs_type);
- return 0;
+
+ if ((status = init_ncp_fs()) == 0)
+ register_symtab(0);
+ return status;
}
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