The patch titled NETLINK: Remove bogus BUG_ON has been removed from the -mm tree. Its filename was netlink-remove-bogus-bug_on.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: NETLINK: Remove bogus BUG_ON From: Patrick McHardy <kaber@xxxxxxxxx> 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@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- net/netlink/af_netlink.c | 1 - 1 files changed, 1 deletion(-) diff -puN net/netlink/af_netlink.c~netlink-remove-bogus-bug_on net/netlink/af_netlink.c --- a/net/netlink/af_netlink.c~netlink-remove-bogus-bug_on +++ a/net/netlink/af_netlink.c @@ -142,7 +142,6 @@ static void netlink_sock_destruct(struct { 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); _ Patches currently in -mm which might be from kaber@xxxxxxxxx are origin.patch networking-fix-sending-netlink-message-when-replace-route.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html