[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.DEB.2.00.0904081345430.30705@bicker>
Date: Wed, 8 Apr 2009 13:45:48 +0300 (EAT)
From: Dan Carpenter <error27@...il.com>
To: netdev@...r.kernel.org
Subject: [patch] locking typo in xfrm_state.c
I'm not sure who to send this patch to.
There is a double lock instead of an unlock.
Found by smatch (http://repo.or.cz/w/smatch.git). Compile tested.
regards,
dan carpenter
Signed-off-by: Dan Carpenter <error27@...il.com>
--- orig/net/xfrm/xfrm_state.c 2009-04-08 09:19:10.000000000 +0300
+++ devel/net/xfrm/xfrm_state.c 2009-04-08 09:19:18.000000000 +0300
@@ -1615,7 +1615,7 @@
spin_lock_bh(&xfrm_state_lock);
list_del(&walk->all);
- spin_lock_bh(&xfrm_state_lock);
+ spin_unlock_bh(&xfrm_state_lock);
}
EXPORT_SYMBOL(xfrm_state_walk_done);
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists