summaryrefslogtreecommitdiff
path: root/sys/dev/fe
diff options
context:
space:
mode:
authorSam Leffler <sam@FreeBSD.org>2002-11-14 23:54:55 +0000
committerSam Leffler <sam@FreeBSD.org>2002-11-14 23:54:55 +0000
commit673d91916d8748ecccff3635f1b15cc602a3898e (patch)
tree84eb7252cc6a518796c6bf88903ed6e2d12e7b91 /sys/dev/fe
parent9ef8b52020603fd01bf683a44d1c1ec25cd4ce09 (diff)
Notes
Diffstat (limited to 'sys/dev/fe')
-rw-r--r--sys/dev/fe/if_fe.c26
-rw-r--r--sys/dev/fe/if_fe_pccard.c2
2 files changed, 8 insertions, 20 deletions
diff --git a/sys/dev/fe/if_fe.c b/sys/dev/fe/if_fe.c
index 1cbce782cbc6..b6ad14cef775 100644
--- a/sys/dev/fe/if_fe.c
+++ b/sys/dev/fe/if_fe.c
@@ -816,7 +816,7 @@ fe_attach (device_t dev)
#endif
/* Attach and stop the interface. */
- ether_ifattach(&sc->sc_if, ETHER_BPF_SUPPORTED);
+ ether_ifattach(&sc->sc_if, sc->arpcom.ac_enaddr);
fe_stop(sc);
/* Print additional info when attached. */
@@ -1281,9 +1281,8 @@ fe_start (struct ifnet *ifp)
* and only if it is in "receive everything"
* mode.)
*/
- if (sc->sc_if.if_bpf &&
- !(sc->sc_if.if_flags & IFF_PROMISC))
- bpf_mtap(&sc->sc_if, m);
+ if (!(sc->sc_if.if_flags & IFF_PROMISC))
+ BPF_MTAP(&sc->sc_if, m);
m_freem(m);
}
@@ -1757,13 +1756,6 @@ fe_ioctl (struct ifnet * ifp, u_long command, caddr_t data)
switch (command) {
- case SIOCSIFADDR:
- case SIOCGIFADDR:
- case SIOCSIFMTU:
- /* Just an ordinary action. */
- error = ether_ioctl(ifp, command, data);
- break;
-
case SIOCSIFFLAGS:
/*
* Switch interface state between "running" and
@@ -1803,7 +1795,7 @@ fe_ioctl (struct ifnet * ifp, u_long command, caddr_t data)
break;
default:
- error = EINVAL;
+ error = ether_ioctl(ifp, command, data);
break;
}
@@ -1819,6 +1811,7 @@ fe_ioctl (struct ifnet * ifp, u_long command, caddr_t data)
static int
fe_get_packet (struct fe_softc * sc, u_short len)
{
+ struct ifnet *ifp = &sc->sc_if;
struct ether_header *eh;
struct mbuf *m;
@@ -1868,7 +1861,7 @@ fe_get_packet (struct fe_softc * sc, u_short len)
}
/* Initialize packet header info. */
- m->m_pkthdr.rcvif = &sc->sc_if;
+ m->m_pkthdr.rcvif = ifp;
m->m_pkthdr.len = len;
/* Set the length of this packet. */
@@ -1890,13 +1883,8 @@ fe_get_packet (struct fe_softc * sc, u_short len)
fe_insw(sc, FE_BMPR8, (u_int16_t *)eh, (len + 1) >> 1);
}
- /* Strip off the Ethernet header. */
- m->m_pkthdr.len -= sizeof (struct ether_header);
- m->m_len -= sizeof (struct ether_header);
- m->m_data += sizeof (struct ether_header);
-
/* Feed the packet to upper layer. */
- ether_input(&sc->sc_if, eh, m);
+ (*ifp->if_input)(ifp, m);
return 0;
}
diff --git a/sys/dev/fe/if_fe_pccard.c b/sys/dev/fe/if_fe_pccard.c
index 0fc1f8d521fd..f4f1adaff1f8 100644
--- a/sys/dev/fe/if_fe_pccard.c
+++ b/sys/dev/fe/if_fe_pccard.c
@@ -174,7 +174,7 @@ fe_pccard_detach(device_t dev)
struct ifnet *ifp = &sc->arpcom.ac_if;
fe_stop(sc);
- ether_ifdetach(ifp, ETHER_BPF_SUPPORTED);
+ ether_ifdetach(ifp);
bus_teardown_intr(dev, sc->irq_res, sc->irq_handle);
fe_release_resource(dev);