From: "ASIX Allan Email [office]" <allan@asix.com.tw>
To: "'Grant Grundler'" <grundler@chromium.org>,
"'Eugene'" <elubarsky@gmail.com>
Cc: netdev@vger.kernel.org, "'Freddy Xin'" <freddy@asix.com.tw>,
"ASIX Louis [蘇威陸]" <louis@asix.com.tw>
Subject: RE: drivers/net/usb/asix: bug in asix_get_wol
Date: Fri, 16 Dec 2011 11:37:34 +0800 [thread overview]
Message-ID: <002d01ccbba4$0c939150$25bab3f0$@com.tw> (raw)
In-Reply-To: <CANEJEGvz2ZHD_ZNJm_WeKCdVE9pmSQJY5dCe8hNayAS0MFN=-Q@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2784 bytes --]
Dear Grant and Eugene,
Please refer to the attached file and below statements to modify the asix_get_wol() routine and let us know if this suggestion can solve your issues or not? Thanks a lot.
================
static void
asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
{
struct usbnet *dev = netdev_priv(net);
u8 opt;
if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE, 0, 0, 1, &opt) < 0) {
wolinfo->supported = 0;
wolinfo->wolopts = 0;
return;
}
wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
wolinfo->wolopts = 0;
if (opt & AX_MONITOR_LINK)
wolinfo->wolopts |= WAKE_PHY;
if (opt & AX_MONITOR_MAGIC)
wolinfo->wolopts |= WAKE_MAGIC;
}
---
Best regards,
Allan Chou
Technical Support Division
ASIX Electronics Corporation
TEL: 886-3-5799500 ext.228
FAX: 886-3-5799558
E-mail: allan@asix.com.tw
http://www.asix.com.tw/
-----Original Message-----
From: grundler@google.com [mailto:grundler@google.com] On Behalf Of Grant Grundler
Sent: Friday, December 16, 2011 12:48 AM
To: Eugene; Allan Chou
Cc: netdev@vger.kernel.org; Freddy Xin
Subject: Re: drivers/net/usb/asix: bug in asix_get_wol
On Tue, Dec 13, 2011 at 5:03 AM, Eugene <elubarsky@gmail.com> wrote:
> Hi Grant,
>
>
> The problem is that, as it's currently written, asix_get_wol always
> returns that wake-on-lan is disabled.
I think that was the intent.
Allan, can you please confirm?
thanks,
grant
>
>
> Cheers,
> Eugene
>
> On 12 December 2011 10:29, Grant Grundler <grundler@chromium.org> wrote:
>> [+freddy/allan @ ASIX]
>>
>> On Sat, Dec 10, 2011 at 5:02 PM, Eugene <elubarsky@gmail.com> wrote:
>>> Dear kernel devs,
>>>
>>> Thanks for the commit at
>>> http://git.kernel.org/?p=linux/kernel/git/next/linux-next.git;a=commitdiff;h=4ad1438f025ed8d1e4e95a796ca7f0ad5a22c378,
>>> It successfully stops my adapter from dying when wake-on-lan gets
>>> enabled.
>>
>> Hi Eugene!
>> thanks for the "it works!" report.
>>
>>> However, I've noticed that it has broken asix_get_wol - the
>>> lines
>>>
>>> if (opt & AX_MONITOR_LINK)
>>> wolinfo->wolopts |= WAKE_PHY;
>>> if (opt & AX_MONITOR_MAGIC)
>>> wolinfo->wolopts |= WAKE_MAGIC;
>>>
>>> have been accidentally removed.
>>
>> This wasn't by accident. This comment in the commit log perhaps
>> doesn't explain sufficiently:
>> | Remove MONITOR_MODE. In this mode, Received packets are not buffered when
>> | the remote wakeup is enabled.
>>
>>> The vendor driver has them, and I've
>>> successfully tested a kernel with these lines included. The change is
>>> too small for me to bother sending in a properly formatted patch...
>>
>> "Too small"? No such thing. :)
>>
>> cheers,
>> grant
[-- Attachment #2: asix_driver_from_Google_Submit_20111216.tar.gz --]
[-- Type: application/octet-stream, Size: 253437 bytes --]
next prev parent reply other threads:[~2011-12-16 3:37 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-11 1:02 drivers/net/usb/asix: bug in asix_get_wol Eugene
2011-12-11 23:29 ` Grant Grundler
2011-12-13 13:03 ` Eugene
2011-12-15 16:48 ` Grant Grundler
2011-12-16 3:37 ` ASIX Allan Email [office] [this message]
2011-12-16 5:15 ` ASIX Allan Email [office]
2011-12-16 22:15 ` Grant Grundler
2011-12-17 2:35 ` allan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='002d01ccbba4$0c939150$25bab3f0$@com.tw' \
--to=allan@asix.com.tw \
--cc=elubarsky@gmail.com \
--cc=freddy@asix.com.tw \
--cc=grundler@chromium.org \
--cc=louis@asix.com.tw \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.