Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 26 Apr 2009 21:16:29 +0000 (UTC)
From:      Sam Leffler <sam@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r191540 - head/sys/net80211
Message-ID:  <200904262116.n3QLGTih095038@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sam
Date: Sun Apr 26 21:16:29 2009
New Revision: 191540
URL: http://svn.freebsd.org/changeset/base/191540

Log:
  add missing part of r191537 that should have read: hoist DLT_IEEE802_11
  bpf tap from ieee80211_encap up to ieee80211_start

Modified:
  head/sys/net80211/ieee80211_output.c

Modified: head/sys/net80211/ieee80211_output.c
==============================================================================
--- head/sys/net80211/ieee80211_output.c	Sun Apr 26 21:16:03 2009	(r191539)
+++ head/sys/net80211/ieee80211_output.c	Sun Apr 26 21:16:29 2009	(r191540)
@@ -1138,10 +1138,6 @@ ieee80211_encap(struct ieee80211vap *vap
 		IEEE80211_NODE_STAT(ni, tx_ucast);
 	IEEE80211_NODE_STAT_ADD(ni, tx_bytes, datalen);
 
-	/* XXX fragmented frames not handled */
-	if (bpf_peers_present(vap->iv_rawbpf))
-		bpf_mtap(vap->iv_rawbpf, m);
-
 	return m;
 bad:
 	if (m != NULL)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200904262116.n3QLGTih095038>