79ba57c4da71c412928cb8a72c955591d23fd7f4
[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_LINUX_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 #ifdef HAVE_LINUX_KUID_T
46 struct user_namespace *afs_ns;
47 #endif
48
49 int __init
50 afs_init(void)
51 {
52     int err;
53
54 #ifdef HAVE_LINUX_KUID_T
55     afs_ns = afs_current_user_ns();
56 #endif
57
58     osi_Init();
59
60     /* Initialize CellLRU since it is used while traversing CellServDB proc
61      * entry */
62
63     QInit(&CellLRU);
64
65 #if !defined(AFS_NONFSTRANS)
66     osi_linux_nfssrv_init();
67 #endif
68
69     err = osi_syscall_init();
70     if (err)
71         return err;
72     err = afs_init_inodecache();
73     if (err) {
74         osi_syscall_clean();
75         return err;
76     }
77     err = register_filesystem(&afs_fs_type);
78     if (err) {
79         afs_destroy_inodecache();
80         osi_syscall_clean();
81         return err;
82     }
83
84     osi_sysctl_init();
85 #ifdef LINUX_KEYRING_SUPPORT
86     osi_keyring_init();
87 #endif
88     osi_proc_init();
89     osi_ioctl_init();
90     afs_init_pagecopy();
91
92     return 0;
93 }
94
95 void __exit
96 afs_cleanup(void)
97 {
98     afs_shutdown_pagecopy();
99
100 #ifdef LINUX_KEYRING_SUPPORT
101     osi_keyring_shutdown();
102 #endif
103     osi_sysctl_clean();
104     osi_syscall_clean();
105     unregister_filesystem(&afs_fs_type);
106
107     afs_destroy_inodecache();
108 #if !defined(AFS_NONFSTRANS)
109     osi_linux_nfssrv_shutdown();
110 #endif
111     shutdown_osisleep();
112     osi_linux_free_afs_memory();
113
114     osi_ioctl_clean();
115     osi_proc_clean();
116
117     return;
118 }
119
120 MODULE_LICENSE("http://www.openafs.org/dl/license10.html");
121 module_init(afs_init);
122 module_exit(afs_cleanup);
123