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. > @@ -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? > + if (vlan_priority > 0) > + return vlan_priority; I think you got indentation a bit confused :-) johannes -- 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