diff options
author | Patrick McHardy <kaber@trash.net> | 2007-05-04 12:15:11 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-05-04 12:15:11 -0700 |
commit | 9e71efcd6d659afb9d390eea69b558a7432ba23e (patch) | |
tree | 92837dbdfc9802017297e6be84e79a3828221aea /net/netlink | |
parent | db3459d1a71d885334831cdca6646a48f5ea0483 (diff) | |
download | linux-3.10-9e71efcd6d659afb9d390eea69b558a7432ba23e.tar.gz linux-3.10-9e71efcd6d659afb9d390eea69b558a7432ba23e.tar.bz2 linux-3.10-9e71efcd6d659afb9d390eea69b558a7432ba23e.zip |
[NETLINK]: Remove bogus BUG_ON
Remove bogus BUG_ON(mutex_is_locked(nlk_sk(sk)->cb_mutex)), when the
netlink_kernel_create caller specifies an external mutex it might
validly be locked.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/netlink')
-rw-r--r-- | net/netlink/af_netlink.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c index ac1ceadf4ed..507828d7d4a 100644 --- a/net/netlink/af_netlink.c +++ b/net/netlink/af_netlink.c @@ -142,7 +142,6 @@ static void netlink_sock_destruct(struct sock *sk) { struct netlink_sock *nlk = nlk_sk(sk); - BUG_ON(mutex_is_locked(nlk_sk(sk)->cb_mutex)); if (nlk->cb) { if (nlk->cb->done) nlk->cb->done(nlk->cb); |