* strange sky disable/enable in the kernel log
@ 2007-06-22 5:53 Tino Keitel
2007-06-25 6:11 ` Stephen Hemminger
0 siblings, 1 reply; 3+ messages in thread
From: Tino Keitel @ 2007-06-22 5:53 UTC (permalink / raw)
To: netdev
Hi,
I just found this in the kernel log:
2007-06-22_05:47:50.69894 kern.info: sky2 eth0: disabling interface
2007-06-22_05:47:50.72039 kern.info: sky2 eth0: enabling interface
2007-06-22_05:47:50.72240 kern.info: sky2 eth0: ram buffer 48K
2007-06-22_05:47:52.40903 kern.info: sky2 eth0: Link is up at 100 Mbps,
full duplex, flow control both
What could be the cause for this? I use kernel 2.6.22-rc5 with this
hardware:
sky2 0000:01:00.0: v1.14 addr 0x90200000 irq 17 Yukon-EC (0xb6) rev 2
01:00.0 Ethernet controller: Marvell Technology Group Ltd. 88E8053
PCI-E Gigabit Ethernet Controller (rev 22)
Regards,
Tino
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: strange sky disable/enable in the kernel log
2007-06-22 5:53 strange sky disable/enable in the kernel log Tino Keitel
@ 2007-06-25 6:11 ` Stephen Hemminger
2007-06-25 8:01 ` Tino Keitel
0 siblings, 1 reply; 3+ messages in thread
From: Stephen Hemminger @ 2007-06-25 6:11 UTC (permalink / raw)
To: Tino Keitel; +Cc: netdev
On Fri, 22 Jun 2007 07:53:42 +0200
Tino Keitel <tino.keitel@tikei.de> wrote:
> Hi,
>
> I just found this in the kernel log:
>
> 2007-06-22_05:47:50.69894 kern.info: sky2 eth0: disabling interface
> 2007-06-22_05:47:50.72039 kern.info: sky2 eth0: enabling interface
> 2007-06-22_05:47:50.72240 kern.info: sky2 eth0: ram buffer 48K
> 2007-06-22_05:47:52.40903 kern.info: sky2 eth0: Link is up at 100 Mbps,
> full duplex, flow control both
>
> What could be the cause for this? I use kernel 2.6.22-rc5 with this
> hardware:
>
> sky2 0000:01:00.0: v1.14 addr 0x90200000 irq 17 Yukon-EC (0xb6) rev 2
>
> 01:00.0 Ethernet controller: Marvell Technology Group Ltd. 88E8053
> PCI-E Gigabit Ethernet Controller (rev 22)
>
> Regards,
> Tino
Some script is calling the device stop (down) call.
ifconfig eth0 down
ip link set eth0 down
another possibility is suspend/resume.
--
Stephen Hemminger <shemminger@linux-foundation.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: strange sky disable/enable in the kernel log
2007-06-25 6:11 ` Stephen Hemminger
@ 2007-06-25 8:01 ` Tino Keitel
0 siblings, 0 replies; 3+ messages in thread
From: Tino Keitel @ 2007-06-25 8:01 UTC (permalink / raw)
To: netdev
On Sun, Jun 24, 2007 at 23:11:20 -0700, Stephen Hemminger wrote:
> On Fri, 22 Jun 2007 07:53:42 +0200
> Tino Keitel <tino.keitel@tikei.de> wrote:
>
> > Hi,
> >
> > I just found this in the kernel log:
> >
> > 2007-06-22_05:47:50.69894 kern.info: sky2 eth0: disabling interface
> > 2007-06-22_05:47:50.72039 kern.info: sky2 eth0: enabling interface
> > 2007-06-22_05:47:50.72240 kern.info: sky2 eth0: ram buffer 48K
> > 2007-06-22_05:47:52.40903 kern.info: sky2 eth0: Link is up at 100 Mbps,
> > full duplex, flow control both
> >
> > What could be the cause for this? I use kernel 2.6.22-rc5 with this
> > hardware:
> >
> > sky2 0000:01:00.0: v1.14 addr 0x90200000 irq 17 Yukon-EC (0xb6) rev 2
> >
> > 01:00.0 Ethernet controller: Marvell Technology Group Ltd. 88E8053
> > PCI-E Gigabit Ethernet Controller (rev 22)
> >
> > Regards,
> > Tino
>
> Some script is calling the device stop (down) call.
> ifconfig eth0 down
> ip link set eth0 down
I have a network watchdog script, that should only run after suspend,
as the sky2 driver sometimes hangs after resume. It tries to do a DNS
lookup and re-initializes the interface (ifdown, rmmod, modprobe, ifup)
if the lookup failed. But no activity here at that time:
2007-06-22_04:47:54.31644 Server: 10.100.1.254
2007-06-22_04:47:54.32896 Address: 10.100.1.254#53
2007-06-22_04:47:54.32897
2007-06-22_04:47:54.32898 Name: mguard.home.local
2007-06-22_04:47:54.32899 Address: 10.100.1.253
2007-06-22_04:47:54.32899
2007-06-22_08:47:04.15808 Server: 10.100.1.254
2007-06-22_08:47:04.17365 Address: 10.100.1.254#53
2007-06-22_08:47:04.17366
2007-06-22_08:47:04.17367 Name: mguard.home.local
2007-06-22_08:47:04.17368 Address: 10.100.1.253
2007-06-22_08:47:04.17369
> another possibility is suspend/resume.
A resume happened at 4:47:
2007-06-22_04:47:31.51073 kern.debug: Back to C!
So the above disabling interface/enabling interface was in the middle
of normal operation.
Regards,
Tino
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-06-25 8:01 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-22 5:53 strange sky disable/enable in the kernel log Tino Keitel
2007-06-25 6:11 ` Stephen Hemminger
2007-06-25 8:01 ` Tino Keitel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox