summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbrad <brad@openbsd.org>2005-06-08 04:14:25 +0000
committerbrad <brad@openbsd.org>2005-06-08 04:14:25 +0000
commit5a14c9667649d9da604755f038763881a6af7b82 (patch)
treea2b947f0716ff8b6995d29e63462da70478b3f2a
parentincrease default rsa/dsa key length from 1024 to 2048 bits; ok markus@ deraadt@ (diff)
downloadwireguard-openbsd-5a14c9667649d9da604755f038763881a6af7b82.tar.xz
wireguard-openbsd-5a14c9667649d9da604755f038763881a6af7b82.zip
disable RX checksum offload until its fixed on little endian systems
-rw-r--r--sys/dev/ic/hme.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ic/hme.c b/sys/dev/ic/hme.c
index 019526d998b..d4635e23642 100644
--- a/sys/dev/ic/hme.c
+++ b/sys/dev/ic/hme.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hme.c,v 1.36 2005/04/25 17:55:51 brad Exp $ */
+/* $OpenBSD: hme.c,v 1.37 2005/06/08 04:14:25 brad Exp $ */
/* $NetBSD: hme.c,v 1.21 2001/07/07 15:59:37 thorpej Exp $ */
/*-
@@ -877,7 +877,9 @@ hme_rint(sc)
}
ifp->if_ipackets++;
+#if 0
hme_rxcksum(m, flags);
+#endif
#if NBPFILTER > 0
if (ifp->if_bpf) {