Hi, In mac80211/ieee80211_sta.c, ieee80211_sta_wmm_params(), line ~267, is wmm_acm setting for case 1 (BK) and case 0 (BE) right (and not swapped)? Regards, Guy. switch (aci) { case 1: queue = IEEE80211_TX_QUEUE_DATA3; if (acm) { local->wmm_acm |= BIT(0) | BIT(3); } break; case 2: queue = IEEE80211_TX_QUEUE_DATA1; if (acm) { local->wmm_acm |= BIT(4) | BIT(5); } break; case 3: queue = IEEE80211_TX_QUEUE_DATA0; if (acm) { local->wmm_acm |= BIT(6) | BIT(7); } break; case 0: default: queue = IEEE80211_TX_QUEUE_DATA2; if (acm) { local->wmm_acm |= BIT(1) | BIT(2); } break; } - 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