The patch titled e100_shutdown: netif_poll_disable hang has been removed from the -mm tree. Its filename was e100_shutdown-netif_poll_disable-hang.patch This patch was dropped because it was nacked by the maintainer ------------------------------------------------------ Subject: e100_shutdown: netif_poll_disable hang From: Daniel Walker <dwalker@xxxxxxxxxx> My machine annoyingly hangs while rebooting. I tracked it down to e100-fix-reboot-f-with-netconsole-enabled.patch in 2.6.18-rc2-mm2 I review the changes and it seemed to be calling netif_poll_disable one too many time. Once in e100_down(), and again in e100_shutdown(). The second one in e100_shutdown() caused the hang. So this patch removes it. Signed-off-by: Daniel Walker <dwalker@xxxxxxxxxx> Cc: Auke Kok <auke-jan.h.kok@xxxxxxxxx> Cc: Jeff Garzik <jeff@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/net/e100.c | 1 - 1 files changed, 1 deletion(-) diff -puN drivers/net/e100.c~e100_shutdown-netif_poll_disable-hang drivers/net/e100.c --- a/drivers/net/e100.c~e100_shutdown-netif_poll_disable-hang +++ a/drivers/net/e100.c @@ -2709,7 +2709,6 @@ static void e100_shutdown(struct pci_dev struct net_device *netdev = pci_get_drvdata(pdev); struct nic *nic = netdev_priv(netdev); - netif_poll_disable(nic->netdev); del_timer_sync(&nic->watchdog); netif_carrier_off(nic->netdev); _ Patches currently in -mm which might be from dwalker@xxxxxxxxxx are origin.patch clocksource-acpi_pm-add-another-greylist-chipset.patch e100_shutdown-netif_poll_disable-hang.patch profile-likely-unlikely-macros.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html