diff options
| author | Bill Paul <wpaul@FreeBSD.org> | 1998-12-24 18:03:17 +0000 |
|---|---|---|
| committer | Bill Paul <wpaul@FreeBSD.org> | 1998-12-24 18:03:17 +0000 |
| commit | d482d37e815f8b4b4ddeaba63e49713bec1cd2d3 (patch) | |
| tree | a10302385ab5dc4a2a098d162b8a9c656b2bce3b /sys/dev/vr/if_vr.c | |
| parent | 7ceecbe4ef188756a31f26bb6ca6a73638ff1067 (diff) | |
Notes
Diffstat (limited to 'sys/dev/vr/if_vr.c')
| -rw-r--r-- | sys/dev/vr/if_vr.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/sys/dev/vr/if_vr.c b/sys/dev/vr/if_vr.c index 07890f848102..608d43b1d831 100644 --- a/sys/dev/vr/if_vr.c +++ b/sys/dev/vr/if_vr.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_vr.c,v 1.3 1998/12/07 21:58:47 archie Exp $ + * $Id: if_vr.c,v 1.4 1998/12/14 06:32:56 dillon Exp $ */ /* @@ -97,7 +97,7 @@ #ifndef lint static const char rcsid[] = - "$Id: if_vr.c,v 1.3 1998/12/07 21:58:47 archie Exp $"; + "$Id: if_vr.c,v 1.4 1998/12/14 06:32:56 dillon Exp $"; #endif /* @@ -1286,6 +1286,15 @@ static void vr_rxeof(sc) total_len = VR_RXBYTES(cur_rx->vr_ptr->vr_status); /* + * XXX The VIA Rhine chip includes the CRC with every + * received frame, and there's no way to turn this + * behavior off (at least, I can't find anything in + * the manual that explains how to do it) so we have + * to trim off the CRC manually. + */ + total_len -= ETHER_CRC_LEN; + + /* * Try to conjure up a new mbuf cluster. If that * fails, it means we have an out of memory condition and * should leave the buffer in place and continue. This will |
