On Fri, 2011-04-22 at 18:34 +0200, Matteo Croce wrote: > --- a/net/mac80211/status.c 2011-04-22 11:34:08.833135198 +0200 > +++ b/net/mac80211/status.c 2011-04-22 11:34:54.037135187 +0200 > @@ -405,6 +405,19 @@ > !(info->status.rates[0].flags & IEEE80211_TX_RC_MCS)) > rthdr->rate = sband->bitrates[ > info->status.rates[0].idx].bitrate / 5; > + /* HT rates */ > + if (info->status.rates[0].flags & IEEE80211_TX_RC_MCS) { > + rthdr->hdr.it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_MCS); > + rthdr->rate = 0; > + rthdr->ht_known = IEEE80211_RADIOTAP_MCS_HAVE_BW | > + IEEE80211_RADIOTAP_MCS_HAVE_MCS | > + IEEE80211_RADIOTAP_MCS_HAVE_GI; > + rthdr->ht_mcs = info->status.rates[0].idx; > + if (info->status.rates[0].flags & IEEE80211_TX_RC_40_MHZ_WIDTH) > + rthdr->ht_flag |= IEEE80211_RADIOTAP_MCS_BW_40; > + if (info->status.rates[0].flags & IEEE80211_TX_RC_SHORT_GI) > + rthdr->ht_flag |= IEEE80211_RADIOTAP_MCS_SGI; > + } I think you should also split the patch -- this part isn't really only injection. 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