This is a note to let you know that I've just added the patch titled sunvnet: vnet_port_remove must call unregister_netdev to the 3.0-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: sunvnet-vnet_port_remove-must-call-unregister_netdev.patch and it can be found in the queue-3.0 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From e7af25be212da8478e4e304cf3842c43a1852934 Mon Sep 17 00:00:00 2001 From: Dave Kleikamp <dave.kleikamp@xxxxxxxxxx> Date: Mon, 1 Jul 2013 16:49:22 -0500 Subject: sunvnet: vnet_port_remove must call unregister_netdev From: Dave Kleikamp <dave.kleikamp@xxxxxxxxxx> [ Upstream commit aabb9875d02559ab9b928cd6f259a5cc4c21a589 ] The missing call to unregister_netdev() leaves the interface active after the driver is unloaded by rmmod. Signed-off-by: Dave Kleikamp <dave.kleikamp@xxxxxxxxxx> Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/net/sunvnet.c | 2 ++ 1 file changed, 2 insertions(+) --- a/drivers/net/sunvnet.c +++ b/drivers/net/sunvnet.c @@ -1248,6 +1248,8 @@ static int vnet_port_remove(struct vio_d dev_set_drvdata(&vdev->dev, NULL); kfree(port); + + unregister_netdev(vp->dev); } return 0; } Patches currently in stable-queue which might be from dave.kleikamp@xxxxxxxxxx are queue-3.0/sunvnet-vnet_port_remove-must-call-unregister_netdev.patch queue-3.0/sparc-tsb-must-be-flushed-before-tlb.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html