This is a note to let you know that I've just added the patch titled ntb_netdev: remove from list on exit to the 3.9-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: ntb_netdev-remove-from-list-on-exit.patch and it can be found in the queue-3.9 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 904435cf76a9bdd5eb41b1c4e049d5a64f3a8400 Mon Sep 17 00:00:00 2001 From: Jon Mason <jon.mason@xxxxxxxxx> Date: Thu, 18 Apr 2013 13:36:43 -0700 Subject: ntb_netdev: remove from list on exit From: Jon Mason <jon.mason@xxxxxxxxx> commit 904435cf76a9bdd5eb41b1c4e049d5a64f3a8400 upstream. The ntb_netdev device is not removed from the global list of devices upon device removal. If the device is re-added, the removal code would find the first instance and try to remove an already removed device. Signed-off-by: Jon Mason <jon.mason@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/net/ntb_netdev.c | 2 ++ 1 file changed, 2 insertions(+) --- a/drivers/net/ntb_netdev.c +++ b/drivers/net/ntb_netdev.c @@ -375,6 +375,8 @@ static void ntb_netdev_remove(struct pci if (dev == NULL) return; + list_del(&dev->list); + ndev = dev->ndev; unregister_netdev(ndev); Patches currently in stable-queue which might be from jon.mason@xxxxxxxxx are queue-3.9/ntb-fix-pointer-math-issues.patch queue-3.9/ntb-link-toggle-memory-leak.patch queue-3.9/ntb-variable-dereferenced-before-check.patch queue-3.9/ntb-handle-64bit-bar-sizes.patch queue-3.9/ntb_netdev-remove-from-list-on-exit.patch queue-3.9/ntb-reset-tx_index-on-link-toggle.patch queue-3.9/ntb-correctly-handle-receive-buffers-of-the-minimal-size.patch queue-3.9/ntb-off-by-one-sanity-checks.patch queue-3.9/ntb-memcpy-lockup-workaround.patch queue-3.9/ntb-multiple-ntb-client-fix.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