projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f13e0b
)
RDMA/iw_cxgb4: Use DEFINE_SPINLOCK() for spinlock
author
Tang Yizhou
<tangyizhou@huawei.com>
Wed, 31 Mar 2021 02:01:05 +0000
(10:01 +0800)
committer
Jason Gunthorpe
<jgg@nvidia.com>
Wed, 31 Mar 2021 17:41:01 +0000
(14:41 -0300)
spinlock can be initialized automatically with DEFINE_SPINLOCK() rather
than explicitly calling spin_lock_init().
Link:
https://lore.kernel.org/r/20210331020105.4858-1-tangyizhou@huawei.com
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Tang Yizhou <tangyizhou@huawei.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
drivers/infiniband/hw/cxgb4/cm.c
patch
|
blob
|
history
diff --git
a/drivers/infiniband/hw/cxgb4/cm.c
b/drivers/infiniband/hw/cxgb4/cm.c
index 8769e7aa097f4f6c009ee14f2793e3e9330327e8..248324ab48c47c482b080200e35fdb31764428e2 100644
(file)
--- a/
drivers/infiniband/hw/cxgb4/cm.c
+++ b/
drivers/infiniband/hw/cxgb4/cm.c
@@
-145,7
+145,7
@@
static void connect_reply_upcall(struct c4iw_ep *ep, int status);
static int sched(struct c4iw_dev *dev, struct sk_buff *skb);
static LIST_HEAD(timeout_list);
-static
spinlock_t timeout_lock
;
+static
DEFINE_SPINLOCK(timeout_lock)
;
static void deref_cm_id(struct c4iw_ep_common *epc)
{
@@
-4451,7
+4451,6
@@
c4iw_handler_func c4iw_handlers[NUM_CPL_CMDS] = {
int __init c4iw_cm_init(void)
{
- spin_lock_init(&timeout_lock);
skb_queue_head_init(&rxq);
workq = alloc_ordered_workqueue("iw_cxgb4", WQ_MEM_RECLAIM);