Revert parts of r299575 in order to make more MIPS kernels build

again hopefully.
Rather than blindly removing a supposedly unused variable as reported by
the Clang Static Analyzer, inspect the code and hide them with proper
#ifdefs as they are used in certain conditional parts of the code.
This commit is contained in:
Bjoern A. Zeeb 2016-05-14 08:54:34 +00:00
parent 20f8619da0
commit 2e9090dfbe
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=299737

View File

@ -121,6 +121,9 @@ ieee80211_vap_pkt_send_dest(struct ieee80211vap *vap, struct mbuf *m,
{
struct ieee80211com *ic = vap->iv_ic;
struct ifnet *ifp = vap->iv_ifp;
#ifdef IEEE80211_SUPPORT_SUPERG
int mcast;
#endif
if ((ni->ni_flags & IEEE80211_NODE_PWR_MGT) &&
(m->m_flags & M_PWR_SAV) == 0) {
@ -160,6 +163,9 @@ ieee80211_vap_pkt_send_dest(struct ieee80211vap *vap, struct mbuf *m,
* interface it (might have been) received on.
*/
m->m_pkthdr.rcvif = (void *)ni;
#ifdef IEEE80211_SUPPORT_SUPERG
mcast = (m->m_flags & (M_MCAST | M_BCAST)) ? 1: 0;
#endif
BPF_MTAP(ifp, m); /* 802.3 tx */