libafs: Drop xvcache for AllocCBR
[openafs.git] / src / afs / LINUX / osi_pag_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 #include <linux/module.h> /* early to avoid printf->printk mapping */
18 #include "afs/sysincludes.h"
19 #include "afsincludes.h"
20 #include <linux/unistd.h>               /* For syscall numbers. */
21 #include <linux/mm.h>
22
23 #ifdef AFS_AMD64_LINUX20_ENV
24 #include <asm/ia32_unistd.h>
25 #endif
26
27 #include <linux/proc_fs.h>
28 #include <linux/slab.h>
29 #include <linux/init.h>
30 #include <linux/sched.h>
31 #include <linux/kernel.h>
32
33 static unsigned long nfs_server_addr = 0;
34 #if defined(module_param) && LINUX_VERSION_CODE > KERNEL_VERSION(2,6,9)
35 module_param(nfs_server_addr, long, 0);
36 #else
37 MODULE_PARM(nfs_server_addr,  "l");
38 #endif
39 MODULE_PARM_DESC(nfs_server_addr,  "IP Address of NFS Server");
40
41 static char *this_cell = 0;
42 #if defined(module_param_array) && LINUX_VERSION_CODE > KERNEL_VERSION(2,6,9)
43 module_param(this_cell, charp, 0);
44 #else
45 MODULE_PARM(this_cell, "s");
46 #endif
47 MODULE_PARM_DESC(this_cell, "Local cell name");
48
49 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
50 DEFINE_MUTEX(afs_global_lock);
51 #else
52 DECLARE_MUTEX(afs_global_lock);
53 #endif
54 struct proc_dir_entry *openafs_procfs;
55 int afs_global_owner = 0;
56
57 int __init
58 afspag_init(void)
59 {
60 #if !defined(EXPORTED_PROC_ROOT_FS)
61     char path[64];
62 #endif
63     int err;
64
65     osi_Init();
66
67     err = osi_syscall_init();
68     if (err)
69         return err;
70 #if defined(EXPORTED_PROC_ROOT_FS)
71     openafs_procfs = proc_mkdir(PROC_FSDIRNAME, proc_root_fs);
72 #else
73     sprintf(path, "fs/%s", PROC_FSDIRNAME);
74     openafs_procfs = proc_mkdir(path, NULL);
75 #endif
76     osi_ioctl_init();
77
78     afspag_Init(htonl(nfs_server_addr));
79     if (this_cell)
80         afspag_SetPrimaryCell(this_cell);
81
82     return 0;
83 }
84
85 void __exit
86 afspag_cleanup(void)
87 {
88 #if !defined(EXPORTED_PROC_ROOT_FS)
89     char path[64];
90 #endif
91     osi_syscall_clean();
92
93     osi_linux_free_afs_memory();
94
95     osi_ioctl_clean();
96 #if defined(EXPORTED_PROC_ROOT_FS)
97     remove_proc_entry(PROC_FSDIRNAME, proc_root_fs);
98 #else
99     sprintf(path, "fs/%s", PROC_FSDIRNAME);
100     remove_proc_entry(path, NULL);
101 #endif
102     return;
103 }
104
105 MODULE_LICENSE("http://www.openafs.org/dl/license10.html");
106 module_init(afspag_init);
107 module_exit(afspag_cleanup);
108
109 /* Hack alert!
110  * These will never be called in the standalone PAG manager, because
111  * they are only referenced in afs_InitReq, and nothing calls that.
112  * However, we need to define them in order to resolve the reference,
113  * unless we want to move afs_InitReq out of afs_osi_pag.c.
114  */
115 int osi_linux_nfs_initreq(struct vrequest *av, afs_ucred_t *cr, int *code)
116 {
117     *code = EACCES;
118     return 1;
119 }
120
121 int
122 afs_nfsclient_reqhandler(struct afs_exporter *exporter,
123                          afs_ucred_t **cred,
124                          afs_uint32 host, afs_int32 *pagparam,
125                          struct afs_exporter **outexporter)
126 {
127     return EINVAL;
128 }