From owner-freebsd-bugs@FreeBSD.ORG Sun May 25 20:50:03 2008 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4FF1E1065683 for ; Sun, 25 May 2008 20:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 35FB38FC2A for ; Sun, 25 May 2008 20:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m4PKo32V072476 for ; Sun, 25 May 2008 20:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m4PKo3mT072475; Sun, 25 May 2008 20:50:03 GMT (envelope-from gnats) Date: Sun, 25 May 2008 20:50:03 GMT Message-Id: <200805252050.m4PKo3mT072475@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Volker Cc: Subject: Re: kern/121962: Kernel panics with device polling and snd_emu10k1.ko enabled and network load X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Volker List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2008 20:50:03 -0000 The following reply was made to PR kern/121962; it has been noted by GNATS. From: Volker To: Dmitry Demidov Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/121962: Kernel panics with device polling and snd_emu10k1.ko enabled and network load Date: Sun, 25 May 2008 22:12:38 +0200 Dmitry, On 05/25/08 09:58, Dmitry Demidov wrote: >> Dmitry, >> >> I've just seen, you've enabled DEVICE_POLLING in kernel config. Can you >> please try to remove that option and instead use `ifconfig em0 polling'? >> >> The use of 'option DEVICE_POLLING' is deprecated. ouch... did I really write something that stupid? I took notice while reading your reply. Of course, you need to have DEVICE_POLLING in kernel, but the use of sysctl kern.polling.enable is deprecated. > > Sorry, it did not works at all. Then option DEVICE_POLLING is removed from the > kernel, I'm unabled to start polling mode. > > # ifconfig em0 > em0: flags=8843 metric 0 mtu 1500 > options=9b > ether 00:20:ed:11:11:11 > inet 7.8.2.5 netmask 0xffffe000 broadcast 255.255.255.255 > media: Ethernet autoselect (100baseTX ) > status: active > > # ifconfig em0 polling > > # ifconfig em0 > em0: flags=8843 metric 0 mtu 1500 > options=9b > ether 00:20:ed:11:11:11 > inet 7.8.2.5 netmask 0xffffe000 broadcast 255.255.255.255 > media: Ethernet autoselect (100baseTX ) > status: active > > # sysctl -a | grep pol > kern.dcons.poll_hz: 100 > kern.sched.topology: 0 > debug.acpi.ec.polled: 0 > Clearly because of my wrong hint. Please try the following: include DEVICE_POLLING in your kernel config make sure, you don't use kern.polling.enable enable polling for your em0 device by using `ifconfig em0 polling'. Can you please try that? Sorry for my misinformation. Working on too much things in parallel. Volker