mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] lib/checksum.c: Fix another endianess bug
@ 2009-09-25 14:20 Matt Fleming
  2009-09-25 17:00 ` Mike Frysinger
  0 siblings, 1 reply; 7+ messages in thread
From: Matt Fleming @ 2009-09-25 14:20 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: linux-kernel, Mike Frysinger

From: Matt Fleming <matthew.fleming@imgtec.com>

This fix allows the generic checksum code to work on my little endian
system. The previous fix was not enough, as "buff" is a big-endian
value. Without this patch I see malformed TCP packets.

Signed-off-by: Matt Fleming <matthew.fleming@imgtec.com>
---
 lib/checksum.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/checksum.c b/lib/checksum.c
index b2e2fd4..c34f030 100644
--- a/lib/checksum.c
+++ b/lib/checksum.c
@@ -55,10 +55,10 @@ static unsigned int do_csum(const unsigned char *buff, int len)
 		goto out;
 	odd = 1 & (unsigned long) buff;
 	if (odd) {
-#ifdef __LITTLE_ENDIAN
+#ifdef __BIG_ENDIAN
 		result = *buff;
 #else
-		result += (*buff << 8);
+		result = (*buff << 8);
 #endif
 		len--;
 		buff++;
-- 
1.6.3.GIT


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2009-10-25 10:03 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-25 14:20 [PATCH] lib/checksum.c: Fix another endianess bug Matt Fleming
2009-09-25 17:00 ` Mike Frysinger
2009-09-28  8:07   ` Matt Fleming
2009-09-28 20:39     ` Mike Frysinger
2009-10-24 11:59       ` Matt Fleming
2009-10-24 22:51         ` Mike Frysinger
2009-10-25 10:03           ` [PATCH] lib/checksum.c: lib/checksum: fix one more thinko Arnd Bergmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome