diff options
author | kjc <kjc@FreeBSD.org> | 1998-07-29 05:35:16 +0000 |
---|---|---|
committer | kjc <kjc@FreeBSD.org> | 1998-07-29 05:35:16 +0000 |
commit | bd9e5f5f5b5ac9cb1bcfd4be4ac99ce4fd518e15 (patch) | |
tree | 62f7c8492d4fd7faf52a9a0f3a13e97ae83bed96 /sys/dev/en/midwayvar.h | |
parent | 50f3429a4832d3eeb70ad7d19a88c51c7021c04c (diff) | |
download | FreeBSD-src-bd9e5f5f5b5ac9cb1bcfd4be4ac99ce4fd518e15.zip FreeBSD-src-bd9e5f5f5b5ac9cb1bcfd4be4ac99ce4fd518e15.tar.gz |
update ATM driver. (base version: midway.c 1.67 --> 1.68)
several new features are added:
- support vc/vp shaping
- support pvc shadow interface
code cleanup:
- remove WMAYBE related code. ENI WMAYBE DMA doen't work.
- remove updating if_lastchange for every packet.
- BPF related code is moved to midway.c as it should be.
(bpfwrite should work if atm_pseudohdr and LLC/SNAP are
prepended.)
- BPF link type is changed to DLT_ATM_RFC1483.
BPF now understands only LLC/SNAP!! (because bpf can't
handle variable link header length.)
It is recommended to use LLC/SNAP instead of NULL
encapsulation for various reasons. (BPF, IPv6,
interoperability, etc.)
the code has been used for months in ALTQ and KAME IPv6.
OKed by phk long time ago.
Diffstat (limited to 'sys/dev/en/midwayvar.h')
-rw-r--r-- | sys/dev/en/midwayvar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/en/midwayvar.h b/sys/dev/en/midwayvar.h index b9f41da..62d05bf 100644 --- a/sys/dev/en/midwayvar.h +++ b/sys/dev/en/midwayvar.h @@ -90,7 +90,6 @@ struct cfdriver { #endif - /* * softc */ @@ -162,6 +161,8 @@ struct en_softc { struct ifqueue q; /* mbufs waiting for dma now */ } rxslot[EN_MAXNRX]; /* recv info */ + u_int8_t macaddr[6]; /* card unique mac address */ + /* stats */ u_int32_t vtrash; /* sw copy of counter */ u_int32_t otrash; /* sw copy of counter */ |