2 * (C) 2001 Clemson University and The University of Chicago
4 * Changes by Acxiom Corporation to add proc file handler for pvfs2 client
5 * parameters, Copyright Acxiom Corporation, 2005.
7 * See COPYING in top-level directory.
11 #include "orangefs-kernel.h"
12 #include "orangefs-debugfs.h"
13 #include "orangefs-sysfs.h"
15 /* ORANGEFS_VERSION is a ./configure define */
16 #ifndef ORANGEFS_VERSION
17 #define ORANGEFS_VERSION "upstream"
21 * global variables declared here
24 struct orangefs_stats orangefs_stats
;
26 /* the size of the hash tables for ops in progress */
27 int hash_table_size
= 509;
29 static ulong module_parm_debug_mask
;
30 __u64 orangefs_gossip_debug_mask
;
31 int op_timeout_secs
= ORANGEFS_DEFAULT_OP_TIMEOUT_SECS
;
32 int slot_timeout_secs
= ORANGEFS_DEFAULT_SLOT_TIMEOUT_SECS
;
33 int orangefs_dcache_timeout_msecs
= 50;
34 int orangefs_getattr_timeout_msecs
= 50;
36 MODULE_LICENSE("GPL");
37 MODULE_AUTHOR("ORANGEFS Development Team");
38 MODULE_DESCRIPTION("The Linux Kernel VFS interface to ORANGEFS");
39 MODULE_PARM_DESC(module_parm_debug_mask
, "debugging level (see orangefs-debug.h for values)");
40 MODULE_PARM_DESC(op_timeout_secs
, "Operation timeout in seconds");
41 MODULE_PARM_DESC(slot_timeout_secs
, "Slot timeout in seconds");
42 MODULE_PARM_DESC(hash_table_size
,
43 "size of hash table for operations in progress");
45 static struct file_system_type orangefs_fs_type
= {
47 .mount
= orangefs_mount
,
48 .kill_sb
= orangefs_kill_sb
,
52 module_param(hash_table_size
, int, 0);
53 module_param(module_parm_debug_mask
, ulong
, 0644);
54 module_param(op_timeout_secs
, int, 0);
55 module_param(slot_timeout_secs
, int, 0);
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
63 DEFINE_MUTEX(orangefs_request_mutex
);
65 /* hash table for storing operations waiting for matching downcall */
66 struct list_head
*orangefs_htable_ops_in_progress
;
67 DEFINE_SPINLOCK(orangefs_htable_ops_in_progress_lock
);
69 /* list for queueing upcall operations */
70 LIST_HEAD(orangefs_request_list
);
72 /* used to protect the above orangefs_request_list */
73 DEFINE_SPINLOCK(orangefs_request_list_lock
);
75 /* used for incoming request notification */
76 DECLARE_WAIT_QUEUE_HEAD(orangefs_request_list_waitq
);
78 static int __init
orangefs_init(void)
83 ret
= bdi_init(&orangefs_backing_dev_info
);
88 if (op_timeout_secs
< 0)
91 if (slot_timeout_secs
< 0)
92 slot_timeout_secs
= 0;
94 /* initialize global book keeping data structures */
95 ret
= op_cache_initialize();
99 ret
= orangefs_inode_cache_initialize();
103 orangefs_htable_ops_in_progress
=
104 kcalloc(hash_table_size
, sizeof(struct list_head
), GFP_KERNEL
);
105 if (!orangefs_htable_ops_in_progress
) {
106 gossip_err("Failed to initialize op hashtable");
111 /* initialize a doubly linked at each hash table index */
112 for (i
= 0; i
< hash_table_size
; i
++)
113 INIT_LIST_HEAD(&orangefs_htable_ops_in_progress
[i
]);
115 ret
= fsid_key_table_initialize();
117 goto cleanup_progress_table
;
120 * Build the contents of /sys/kernel/debug/orangefs/debug-help
121 * from the keywords in the kernel keyword/mask array.
123 * The keywords in the client keyword/mask array are
124 * unknown at boot time.
126 * orangefs_prepare_debugfs_help_string will be used again
127 * later to rebuild the debug-help-string after the client starts
128 * and passes along the needed info. The argument signifies
129 * which time orangefs_prepare_debugfs_help_string is being
132 ret
= orangefs_prepare_debugfs_help_string(1);
134 goto cleanup_key_table
;
136 ret
= orangefs_debugfs_init(module_parm_debug_mask
);
138 goto debugfs_init_failed
;
140 ret
= orangefs_sysfs_init();
142 goto sysfs_init_failed
;
144 /* Initialize the orangefsdev subsystem. */
145 ret
= orangefs_dev_init();
147 gossip_err("%s: could not initialize device subsystem %d!\n",
153 ret
= register_filesystem(&orangefs_fs_type
);
155 pr_info("%s: module version %s loaded\n",
162 orangefs_sysfs_exit();
165 orangefs_dev_cleanup();
170 orangefs_debugfs_cleanup();
173 fsid_key_table_finalize();
175 cleanup_progress_table
:
176 kfree(orangefs_htable_ops_in_progress
);
179 orangefs_inode_cache_finalize();
185 bdi_destroy(&orangefs_backing_dev_info
);
191 static void __exit
orangefs_exit(void)
194 gossip_debug(GOSSIP_INIT_DEBUG
, "orangefs: orangefs_exit called\n");
196 unregister_filesystem(&orangefs_fs_type
);
197 orangefs_debugfs_cleanup();
198 orangefs_sysfs_exit();
199 fsid_key_table_finalize();
200 orangefs_dev_cleanup();
201 BUG_ON(!list_empty(&orangefs_request_list
));
202 for (i
= 0; i
< hash_table_size
; i
++)
203 BUG_ON(!list_empty(&orangefs_htable_ops_in_progress
[i
]));
205 orangefs_inode_cache_finalize();
208 kfree(orangefs_htable_ops_in_progress
);
210 bdi_destroy(&orangefs_backing_dev_info
);
212 pr_info("orangefs: module version %s unloaded\n", ORANGEFS_VERSION
);
216 * What we do in this function is to walk the list of operations
217 * that are in progress in the hash table and mark them as purged as well.
219 void purge_inprogress_ops(void)
223 for (i
= 0; i
< hash_table_size
; i
++) {
224 struct orangefs_kernel_op_s
*op
;
225 struct orangefs_kernel_op_s
*next
;
227 spin_lock(&orangefs_htable_ops_in_progress_lock
);
228 list_for_each_entry_safe(op
,
230 &orangefs_htable_ops_in_progress
[i
],
232 set_op_state_purged(op
);
233 gossip_debug(GOSSIP_DEV_DEBUG
,
234 "%s: op:%s: op_state:%d: process:%s:\n",
236 get_opname_string(op
),
240 spin_unlock(&orangefs_htable_ops_in_progress_lock
);
244 module_init(orangefs_init
);
245 module_exit(orangefs_exit
);