diff options
| author | David Greenman <dg@FreeBSD.org> | 2001-12-14 22:04:58 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 2001-12-14 22:04:58 +0000 |
| commit | eb48892e1dad87056cd96cd8d1f1d70c6997ea29 (patch) | |
| tree | b2b9c8cff0e0276bc75b67dbca4b6771b1eda99e /sys/dev | |
| parent | 43ce89e115b43c46e35fdcb77b133e4b7c023b88 (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/bge/if_bge.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/bge/if_bge.c b/sys/dev/bge/if_bge.c index d9c87f2a4365..eb3f7e626523 100644 --- a/sys/dev/bge/if_bge.c +++ b/sys/dev/bge/if_bge.c @@ -1890,6 +1890,7 @@ bge_rxeof(sc) /* Remove header from mbuf and pass it on. */ m_adj(m, sizeof(struct ether_header)); +#if 0 /* currently broken for some packets, possibly related to TCP options */ if (ifp->if_hwassist) { m->m_pkthdr.csum_flags |= CSUM_IP_CHECKED; if ((cur_rx->bge_ip_csum ^ 0xffff) == 0) @@ -1900,6 +1901,7 @@ bge_rxeof(sc) m->m_pkthdr.csum_flags |= CSUM_DATA_VALID; } } +#endif /* * If we received a packet with a vlan tag, pass it |
