>>On Tue, 2013-06-25 at 17:31 +0200, cedric.voncken@xxxxxxxxx wrote: >> From: Cedric Voncken <cedric.voncken@xxxxxxxxx> >> >> If the VLAN priority is set in skb->vlan_tci use it to determine the WMM priority. >What's the VLAN priority? How are you even running 802.1q on top of wifi? heh. I used the wireless as bridge (The wireless vif client is bridged with my eth0). The VLAN tag is already present in frame when I received it from eth0. The eth0 driver set the skb->vlan_tci. >> @@ -694,6 +695,10 @@ unsigned int cfg80211_classify8021d(struct sk_buff *skb) >> if (skb->priority >= 256 && skb->priority <= 263) >> return skb->priority - 256; >> >> + vlan_priority = (skb->vlan_tci >> 13) & 0x07; >Are there no symbolic constants for this? Fix in V2 >> + if (vlan_priority > 0) >> + return vlan_priority; >I think you got indentation a bit confused :-) Sorry, it will fix in V2. Cedric -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html