]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
vxlan: correctly set vxlan->net when creating the device in a netns
authorSabrina Dubroca <sd@queasysnail.net>
Fri, 30 Jun 2017 13:50:00 +0000 (15:50 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 3 Jul 2017 09:04:10 +0000 (02:04 -0700)
commit889ce937c98f1f969137a8a2ee78627c1537d4b3
treefd6c8a68042e13acbc1abedd16e09fb32f1fbcc9
parentc3b99db809220f0f0dd81d9c92c426b9ffba9735
vxlan: correctly set vxlan->net when creating the device in a netns

Commit a985343ba906 ("vxlan: refactor verification and application of
configuration") modified vxlan device creation, and replaced the
assignment of vxlan->net to src_net with dev_net(netdev) in ->setup().

But dev_net(netdev) is not the same as src_net. At the time ->setup()
is called, dev_net hasn't been set yet, so we end up creating the
socket for the vxlan device in init_net.

Fix this by bringing back the assignment of vxlan->net during device
creation.

Fixes: a985343ba906 ("vxlan: refactor verification and application of configuration")
Signed-off-by: Sabrina Dubroca <sd@queasysnail.net>
Reviewed-by: Matthias Schiffer <mschiffer@universe-factory.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/vxlan.c