rx/rxkad: Move rxkad initialisation into rxkad
[openafs.git] / src / afs / LINUX / osi_module.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /*
11  * Linux module support routines.
12  *
13  */
14 #include <afsconfig.h>
15 #include "afs/param.h"
16
17
18 #include <linux/module.h> /* early to avoid printf->printk mapping */
19 #include "afs/sysincludes.h"
20 #include "afsincludes.h"
21 #include <linux/unistd.h>               /* For syscall numbers. */
22 #include <linux/mm.h>
23
24 #ifdef AFS_AMD64_LINUX20_ENV
25 #include <asm/ia32_unistd.h>
26 #endif
27
28 #include <linux/proc_fs.h>
29 #include <linux/slab.h>
30 #include <linux/init.h>
31 #include <linux/sched.h>
32 #include <linux/kernel.h>
33
34 #include "osi_pagecopy.h"
35
36 extern struct file_system_type afs_fs_type;
37
38 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
39 DEFINE_MUTEX(afs_global_lock);
40 #else
41 DECLARE_MUTEX(afs_global_lock);
42 #endif
43 int afs_global_owner = 0;
44
45 int __init
46 afs_init(void)
47 {
48     int err;
49     AFS_RWLOCK_INIT(&afs_xosi, "afs_xosi");
50
51     osi_Init();
52 #if !defined(AFS_NONFSTRANS)
53     osi_linux_nfssrv_init();
54 #endif
55
56 #ifndef LINUX_KEYRING_SUPPORT
57     err = osi_syscall_init();
58     if (err)
59         return err;
60 #endif
61     err = afs_init_inodecache();
62     if (err) {
63 #ifndef LINUX_KEYRING_SUPPORT
64         osi_syscall_clean();
65 #endif
66         return err;
67     }
68     err = register_filesystem(&afs_fs_type);
69     if (err) {
70         afs_destroy_inodecache();
71 #ifndef LINUX_KEYRING_SUPPORT
72         osi_syscall_clean();
73 #endif
74         return err;
75     }
76
77     osi_sysctl_init();
78 #ifdef LINUX_KEYRING_SUPPORT
79     osi_keyring_init();
80 #endif
81     osi_proc_init();
82     osi_ioctl_init();
83     afs_init_pagecopy();
84
85     return 0;
86 }
87
88 void __exit
89 afs_cleanup(void)
90 {
91     afs_shutdown_pagecopy();
92
93 #ifdef LINUX_KEYRING_SUPPORT
94     osi_keyring_shutdown();
95 #endif
96     osi_sysctl_clean();
97 #ifndef LINUX_KEYRING_SUPPORT
98     osi_syscall_clean();
99 #endif
100     unregister_filesystem(&afs_fs_type);
101
102     afs_destroy_inodecache();
103 #if !defined(AFS_NONFSTRANS)
104     osi_linux_nfssrv_shutdown();
105 #endif
106     osi_event_shutdown();
107     osi_linux_free_afs_memory();
108
109     osi_ioctl_clean();
110     osi_proc_clean();
111
112     return;
113 }
114
115 MODULE_LICENSE("http://www.openafs.org/dl/license10.html");
116 module_init(afs_init);
117 module_exit(afs_cleanup);
118