[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <46425878.9060102@garzik.org>
Date: Wed, 09 May 2007 19:25:44 -0400
From: Jeff Garzik <jeff@...zik.org>
To: Stephen Hemminger <shemminger@...ux-foundation.org>
CC: netdev@...r.kernel.org, stable@...nel.org
Subject: Re: [PATCH 1/2] skge: default WOL should be magic only (rev2)
Stephen Hemminger wrote:
> By default, the skge driver now enables wake on magic and wake on PHY.
> This is a bad default (bug), wake on PHY means machine will never shutdown
> if connected to a switch.
>
> Signed-off-by: Stephen Hemminger <shemminger@...ux-foundation.org>a
>
> ---
> drivers/net/skge.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> --- sky2-2.6.21.orig/drivers/net/skge.c 2007-05-08 10:06:39.000000000 -0700
> +++ sky2-2.6.21/drivers/net/skge.c 2007-05-08 10:21:51.000000000 -0700
> @@ -3594,7 +3594,9 @@ static struct net_device *skge_devinit(s
> skge->duplex = -1;
> skge->speed = -1;
> skge->advertising = skge_supported_modes(hw);
> - skge->wol = pci_wake_enabled(hw->pdev) ? wol_supported(hw) : 0;
> +
> + if (pci_wake_enabled(hw->pdev))
> + skge->wol = wol_supported(hw) & WAKE_MAGIC;
thanks for the revision, applied
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists