netdev
[Top] [All Lists]

Re: [PATCH] forcedeth: TX handler changes (experimental)

To: Manfred Spraul <manfred@xxxxxxxxxxxxxxxx>
Subject: Re: [PATCH] forcedeth: TX handler changes (experimental)
From: Daniel Drake <dsd@xxxxxxxxxx>
Date: Sat, 16 Jul 2005 22:24:57 +0100
Cc: Linux Kernel Mailing List <linux-kernel@xxxxxxxxxxxxxxx>, Netdev <netdev@xxxxxxxxxxx>, Ayaz Abdulla <AAbdulla@xxxxxxxxxx>
In-reply-to: <42D9658B.7020907@gentoo.org>
References: <42D913D6.5050902@colorfullife.com> <42D9658B.7020907@gentoo.org>
Sender: netdev-bounce@xxxxxxxxxxx
User-agent: Mozilla Thunderbird 1.0.5 (X11/20050715)
Daniel Drake wrote:
After applying the v0.38 patch, I can't get any network at all. DHCP fails to get an IP. v0.37 works fine.

Tracked it down. (sorry for linewraps)

+#define DEV_NEED_TIMERIRQ 0x0001 /* set the timer irq flag in the irq mask */
+#define DEV_NEED_LINKTIMER 0x0002 /* poll link settings. Relies on the timer irq */
+#define DEV_HAS_LARGEDESC 0x0003 /* device supports jumbo frames and needs packet format 2 */


My hardware is NEED_TIMERIRQ|NEED_LINKTIMER, however, by this logic, it'll also be DEV_HAVE_LARGEDESC, which isn't true.

So, you want this instead:

#define DEV_HAS_LARGEDESC       0x0004

After making that change, all is working fine, but then again, I've never run into the hangs you are debugging. I'll follow up in a couple of days time to confirm I'm not getting any problems with the new code.

Thanks,
Daniel

<Prev in Thread] Current Thread [Next in Thread>