* atl1: use magic packet wake-on-lan only
@ 2008-11-09 21:05 J. K. Cliburn
2008-11-10 18:42 ` Chris Snook
0 siblings, 1 reply; 4+ messages in thread
From: J. K. Cliburn @ 2008-11-09 21:05 UTC (permalink / raw)
To: jeff; +Cc: Chris Snook, Jie.yang, netdev
atl1: use magic packet wake-on-lan only
Of the various WOL options provided in include/linux/ethtool.h, the
L1 NIC supports only magic packet. Remove all options except magic
packet from the atl1 driver.
Signed-off-by: Jay Cliburn <jcliburn@gmail.com>
---
drivers/net/atlx/atl1.c | 17 +++--------------
1 files changed, 3 insertions(+), 14 deletions(-)
diff --git a/drivers/net/atlx/atl1.c b/drivers/net/atlx/atl1.c
index 09ed2fd..611a86e 100644
--- a/drivers/net/atlx/atl1.c
+++ b/drivers/net/atlx/atl1.c
@@ -3384,14 +3384,8 @@ static void atl1_get_wol(struct net_device *netdev,
{
struct atl1_adapter *adapter = netdev_priv(netdev);
- wol->supported = WAKE_UCAST | WAKE_MCAST | WAKE_BCAST | WAKE_MAGIC;
+ wol->supported = WAKE_MAGIC;
wol->wolopts = 0;
- if (adapter->wol & ATLX_WUFC_EX)
- wol->wolopts |= WAKE_UCAST;
- if (adapter->wol & ATLX_WUFC_MC)
- wol->wolopts |= WAKE_MCAST;
- if (adapter->wol & ATLX_WUFC_BC)
- wol->wolopts |= WAKE_BCAST;
if (adapter->wol & ATLX_WUFC_MAG)
wol->wolopts |= WAKE_MAGIC;
return;
@@ -3402,15 +3396,10 @@ static int atl1_set_wol(struct net_device *netdev,
{
struct atl1_adapter *adapter = netdev_priv(netdev);
- if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE))
+ if (wol->wolopts & (WAKE_PHY | WAKE_UCAST | WAKE_MCAST | WAKE_BCAST |
+ WAKE_ARP | WAKE_MAGICSECURE))
return -EOPNOTSUPP;
adapter->wol = 0;
- if (wol->wolopts & WAKE_UCAST)
- adapter->wol |= ATLX_WUFC_EX;
- if (wol->wolopts & WAKE_MCAST)
- adapter->wol |= ATLX_WUFC_MC;
- if (wol->wolopts & WAKE_BCAST)
- adapter->wol |= ATLX_WUFC_BC;
if (wol->wolopts & WAKE_MAGIC)
adapter->wol |= ATLX_WUFC_MAG;
return 0;
--
1.5.6.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: atl1: use magic packet wake-on-lan only
2008-11-09 21:05 atl1: use magic packet wake-on-lan only J. K. Cliburn
@ 2008-11-10 18:42 ` Chris Snook
2008-11-12 0:35 ` J. K. Cliburn
0 siblings, 1 reply; 4+ messages in thread
From: Chris Snook @ 2008-11-10 18:42 UTC (permalink / raw)
To: J. K. Cliburn; +Cc: jeff, Jie.yang, netdev
J. K. Cliburn wrote:
> atl1: use magic packet wake-on-lan only
>
> Of the various WOL options provided in include/linux/ethtool.h, the
> L1 NIC supports only magic packet. Remove all options except magic
> packet from the atl1 driver.
Technically, we could implement the rest via the programmable
pattern-matching hardware, but that would be an immense amount of work.
-- Chris
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: atl1: use magic packet wake-on-lan only
2008-11-10 18:42 ` Chris Snook
@ 2008-11-12 0:35 ` J. K. Cliburn
2008-11-12 17:37 ` Chris Snook
0 siblings, 1 reply; 4+ messages in thread
From: J. K. Cliburn @ 2008-11-12 0:35 UTC (permalink / raw)
To: Chris Snook; +Cc: jeff, Jie.yang, netdev
On Mon, 10 Nov 2008 13:42:25 -0500
Chris Snook <csnook@redhat.com> wrote:
> J. K. Cliburn wrote:
> > atl1: use magic packet wake-on-lan only
> >
> > Of the various WOL options provided in include/linux/ethtool.h, the
> > L1 NIC supports only magic packet. Remove all options except magic
> > packet from the atl1 driver.
>
> Technically, we could implement the rest via the programmable
> pattern-matching hardware, but that would be an immense amount of
> work.
Thanks for the pointer to the pattern matching capability. I had
forgotten about it.
What prompted the patch was a user asking some questions off-list about
the L1 and WOL, and I realized the atl1 driver was advertising WOL
options that weren't implemented.
I think the magic-packet-only patch I submitted to Jeff is still
relevant, but I'm going to explore the pattern matching capability and
see if we can implement some additional WOL options. IMHO, though,
those should be provided in a separate (future) patch. Do you agree?
Jay
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: atl1: use magic packet wake-on-lan only
2008-11-12 0:35 ` J. K. Cliburn
@ 2008-11-12 17:37 ` Chris Snook
0 siblings, 0 replies; 4+ messages in thread
From: Chris Snook @ 2008-11-12 17:37 UTC (permalink / raw)
To: J. K. Cliburn; +Cc: jeff, Jie.yang, netdev
J. K. Cliburn wrote:
> On Mon, 10 Nov 2008 13:42:25 -0500
> Chris Snook <csnook@redhat.com> wrote:
>
>> J. K. Cliburn wrote:
>>> atl1: use magic packet wake-on-lan only
>>>
>>> Of the various WOL options provided in include/linux/ethtool.h, the
>>> L1 NIC supports only magic packet. Remove all options except magic
>>> packet from the atl1 driver.
>> Technically, we could implement the rest via the programmable
>> pattern-matching hardware, but that would be an immense amount of
>> work.
>
> Thanks for the pointer to the pattern matching capability. I had
> forgotten about it.
>
> What prompted the patch was a user asking some questions off-list about
> the L1 and WOL, and I realized the atl1 driver was advertising WOL
> options that weren't implemented.
>
> I think the magic-packet-only patch I submitted to Jeff is still
> relevant, but I'm going to explore the pattern matching capability and
> see if we can implement some additional WOL options. IMHO, though,
> those should be provided in a separate (future) patch. Do you agree?
>
> Jay
Completely. Programming the pattern matching hardware is a lot more
involved than setting a single bit in the hardware.
Are there any other NICs that have pattern-matching WoLAN capability?
If so, how do their drivers take advantage of them? If it turns out to
be a widely underutilized feature, it might make sense to let ethtool do
the dirty work.
-- Chris
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-11-12 17:37 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-09 21:05 atl1: use magic packet wake-on-lan only J. K. Cliburn
2008-11-10 18:42 ` Chris Snook
2008-11-12 0:35 ` J. K. Cliburn
2008-11-12 17:37 ` Chris Snook
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).