]> git.baikalelectronics.ru Git - kernel.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)
committerDavid S. Miller <davem@davemloft.net>
Tue, 25 Aug 2015 23:24:35 +0000 (16:24 -0700)
commit87b8d0aefdc7109c561b2aa7504ede4dc9fd4031
tree6cc5bb92f8a83cdfc70525ae1b25f52e82b223d6
parent47cc8d1d577b21a7c40d8488efb09a7befad5ed7
vxlan: re-ignore EADDRINUSE from igmp_join

Before 9538361f2727[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: 9538361f2727 ("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>
drivers/net/vxlan.c