]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/orangefs/orangefs-mod.c
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[mirror_ubuntu-artful-kernel.git] / fs / orangefs / orangefs-mod.c
CommitLineData
274dcf55
MM
1/*
2 * (C) 2001 Clemson University and The University of Chicago
3 *
4 * Changes by Acxiom Corporation to add proc file handler for pvfs2 client
5 * parameters, Copyright Acxiom Corporation, 2005.
6 *
7 * See COPYING in top-level directory.
8 */
9
10#include "protocol.h"
575e9461
MM
11#include "orangefs-kernel.h"
12#include "orangefs-debugfs.h"
13#include "orangefs-sysfs.h"
274dcf55 14
8bb8aefd
YL
15/* ORANGEFS_VERSION is a ./configure define */
16#ifndef ORANGEFS_VERSION
4c27b327 17#define ORANGEFS_VERSION "upstream"
274dcf55
MM
18#endif
19
20/*
21 * global variables declared here
22 */
23
889d5f1b 24struct orangefs_stats orangefs_stats;
274dcf55
MM
25
26/* the size of the hash tables for ops in progress */
27int hash_table_size = 509;
28
29static ulong module_parm_debug_mask;
44f46410 30__u64 orangefs_gossip_debug_mask;
8bb8aefd
YL
31int op_timeout_secs = ORANGEFS_DEFAULT_OP_TIMEOUT_SECS;
32int slot_timeout_secs = ORANGEFS_DEFAULT_SLOT_TIMEOUT_SECS;
1d503617
MB
33int orangefs_dcache_timeout_msecs = 50;
34int orangefs_getattr_timeout_msecs = 50;
274dcf55
MM
35
36MODULE_LICENSE("GPL");
8bb8aefd
YL
37MODULE_AUTHOR("ORANGEFS Development Team");
38MODULE_DESCRIPTION("The Linux Kernel VFS interface to ORANGEFS");
39MODULE_PARM_DESC(module_parm_debug_mask, "debugging level (see orangefs-debug.h for values)");
274dcf55
MM
40MODULE_PARM_DESC(op_timeout_secs, "Operation timeout in seconds");
41MODULE_PARM_DESC(slot_timeout_secs, "Slot timeout in seconds");
42MODULE_PARM_DESC(hash_table_size,
43 "size of hash table for operations in progress");
44
8bb8aefd 45static struct file_system_type orangefs_fs_type = {
274dcf55 46 .name = "pvfs2",
8bb8aefd
YL
47 .mount = orangefs_mount,
48 .kill_sb = orangefs_kill_sb,
274dcf55
MM
49 .owner = THIS_MODULE,
50};
51
52module_param(hash_table_size, int, 0);
cb987f3c 53module_param(module_parm_debug_mask, ulong, 0644);
274dcf55
MM
54module_param(op_timeout_secs, int, 0);
55module_param(slot_timeout_secs, int, 0);
56
274dcf55 57/*
54804949
MM
58 * Blocks non-priority requests from being queued for servicing. This
59 * could be used for protecting the request list data structure, but
60 * for now it's only being used to stall the op addition to the request
61 * list
62 */
1d503617 63DEFINE_MUTEX(orangefs_request_mutex);
274dcf55
MM
64
65/* hash table for storing operations waiting for matching downcall */
1d503617
MB
66struct list_head *orangefs_htable_ops_in_progress;
67DEFINE_SPINLOCK(orangefs_htable_ops_in_progress_lock);
274dcf55
MM
68
69/* list for queueing upcall operations */
8bb8aefd 70LIST_HEAD(orangefs_request_list);
274dcf55 71
8bb8aefd
YL
72/* used to protect the above orangefs_request_list */
73DEFINE_SPINLOCK(orangefs_request_list_lock);
274dcf55
MM
74
75/* used for incoming request notification */
8bb8aefd 76DECLARE_WAIT_QUEUE_HEAD(orangefs_request_list_waitq);
274dcf55 77
8bb8aefd 78static int __init orangefs_init(void)
274dcf55
MM
79{
80 int ret = -1;
81 __u32 i = 0;
82
274dcf55
MM
83 if (op_timeout_secs < 0)
84 op_timeout_secs = 0;
85
86 if (slot_timeout_secs < 0)
87 slot_timeout_secs = 0;
88
89 /* initialize global book keeping data structures */
90 ret = op_cache_initialize();
91 if (ret < 0)
70823b9b 92 goto out;
274dcf55 93
8bb8aefd 94 ret = orangefs_inode_cache_initialize();
274dcf55 95 if (ret < 0)
2d4cae0d 96 goto cleanup_op;
274dcf55 97
1d503617 98 orangefs_htable_ops_in_progress =
274dcf55 99 kcalloc(hash_table_size, sizeof(struct list_head), GFP_KERNEL);
1d503617 100 if (!orangefs_htable_ops_in_progress) {
274dcf55
MM
101 gossip_err("Failed to initialize op hashtable");
102 ret = -ENOMEM;
2f83ace3 103 goto cleanup_inode;
274dcf55
MM
104 }
105
106 /* initialize a doubly linked at each hash table index */
107 for (i = 0; i < hash_table_size; i++)
1d503617 108 INIT_LIST_HEAD(&orangefs_htable_ops_in_progress[i]);
274dcf55
MM
109
110 ret = fsid_key_table_initialize();
111 if (ret < 0)
112 goto cleanup_progress_table;
113
114 /*
115 * Build the contents of /sys/kernel/debug/orangefs/debug-help
116 * from the keywords in the kernel keyword/mask array.
117 *
118 * The keywords in the client keyword/mask array are
119 * unknown at boot time.
120 *
121 * orangefs_prepare_debugfs_help_string will be used again
dc033621 122 * later to rebuild the debug-help-string after the client starts
274dcf55
MM
123 * and passes along the needed info. The argument signifies
124 * which time orangefs_prepare_debugfs_help_string is being
125 * called.
274dcf55
MM
126 */
127 ret = orangefs_prepare_debugfs_help_string(1);
128 if (ret)
1a0ce16d 129 goto cleanup_key_table;
2180c52c 130
44f46410 131 ret = orangefs_debugfs_init(module_parm_debug_mask);
2180c52c
MM
132 if (ret)
133 goto debugfs_init_failed;
274dcf55 134
2180c52c
MM
135 ret = orangefs_sysfs_init();
136 if (ret)
137 goto sysfs_init_failed;
274dcf55 138
2f83ace3
MB
139 /* Initialize the orangefsdev subsystem. */
140 ret = orangefs_dev_init();
141 if (ret < 0) {
142 gossip_err("%s: could not initialize device subsystem %d!\n",
143 __func__,
144 ret);
145 goto cleanup_device;
146 }
147
8bb8aefd 148 ret = register_filesystem(&orangefs_fs_type);
274dcf55 149 if (ret == 0) {
dc033621
MM
150 pr_info("%s: module version %s loaded\n",
151 __func__,
152 ORANGEFS_VERSION);
2180c52c
MM
153 ret = 0;
154 goto out;
274dcf55
MM
155 }
156
274dcf55 157 orangefs_sysfs_exit();
274dcf55 158
2f83ace3
MB
159cleanup_device:
160 orangefs_dev_cleanup();
161
2180c52c
MM
162sysfs_init_failed:
163
2180c52c
MM
164debugfs_init_failed:
165 orangefs_debugfs_cleanup();
166
1a0ce16d
MM
167cleanup_key_table:
168 fsid_key_table_finalize();
2180c52c 169
274dcf55 170cleanup_progress_table:
1d503617 171 kfree(orangefs_htable_ops_in_progress);
274dcf55 172
274dcf55 173cleanup_inode:
8bb8aefd 174 orangefs_inode_cache_finalize();
274dcf55 175
274dcf55
MM
176cleanup_op:
177 op_cache_finalize();
178
274dcf55
MM
179out:
180 return ret;
181}
182
8bb8aefd 183static void __exit orangefs_exit(void)
274dcf55
MM
184{
185 int i = 0;
8bb8aefd 186 gossip_debug(GOSSIP_INIT_DEBUG, "orangefs: orangefs_exit called\n");
274dcf55 187
8bb8aefd
YL
188 unregister_filesystem(&orangefs_fs_type);
189 orangefs_debugfs_cleanup();
274dcf55
MM
190 orangefs_sysfs_exit();
191 fsid_key_table_finalize();
8bb8aefd 192 orangefs_dev_cleanup();
96acf9d6 193 BUG_ON(!list_empty(&orangefs_request_list));
274dcf55 194 for (i = 0; i < hash_table_size; i++)
1d503617 195 BUG_ON(!list_empty(&orangefs_htable_ops_in_progress[i]));
274dcf55 196
8bb8aefd 197 orangefs_inode_cache_finalize();
274dcf55
MM
198 op_cache_finalize();
199
1d503617 200 kfree(orangefs_htable_ops_in_progress);
274dcf55 201
8bb8aefd 202 pr_info("orangefs: module version %s unloaded\n", ORANGEFS_VERSION);
274dcf55
MM
203}
204
205/*
206 * What we do in this function is to walk the list of operations
207 * that are in progress in the hash table and mark them as purged as well.
208 */
209void purge_inprogress_ops(void)
210{
211 int i;
212
213 for (i = 0; i < hash_table_size; i++) {
8bb8aefd
YL
214 struct orangefs_kernel_op_s *op;
215 struct orangefs_kernel_op_s *next;
274dcf55 216
1d503617 217 spin_lock(&orangefs_htable_ops_in_progress_lock);
274dcf55
MM
218 list_for_each_entry_safe(op,
219 next,
1d503617 220 &orangefs_htable_ops_in_progress[i],
274dcf55 221 list) {
274dcf55 222 set_op_state_purged(op);
9d9e7ba9
MM
223 gossip_debug(GOSSIP_DEV_DEBUG,
224 "%s: op:%s: op_state:%d: process:%s:\n",
225 __func__,
226 get_opname_string(op),
227 op->op_state,
228 current->comm);
274dcf55 229 }
1d503617 230 spin_unlock(&orangefs_htable_ops_in_progress_lock);
274dcf55
MM
231 }
232}
233
8bb8aefd
YL
234module_init(orangefs_init);
235module_exit(orangefs_exit);