mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
There seems to be a problem with txcsum and UDP. Turn it off until it is
understood better. This fixes timeout problems with NFS.
This commit is contained in:
parent
27111d392c
commit
49caa8a9f8
1 changed files with 5 additions and 0 deletions
|
|
@ -4613,7 +4613,12 @@ struct fw_info {
|
|||
#define BCE_BUS_SPACE_MAXADDR 0xFFFFFFFFFF
|
||||
#endif
|
||||
|
||||
/* XXX UDP checksum offload seems to cause problems on transmit */
|
||||
#ifdef BCE_UDP_CSUM
|
||||
#define BCE_IF_HWASSIST (CSUM_IP | CSUM_TCP | CSUM_UDP)
|
||||
#else
|
||||
#define BCE_IF_HWASSIST (CSUM_TCP)
|
||||
#endif
|
||||
|
||||
#if __FreeBSD_version < 700000
|
||||
#define BCE_IF_CAPABILITIES (IFCAP_VLAN_MTU | IFCAP_VLAN_HWTAGGING | \
|
||||
|
|
|
|||
Loading…
Reference in a new issue