Commit 486d8b9f authored by Roland Dreier's avatar Roland Dreier

IB/srpt: Use DEFINE_SPINLOCK()/LIST_HEAD()

Signed-off-by: default avatarRoland Dreier <roland@purestorage.com>
parent 18d3e0d7
...@@ -69,8 +69,8 @@ MODULE_LICENSE("Dual BSD/GPL"); ...@@ -69,8 +69,8 @@ MODULE_LICENSE("Dual BSD/GPL");
*/ */
static u64 srpt_service_guid; static u64 srpt_service_guid;
static spinlock_t srpt_dev_lock; /* Protects srpt_dev_list. */ static DEFINE_SPINLOCK(srpt_dev_lock); /* Protects srpt_dev_list. */
static struct list_head srpt_dev_list; /* List of srpt_device structures. */ static LIST_HEAD(srpt_dev_list); /* List of srpt_device structures. */
static unsigned srp_max_req_size = DEFAULT_MAX_REQ_SIZE; static unsigned srp_max_req_size = DEFAULT_MAX_REQ_SIZE;
module_param(srp_max_req_size, int, 0444); module_param(srp_max_req_size, int, 0444);
...@@ -4010,9 +4010,6 @@ static int __init srpt_init_module(void) ...@@ -4010,9 +4010,6 @@ static int __init srpt_init_module(void)
goto out; goto out;
} }
spin_lock_init(&srpt_dev_lock);
INIT_LIST_HEAD(&srpt_dev_list);
ret = -ENODEV; ret = -ENODEV;
srpt_target = target_fabric_configfs_init(THIS_MODULE, "srpt"); srpt_target = target_fabric_configfs_init(THIS_MODULE, "srpt");
if (!srpt_target) { if (!srpt_target) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment