diff options
author | Damien Bergamini <damien@cvs.openbsd.org> | 2008-12-02 17:37:12 +0000 |
---|---|---|
committer | Damien Bergamini <damien@cvs.openbsd.org> | 2008-12-02 17:37:12 +0000 |
commit | ec5bcba82d1c7da07031b1730db91c0bf25bc213 (patch) | |
tree | 0de1163eef24d1c858ef51a44234b77016b48cb7 /sys | |
parent | 177bc7cdf9729872d5425640690365a452801f0e (diff) |
cleanup ieee80211_classify(): retrieve VLAN tag from m_pkthdr.ether_vtag.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net80211/ieee80211_output.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/sys/net80211/ieee80211_output.c b/sys/net80211/ieee80211_output.c index bda6a3cb115..bd2e55a90bf 100644 --- a/sys/net80211/ieee80211_output.c +++ b/sys/net80211/ieee80211_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ieee80211_output.c,v 1.79 2008/09/27 15:16:09 damien Exp $ */ +/* $OpenBSD: ieee80211_output.c,v 1.80 2008/12/02 17:37:11 damien Exp $ */ /* $NetBSD: ieee80211_output.c,v 1.13 2004/05/31 11:02:55 dyoung Exp $ */ /*- @@ -404,13 +404,8 @@ ieee80211_classify(struct ieee80211com *ic, struct mbuf *m) u_int8_t ds_field; #endif #if NVLAN > 0 - if ((m->m_flags & M_PROTO1) == M_PROTO1 && m->m_pkthdr.rcvif != NULL) { - struct ifvlan *ifv = m->m_pkthdr.rcvif->if_softc; - - /* use VLAN 802.1D user-priority */ - if (ifv->ifv_prio <= 7) - return ifv->ifv_prio; - } + if (m->m_flags & M_VLANTAG) /* use VLAN 802.1D user-priority */ + return EVL_PRIOFTAG(m->m_pkthdr.ether_vtag); #endif #ifdef INET eh = mtod(m, struct ether_header *); |