提交 3e1dd9aa 编写于 作者: A Al Viro 提交者: Mike Marshall

orangefs: use DEFINE_MUTEX (and mutex_init() had been too late)

Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: NMike Marshall <hubcap@omnibond.com>
上级 cf0c2771
...@@ -70,7 +70,7 @@ module_param(op_timeout_secs, int, 0); ...@@ -70,7 +70,7 @@ module_param(op_timeout_secs, int, 0);
module_param(slot_timeout_secs, int, 0); module_param(slot_timeout_secs, int, 0);
/* synchronizes the request device file */ /* synchronizes the request device file */
struct mutex devreq_mutex; DEFINE_MUTEX(devreq_mutex);
/* /*
* Blocks non-priority requests from being queued for servicing. This * Blocks non-priority requests from being queued for servicing. This
...@@ -78,7 +78,7 @@ struct mutex devreq_mutex; ...@@ -78,7 +78,7 @@ struct mutex devreq_mutex;
* for now it's only being used to stall the op addition to the request * for now it's only being used to stall the op addition to the request
* list * list
*/ */
struct mutex request_mutex; DEFINE_MUTEX(request_mutex);
/* hash table for storing operations waiting for matching downcall */ /* hash table for storing operations waiting for matching downcall */
struct list_head *htable_ops_in_progress; struct list_head *htable_ops_in_progress;
...@@ -160,9 +160,6 @@ static int __init orangefs_init(void) ...@@ -160,9 +160,6 @@ static int __init orangefs_init(void)
goto cleanup_kiocb; goto cleanup_kiocb;
} }
mutex_init(&devreq_mutex);
mutex_init(&request_mutex);
htable_ops_in_progress = htable_ops_in_progress =
kcalloc(hash_table_size, sizeof(struct list_head), GFP_KERNEL); kcalloc(hash_table_size, sizeof(struct list_head), GFP_KERNEL);
if (!htable_ops_in_progress) { if (!htable_ops_in_progress) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册