From: Andrew Morton <akpm@linux-foundation.org>
To: supersud501 <supersud501@yahoo.de>
Cc: "Rafael J. Wysocki" <rjw@sisk.pl>,
Stephen Hemminger <shemminger@linux-foundation.org>,
netdev@vger.kernel.org, linux-acpi@vger.kernel.org,
bugme-daemon@bugzilla.kernel.org
Subject: Re: [Bugme-new] [Bug 9721] New: wake on lan fails with sky2 module
Date: Sun, 13 Jan 2008 11:27:12 -0800 [thread overview]
Message-ID: <20080113112712.e93f07a4.akpm@linux-foundation.org> (raw)
In-Reply-To: <478A2976.9000204@yahoo.de>
On Sun, 13 Jan 2008 16:08:38 +0100 supersud501 <supersud501@yahoo.de> wrote:
>
>
> supersud501 wrote:
> >
> >
> > Rafael J. Wysocki wrote:
> >
> >>
> >> Since it seems to be 100% reproducible, it would be very helpful if
> >> you could
> >> use git-bisect to identify the offending commit.
> >>
> >
> > allright, bisect found the offending commit, here's what i've done:
> >
> > first i started bisect with the following command (since i assumed it is
> > a net-driver problem):
> >
> > git-bisect start 'v2.6.24-rc6' 'v2.6.23' '--' 'drivers/net/'
> >
> > after building many kernels and saying good/bad if wol worked/didn't
> > work etc. it identified the following commit:
> >
> > # bad: [ac93a3946b676025fa55356180e8321639744b31] sky2: enable PCI
> > config writes
> >
> > and refs/bisect/bad gives:
> >
> > 14:16:53 /usr/src/linux-2.6/.git # cat refs/bisect/bad
> > ac93a3946b676025fa55356180e8321639744b31
> >
> >
> > need some more info?
> >
>
> i just checked it: commented out the passage of the commit in kernel
> 2.6.24-rc7-git4 and compiled it: wol WORKS. so this one line is causing
> my wol-disturbance...
>
>
So simply reverting this:
commit ac93a3946b676025fa55356180e8321639744b31
Author: Stephen Hemminger <shemminger@linux-foundation.org>
Date: Mon Nov 5 15:52:08 2007 -0800
sky2: enable PCI config writes
On some boards, PCI configuration space access is turned off by default.
The 2.6.24 driver doesn't turn it on, and should have.
Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
diff --git a/drivers/net/sky2.c b/drivers/net/sky2.c
index c27c7d6..4f41a94 100644
--- a/drivers/net/sky2.c
+++ b/drivers/net/sky2.c
@@ -2791,6 +2791,9 @@ static void sky2_reset(struct sky2_hw *hw)
sky2_write8(hw, B0_CTST, CS_RST_SET);
sky2_write8(hw, B0_CTST, CS_RST_CLR);
+ /* allow writes to PCI config */
+ sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
+
/* clear PCI errors, if any */
pci_read_config_word(pdev, PCI_STATUS, &status);
status |= PCI_STATUS_ERROR_BITS;
fixes this regression?
If so, we should revert that change.
> but i noticed another "bug" on 2.6.24-rc7-git with sky2: dmesg shows a
> lot of lines every 5 seconds:
>
> [...]
> [ 357.400462] sky2 0000:02:00.0: error interrupt status=0xc0000000
> [ 362.442039] printk: 41 messages suppressed.
> [ 362.442043] sky2 0000:02:00.0: error interrupt status=0x80000000
> [ 367.439151] printk: 18 messages suppressed.
> [ 367.439156] sky2 0000:02:00.0: error interrupt status=0x80000000
> [ 372.436267] printk: 30 messages suppressed.
> [ 372.436271] sky2 0000:02:00.0: error interrupt status=0x80000000
> [ 377.350236] printk: 19 messages suppressed.
> [...]
>
> since i do not notice any errors (yet) i'll wait till next rc, maybe it
> will be gone then...
That's not good. is this new behaviour?
next prev parent reply other threads:[~2008-01-13 19:27 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <bug-9721-10286@http.bugzilla.kernel.org/>
2008-01-10 0:03 ` [Bugme-new] [Bug 9721] New: wake on lan fails with sky2 module Andrew Morton
2008-01-10 4:52 ` Stephen Hemminger
2008-01-10 19:35 ` supersud501
2008-01-11 20:23 ` supersud501
2008-01-11 21:16 ` Rafael J. Wysocki
2008-01-11 22:19 ` supersud501
2008-01-11 23:10 ` Rafael J. Wysocki
2008-01-12 12:24 ` supersud501
2008-01-12 19:13 ` Rafael J. Wysocki
2008-01-13 13:22 ` supersud501
2008-01-13 15:08 ` supersud501
2008-01-13 19:27 ` Andrew Morton [this message]
2008-01-13 20:27 ` supersud501
2008-01-13 20:57 ` Andrew Morton
2008-01-13 21:25 ` Rafael J. Wysocki
2008-01-13 21:27 ` Rafael J. Wysocki
2008-01-13 22:53 ` supersud501
2008-01-14 18:14 ` [RFT] sky2: wake-on-lan configuration issues Stephen Hemminger
2008-01-14 21:05 ` supersud501
2008-01-17 21:08 ` Tino Keitel
2008-01-17 23:22 ` Andrew Morton
2008-01-14 16:39 ` [Bugme-new] [Bug 9721] New: wake on lan fails with sky2 module Stephen Hemminger
2008-01-14 20:50 ` Andrew Morton
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=20080113112712.e93f07a4.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=bugme-daemon@bugzilla.kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=rjw@sisk.pl \
--cc=shemminger@linux-foundation.org \
--cc=supersud501@yahoo.de \
/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.