netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: netlink: don't try unicast when dst_pid is zero for NETLINK_USERSOCK
@ 2011-05-13  6:24 Changli Gao
  2011-05-13 20:48 ` David Miller
  0 siblings, 1 reply; 3+ messages in thread
From: Changli Gao @ 2011-05-13  6:24 UTC (permalink / raw)
  To: David S. Miller; +Cc: netdev, Changli Gao

For NETLINK_USERSOCK, no one listens on PID 0, so sending a message only to
to a multicast group should not return -ECONNREFUSED.

Signed-off-by: Changli Gao <xiaosuo@gmail.com>
---
 net/netlink/af_netlink.c |    2 ++
 1 file changed, 2 insertions(+)
diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c
index c8f35b5..ba89304 100644
--- a/net/netlink/af_netlink.c
+++ b/net/netlink/af_netlink.c
@@ -1379,6 +1379,8 @@ static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
 	if (dst_group) {
 		atomic_inc(&skb->users);
 		netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
+		if (dst_pid == 0 && sk->sk_protocol == NETLINK_USERSOCK)
+			return len;
 	}
 	err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
 

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-05-14  0:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-13  6:24 [PATCH] net: netlink: don't try unicast when dst_pid is zero for NETLINK_USERSOCK Changli Gao
2011-05-13 20:48 ` David Miller
2011-05-14  0:50   ` Changli Gao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).