Skip site navigation (1)Skip section navigation (2)
Date:      01 Aug 2003 13:42:19 +0100
From:      Peter Edwards <peter.edwards@openet-telecom.com>
To:        Boris Kovalenko <boris@tagnet.ru>
Cc:        freebsd-current@freebsd.org
Subject:   Re: bge & vlan stranges
Message-ID:  <1059741739.39578.67.camel@rocklobster.openet-telecom.lan>
In-Reply-To: <3F2A2B17.4020700@tagnet.ru>
References:  <3F2A2B17.4020700@tagnet.ru>

next in thread | previous in thread | raw e-mail | index | archive | help
Hm. A bit of a stab in the dark, but from sys/dev/bge/if_bge.c, line
3185 (on 5.1 release, 2399)

>         /* Specify MTU. */
>         CSR_WRITE_4(sc, BGE_RX_MTU, ifp->if_mtu +
>             ETHER_HDR_LEN + ETHER_CRC_LEN);
> 
> 
Wonder if this should be
  
>         /* Specify MTU. */
>         CSR_WRITE_4(sc, BGE_RX_MTU, ifp->if_mtu +
>             ETHER_HDR_LEN + ETHER_CRC_LEN + ETHER_VLAN_ENCAP_LEN);
> 

Given that bge advertises IFCAP_VLAN_MTU??




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1059741739.39578.67.camel>