Skip to content

Commit 3652b0b

Browse files
ferasdgregkh
authored andcommitted
IB/ipoib: Change list_del to list_del_init in the tx object
[ Upstream commit 27d41d29c7f093f6f77843624fbb080c1b4a8b9c ] Since ipoib_cm_tx_start function and ipoib_cm_tx_reap function belong to different work queues, they can run in parallel. In this case if ipoib_cm_tx_reap calls list_del and release the lock, ipoib_cm_tx_start may acquire it and call list_del_init on the already deleted object. Changing list_del to list_del_init in ipoib_cm_tx_reap fixes the problem. Fixes: 839fcab ("IPoIB: Connected mode experimental support") Signed-off-by: Feras Daoud <ferasda@mellanox.com> Signed-off-by: Erez Shitrit <erezsh@mellanox.com> Reviewed-by: Alex Vesker <valex@mellanox.com> Signed-off-by: Leon Romanovsky <leon@kernel.org> Reviewed-by: Yuval Shaia <yuval.shaia@oracle.com> Signed-off-by: Doug Ledford <dledford@redhat.com> Signed-off-by: Sasha Levin <alexander.levin@verizon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent aa4af0f commit 3652b0b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/infiniband/ulp/ipoib/ipoib_cm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1373,7 +1373,7 @@ static void ipoib_cm_tx_reap(struct work_struct *work)
13731373

13741374
while (!list_empty(&priv->cm.reap_list)) {
13751375
p = list_entry(priv->cm.reap_list.next, typeof(*p), list);
1376-
list_del(&p->list);
1376+
list_del_init(&p->list);
13771377
spin_unlock_irqrestore(&priv->lock, flags);
13781378
netif_tx_unlock_bh(dev);
13791379
ipoib_cm_tx_destroy(p);

0 commit comments

Comments
 (0)