OSDN Git Service

sunvnet: clean up objects created in vnet_new() on vnet_exit()
authorSowmini Varadhan <sowmini.varadhan@oracle.com>
Wed, 16 Jul 2014 14:02:26 +0000 (10:02 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 28 Jul 2014 15:00:06 +0000 (08:00 -0700)
commit1c81dac91e065e39413f8ff5d22b444087b0ed11
tree04e94fa2f8c319f602efb88ed8ab2fd866bb00eb
parentdc1a6f415ed2405f4589b238d9b08a7d6613c8af
sunvnet: clean up objects created in vnet_new() on vnet_exit()

[ Upstream commit a4b70a07ed12a71131cab7adce2ce91c71b37060 ]

Nothing cleans up the objects created by
vnet_new(), they are completely leaked.

vnet_exit(), after doing the vio_unregister_driver() to clean
up ports, should call a helper function that iterates over vnet_list
and cleans up those objects. This includes unregister_netdevice()
as well as free_netdev().

Signed-off-by: Sowmini Varadhan <sowmini.varadhan@oracle.com>
Acked-by: Dave Kleikamp <dave.kleikamp@oracle.com>
Reviewed-by: Karl Volz <karl.volz@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/ethernet/sun/sunvnet.c