net: vxlan: properly cleanup devs on module unload
authorDaniel Borkmann <dborkman@redhat.com>
Mon, 13 Jan 2014 17:41:20 +0000 (18:41 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 15 Jan 2014 07:38:39 +0000 (23:38 -0800)
commit8425783c0f4292ca5be35097a467e1240735c257
tree601cab1761c36f24798e4b168595534f5feacb5d
parentacaf4e70997ff5ef3588f5a8abb1c228de637bd2
net: vxlan: properly cleanup devs on module unload

We should use vxlan_dellink() handler in vxlan_exit_net(), since
i) we're not in fast-path and we should be consistent in dismantle
just as we would remove a device through rtnl ops, and more
importantly, ii) in case future code will kfree() memory in
vxlan_dellink(), we would leak it right here unnoticed. Therefore,
do not only half of the cleanup work, but make it properly.

Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/vxlan.c