On Fri, 2011-11-18 at 12:01 +0100, Simon Wunderlich wrote: > - if (is_multicast_ether_addr(hdr->addr1)) > + if (is_multicast_ether_addr(hdr->addr1) || > + (sdata->noack_map & 1 << tid)) { I'd prefer this: if (is_multicast_ether_addr(...) || sdata->noack_map & BIT(tid)) (Note indentation & use of BIT()) Isn't this missing an update to ieee80211_duration() now? 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