* [Hardware] ovz kernel bug on e1000 and Intel Corporation 5000 Series Chipset
@ 2007-04-17 18:54 Eugene Prokopiev
2007-04-17 19:21 ` Sergey Vlasov
0 siblings, 1 reply; 4+ messages in thread
From: Eugene Prokopiev @ 2007-04-17 18:54 UTC (permalink / raw)
To: Hardware
Здравствуйте!
Долго думал, куда писать - решил сюда. Есть сервер с Intel Corporation
5000 Series Chipset и 2 такими сетевыми интерфейсами:
e1000 - Intel Corporation 80003ES2LAN Gigabit Ethernet Controller
(Copper) [Ethernet controller]
На нем без особых проблем работает ядро 2.6.18-std-smp-alt5, а вот с
2.6.18-ovz-smp-alt13 выходит заминка: сразу после загрузки на сетевых
интерфейсах link ok, но пинги не ходят. Ходить начинают через несколько
секунд после того, как сетевой кабель вытаскивается из разъема и
втыкается обратно 8)
Это как-то лечится?
--
С уважением, Прокопьев Евгений
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Hardware] ovz kernel bug on e1000 and Intel Corporation 5000 Series Chipset
2007-04-17 18:54 [Hardware] ovz kernel bug on e1000 and Intel Corporation 5000 Series Chipset Eugene Prokopiev
@ 2007-04-17 19:21 ` Sergey Vlasov
2007-04-17 19:51 ` Konstantin A. Lepikhov
0 siblings, 1 reply; 4+ messages in thread
From: Sergey Vlasov @ 2007-04-17 19:21 UTC (permalink / raw)
To: hardware
[-- Attachment #1: Type: text/plain, Size: 1520 bytes --]
On Tue, Apr 17, 2007 at 10:54:10PM +0400, Eugene Prokopiev wrote:
> Долго думал, куда писать - решил сюда. Есть сервер с Intel Corporation
> 5000 Series Chipset и 2 такими сетевыми интерфейсами:
>
> e1000 - Intel Corporation 80003ES2LAN Gigabit Ethernet Controller
> (Copper) [Ethernet controller]
>
> На нем без особых проблем работает ядро 2.6.18-std-smp-alt5, а вот с
> 2.6.18-ovz-smp-alt13 выходит заминка: сразу после загрузки на сетевых
> интерфейсах link ok, но пинги не ходят. Ходить начинают через несколько
> секунд после того, как сетевой кабель вытаскивается из разъема и
> втыкается обратно 8)
>
> Это как-то лечится?
В ovz есть одно подозрительное изменение в драйвере e1000 - commit
2d46cb1712da0b94652c94f8bb9bac662c10d847:
e1000: fix initialization of irqs
In case of irqpoll boot option set, e1000 may oops due to:
1) e1000 register it's handler with e1000_request_irq;
2) spurious interrupt happens;
3) kernel tries to handle this interrupt with all available descs;
4) e1000_intr is called and oops due to not initialized clean_rx handler,
because e1000_up is not called yet.
Solution is to initialize driver before handler registration.
Signed-off-by: Dmitry Mishin <dim at openvz dot org>
Signed-off-by: Pavel Emelianov <xemul at openvz dot org>
Возможно, этот патч ошибочен - во всяком случае, мантейнер драйвера
e1000 его забраковал:
http://thread.gmane.org/gmane.linux.network/50341
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Hardware] ovz kernel bug on e1000 and Intel Corporation 5000 Series Chipset
2007-04-17 19:21 ` Sergey Vlasov
@ 2007-04-17 19:51 ` Konstantin A. Lepikhov
2007-04-17 21:51 ` Konstantin A. Lepikhov
0 siblings, 1 reply; 4+ messages in thread
From: Konstantin A. Lepikhov @ 2007-04-17 19:51 UTC (permalink / raw)
To: hardware
Hi Sergey!
Tuesday 17, at 11:21:31 PM you wrote:
> On Tue, Apr 17, 2007 at 10:54:10PM +0400, Eugene Prokopiev wrote:
> > Долго думал, куда писать - решил сюда. Есть сервер с Intel Corporation
> > 5000 Series Chipset и 2 такими сетевыми интерфейсами:
> >
> > e1000 - Intel Corporation 80003ES2LAN Gigabit Ethernet Controller
> > (Copper) [Ethernet controller]
> >
> > На нем без особых проблем работает ядро 2.6.18-std-smp-alt5, а вот с
> > 2.6.18-ovz-smp-alt13 выходит заминка: сразу после загрузки на сетевых
> > интерфейсах link ok, но пинги не ходят. Ходить начинают через несколько
> > секунд после того, как сетевой кабель вытаскивается из разъема и
> > втыкается обратно 8)
> >
> > Это как-то лечится?
>
> В ovz есть одно подозрительное изменение в драйвере e1000 - commit
> 2d46cb1712da0b94652c94f8bb9bac662c10d847:
>
> e1000: fix initialization of irqs
>
> In case of irqpoll boot option set, e1000 may oops due to:
> 1) e1000 register it's handler with e1000_request_irq;
> 2) spurious interrupt happens;
> 3) kernel tries to handle this interrupt with all available descs;
> 4) e1000_intr is called and oops due to not initialized clean_rx handler,
> because e1000_up is not called yet.
>
> Solution is to initialize driver before handler registration.
>
> Signed-off-by: Dmitry Mishin <dim at openvz dot org>
> Signed-off-by: Pavel Emelianov <xemul at openvz dot org>
>
> Возможно, этот патч ошибочен - во всяком случае, мантейнер драйвера
> e1000 его забраковал:
>
> http://thread.gmane.org/gmane.linux.network/50341
тогда пожалуюсь ;)
--
WBR et al.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Hardware] ovz kernel bug on e1000 and Intel Corporation 5000 Series Chipset
2007-04-17 19:51 ` Konstantin A. Lepikhov
@ 2007-04-17 21:51 ` Konstantin A. Lepikhov
0 siblings, 0 replies; 4+ messages in thread
From: Konstantin A. Lepikhov @ 2007-04-17 21:51 UTC (permalink / raw)
To: hardware
Hi!
Tuesday 17, at 11:51:39 PM you wrote:
...
> > Возможно, этот патч ошибочен - во всяком случае, мантейнер драйвера
> > e1000 его забраковал:
> >
> > http://thread.gmane.org/gmane.linux.network/50341
> тогда пожалуюсь ;)
http://bugzilla.openvz.org/show_bug.cgi?id=543
--
WBR et al.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-04-17 21:51 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-04-17 18:54 [Hardware] ovz kernel bug on e1000 and Intel Corporation 5000 Series Chipset Eugene Prokopiev
2007-04-17 19:21 ` Sergey Vlasov
2007-04-17 19:51 ` Konstantin A. Lepikhov
2007-04-17 21:51 ` Konstantin A. Lepikhov
ALT Linux hardware support
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/hardware/0 hardware/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 hardware hardware/ http://lore.altlinux.org/hardware \
hardware@altlinux.ru hardware@lists.altlinux.org hardware@lists.altlinux.ru hardware@lists.altlinux.com hardware@altlinux.org
public-inbox-index hardware
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.hardware
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git