diff options
author | 2005-06-08 04:14:25 +0000 | |
---|---|---|
committer | 2005-06-08 04:14:25 +0000 | |
commit | 5a14c9667649d9da604755f038763881a6af7b82 (patch) | |
tree | a2b947f0716ff8b6995d29e63462da70478b3f2a | |
parent | increase default rsa/dsa key length from 1024 to 2048 bits; ok markus@ deraadt@ (diff) | |
download | wireguard-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.c | 4 |
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) { |