]> www.infradead.org Git - users/jedix/linux-maple.git/commit
vxlan: re-ignore EADDRINUSE from igmp_join
authorMarcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Tue, 25 Aug 2015 23:22:35 +0000 (20:22 -0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 3 Oct 2015 11:49:12 +0000 (13:49 +0200)
commit0fade09c7073b8899a20a80c61349ea344caf28b
tree55bf62e006747c6f9e1036f0b0cea745097015ef
parent5c02ee314d9f1672283c3c679520b489650936e2
vxlan: re-ignore EADDRINUSE from igmp_join

[ Upstream commit bef0057b7ba881d5ae67eec876df7a26fe672a59 ]

Before 56ef9c909b40[1] it used to ignore all errors from igmp_join().
That commit enhanced that and made it error out whatever error happened
with igmp_join(), but that's not good because when using multicast
groups vxlan will try to join it multiple times if the socket is reused
and then the 2nd and further attempts will fail with EADDRINUSE.

As we don't track to which groups the socket is already subscribed, it's
okay to just ignore that error.

Fixes: 56ef9c909b40 ("vxlan: Move socket initialization to within rtnl scope")
Reported-by: John Nielsen <lists@jnielsen.net>
Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/vxlan.c