lkml.org 
[lkml]   [2002]   [Apr]   [11]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: CHECKSUM_HW not behaving as expected
On Thu, 11 Apr 2002, Abraham vd Merwe wrote:

> Hi!
>
> In Rubini's "Linux Device Drivers 2nd edition" he states in his networking
> chapter that skb->ip_summed = CHECKSUM_HW means that the hardware already
> performed a checksum and that the upper layers therefore don't need to do it
> (He also states that CHECKSUM_NONE (default) means that it still needs to be
> verified).
>
> I'm currently writing a network driver for 2.4.17 and the chip automatically
> performs checksums and you can tell it to exclude the CRC from the packet or
> not before making it available for the host. Now, if I configure it to
> exclude the CRC and use skb->ip_summed = CHECKSUM_HW I get:
>

CRC not!
The IP checksum is not the CRC. Some new network boards "know" about
the IP checksum and can compute it. The CRC is a hardware-computed CRC
that is appended to every Ethernet packet. The CRC must be received
intact or the packet is rejected (dropped). If it's possible to 'tell'
your board to exclude the CRC, this is not what you want.

If you already know this, then the possible problem is that the
packet length is wrong. The IP checksum is a 16-bit integer of
16-bit integers. This means that the packet length must be an even
number. Your driver may be returning the wrong length. Also, when
you transmit, if the hardware is going to do the checksum, what
does it expect at the checksum offset in the IP packet? Hardware
checksums usually don't 'skip' some offset so the checksum value
should probably be 0 when it goes to your hardware.

Cheers,
Dick Johnson

Penguin : Linux version 2.4.18 on an i686 machine (797.90 BogoMips).

Windows-2000/Professional isn't.

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

\
 
 \ /
  Last update: 2005-03-22 13:25    [W:0.040 / U:0.628 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site