summaryrefslogtreecommitdiffstats
path: root/sys/dev/de
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1994-11-10 02:56:48 +0000
committerdg <dg@FreeBSD.org>1994-11-10 02:56:48 +0000
commit233b360d13cebc266d2f3a7b6fb9c0890d2fd9b9 (patch)
tree32fc94c9829eb1ea5b5daf024e07bc11b82a3091 /sys/dev/de
parentb75a0726a5e4a79cb33083df9b6810aa4ddc39e4 (diff)
downloadFreeBSD-src-233b360d13cebc266d2f3a7b6fb9c0890d2fd9b9.zip
FreeBSD-src-233b360d13cebc266d2f3a7b6fb9c0890d2fd9b9.tar.gz
Added missing call to bpf on the transmit side. Nuked revision log.
Diffstat (limited to 'sys/dev/de')
-rw-r--r--sys/dev/de/if_de.c35
1 files changed, 5 insertions, 30 deletions
diff --git a/sys/dev/de/if_de.c b/sys/dev/de/if_de.c
index 447225b..36af5bb 100644
--- a/sys/dev/de/if_de.c
+++ b/sys/dev/de/if_de.c
@@ -21,36 +21,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: if_de.c,v 1.3 1994/10/12 11:19:35 se Exp $
- *
- * $Log: if_de.c,v $
- * Revision 1.3 1994/10/12 11:19:35 se
- * Submitted by: Matt Thomas <thomas@lkg.dec.com>
- * Preliminary FAST Ethernet support added (DEC21140).
- *
- * Revision 1.6 1994/10/11 18:20:10 thomas
- * new pci interface
- * new 100mb/s prelim support
- *
- * Revision 1.5 1994/10/01 16:10:24 thomas
- * Modifications for FreeBSD 2.0
- *
- * Revision 1.4 1994/09/09 21:10:05 thomas
- * mbuf debugging code
- * transmit fifo owkraroudns
- *
- * Revision 1.3 1994/08/16 20:40:56 thomas
- * New README files (one per driver)
- * Minor updates to drivers (DEPCA support and add pass to attach
- * output)
- *
- * Revision 1.2 1994/08/15 20:41:22 thomas
- * Support AUI and TP. Autosense either.
- * Revamp receive logic to use private kmem_alloc'ed 64K region.
- * Some cleanup
- *
- * Revision 1.1 1994/08/12 21:01:18 thomas
- * Initial revision
+ * $Id: if_de.c,v 1.4 1994/11/09 15:12:44 davidg Exp $
*
*/
@@ -672,6 +643,10 @@ tulip_start(
* it to transmit!
*/
IF_ENQUEUE(&sc->tulip_txq, m);
+#if NBPFILTER > 0
+ if (sc->tulip_bpf)
+ bpf_mtap(sc->tulip_bpf, m);
+#endif
eop->d_flag |= TULIP_DFLAG_TxLASTSEG|TULIP_DFLAG_TxWANTINTR;
sop->d_flag |= TULIP_DFLAG_TxFIRSTSEG;
sop->d_status = TULIP_DSTS_OWNER;
OpenPOWER on IntegriCloud