summaryrefslogtreecommitdiff
path: root/sys/dev/snc
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/snc
parent9ef8b52020603fd01bf683a44d1c1ec25cd4ce09 (diff)
Notes
Diffstat (limited to 'sys/dev/snc')
-rw-r--r--sys/dev/snc/dp83932.c19
1 files changed, 6 insertions, 13 deletions
diff --git a/sys/dev/snc/dp83932.c b/sys/dev/snc/dp83932.c
index fc6a9d6bb1d2..991bb99a46a6 100644
--- a/sys/dev/snc/dp83932.c
+++ b/sys/dev/snc/dp83932.c
@@ -197,7 +197,7 @@ sncconfig(sc, media, nmedia, defmedia, myea)
ifmedia_set(&sc->sc_media, IFM_ETHER|IFM_MANUAL);
}
- ether_ifattach(ifp, ETHER_BPF_SUPPORTED);
+ ether_ifattach(ifp, myea);
#if NRND > 0
rnd_attach_source(&sc->rnd_source, device_get_nameunit(sc->sc_dev),
@@ -261,12 +261,6 @@ sncioctl(ifp, cmd, data)
switch (cmd) {
- case SIOCSIFADDR:
- case SIOCGIFADDR:
- case SIOCSIFMTU:
- err = ether_ioctl(ifp, cmd, data);
- break;
-
case SIOCSIFFLAGS:
if ((ifp->if_flags & IFF_UP) == 0 &&
(ifp->if_flags & IFF_RUNNING) != 0) {
@@ -315,7 +309,8 @@ sncioctl(ifp, cmd, data)
err = ifmedia_ioctl(ifp, ifr, &sc->sc_media, cmd);
break;
default:
- err = EINVAL;
+ err = ether_ioctl(ifp, cmd, data);
+ break;
}
splx(s);
return (err);
@@ -358,8 +353,7 @@ outloop:
* If bpf is listening on this interface, let it
* see the packet before we commit it to the wire.
*/
- if (ifp->if_bpf)
- bpf_mtap(ifp, m);
+ BPF_MTAP(ifp, m);
/*
* If there is nothing in the o/p queue, and there is room in
@@ -1105,9 +1099,8 @@ sonic_read(sc, pkt, len)
}
#endif /* SNCDEBUG */
- /* Pass the packet up, with the ether header sort-of removed. */
- m_adj(m, sizeof(struct ether_header));
- ether_input(ifp, et, m);
+ /* Pass the packet up. */
+ (*ifp->if_input)(ifp, m);
return (1);
}