Re: NS83820 2.6.0-test5 driver seems unstable on IA64

From: David Mosberger
Date: Fri Sep 26 2003 - 23:57:04 EST


>>>>> On Sat, 27 Sep 2003 06:36:31 +0200, Andi Kleen <ak@xxxxxxxxxxxxx> said:

Andi> Use one receive descriptor for the MAC header and another for
Andi> the rest (IP/TCP/payload) In the rest everything is aligned
Andi> and there are no problems with misaligned data types (ignoring
Andi> exceptional cases like broken timestamp options which can be
Andi> handled slowly).

>> That's what I proposed.

Andi> Hmm, must have missed that sorry. I saw it in Ivan's post
Andi> only.

Hmmh, I wonder whether I accidentally replied via the newsgroup. I
see my post in the newsgroup, but not on the linux-kernel archive.
Anyhow, I attached the original mail below.

Andi> Fixing the stack to hadle separate MAC headers should not be
Andi> that much work, the code is fairly limited. Drawback is that
Andi> it requires bigger changes to the network drivers and maybe
Andi> some special case code for non standard MAC headers.

>> I suspect you'd be better off just copying the 14 bytes of the
>> Ethernet header so that the entire packet is contiguous.

Andi> Good point. So it can be even handled transparently in drivers
Andi> without any core stack changes.

Andi> Only drawback is that more RX descriptors also usually require
Andi> more PCI writes, which can be also very slow. Needs to be
Andi> benchmarked carefully if it's a worthy trade-off.

Yes, I totally agree on this one. Descriptor fetching is usually
quite expensive, though depending on how smart the PCI controller is,
some of the cost could be hidden.

--david

---------------------------------------------------------------------
From: David Mosberger <davidm@xxxxxxxxxxxxxxxxx>
Subject: Re: NS83820 2.6.0-test5 driver seems unstable on IA64
Newsgroups: linux.kernel
Date: Fri, 26 Sep 2003 08:50:09 +0200
Reply-To: davidm@xxxxxxxxxx
Organization: linux.* mail to news gateway

>>>>> On Thu, 25 Sep 2003 23:07:02 -0700, "David S. Miller" <davem@xxxxxxxxxx> said:

David> On Fri, 26 Sep 2003 08:16:36 +0200 Manfred Spraul
David> <manfred@xxxxxxxxxxxxxxxx> wrote:

>> Is that really the right solution? Add a full-packet copy to
>> every driver?

David> In the short term, yes it is.

I know nothing about the ns83820, but page 22 of the data sheet
(http://www.national.com/pf/DP/DP83820.html) suggests that it would be
possible to setup _two_ descriptors for each incoming packet: the
first one would cover the Ethernet header (14 bytes), the second the
rest. That way, IP-header would be 8-byte aligned (since the
ns83820's DMA engine seems to require 8-byte alignment for incoming
data).

If so, this would let you get the IP-header and on aligned at the cost
of extra descriptor fetching. The cost of fetching the extra
descriptor will be big enough that you'd only want to do this when
unaligned accesses are expensive, but hopefully it would be cheaper
than copying the entire packet.

--david
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/