Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 Jan 2008 01:31:50 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 133385 for review
Message-ID:  <200801160131.m0G1Vogc067233@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=133385

Change 133385 by sam@sam_ebb on 2008/01/16 01:31:41

	you cannot tape 802.3 frames off the underyling device any
	more (only radiotap); remove the tap calls as they do a
	null ptr deref (don't see a clean way to make this a noop)

Affected files ...

.. //depot/projects/vap/sys/dev/ral/rt2560.c#7 edit
.. //depot/projects/vap/sys/dev/ral/rt2661.c#7 edit

Differences ...

==== //depot/projects/vap/sys/dev/ral/rt2560.c#7 (text) ====

@@ -2029,8 +2029,6 @@
 			break;
 		}
 
-		BPF_MTAP(ifp, m);
-
 		ni = (struct ieee80211_node *) m->m_pkthdr.rcvif;
 		m = ieee80211_encap(ni, m);
 		if (m == NULL) {

==== //depot/projects/vap/sys/dev/ral/rt2661.c#7 (text) ====

@@ -1794,8 +1794,6 @@
 			break;
 		}
 
-		BPF_MTAP(ifp, m);
-
 		ni = (struct ieee80211_node *) m->m_pkthdr.rcvif;
 		m = ieee80211_encap(ni, m);
 		if (m == NULL) {



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