diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2009-11-16 12:05:34 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-11-17 04:08:49 -0800 |
commit | 649300b9278dc9fc9c7dfaaa3719ead70882e726 (patch) | |
tree | 033f070756ccb304afbc1ade495d5b1761c2d836 | |
parent | 54b9ddaa68414fad72ab2e1042be067c902441a6 (diff) | |
download | op-kernel-dev-649300b9278dc9fc9c7dfaaa3719ead70882e726.zip op-kernel-dev-649300b9278dc9fc9c7dfaaa3719ead70882e726.tar.gz |
netlink: remove subscriptions check on notifier
The netlink URELEASE notifier doesn't notify for
sockets that have been used to receive multicast
but it should be called for such sockets as well
since they might _also_ be used for sending and
not solely for receiving multicast. We will need
that for nl80211 (generic netlink sockets) in the
future.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Cc: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/netlink/af_netlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c index f30d596..eff5b0d 100644 --- a/net/netlink/af_netlink.c +++ b/net/netlink/af_netlink.c @@ -498,7 +498,7 @@ static int netlink_release(struct socket *sock) skb_queue_purge(&sk->sk_write_queue); - if (nlk->pid && !nlk->subscriptions) { + if (nlk->pid) { struct netlink_notify n = { .net = sock_net(sk), .protocol = sk->sk_protocol, |