Message ID | 1455121877-7238-2-git-send-email-lorenzo.bianconi83@gmail.com (mailing list archive) |
---|---|
State | RFC |
Delegated to: | Johannes Berg |
Headers | show |
On Wed, 2016-02-10 at 17:31 +0100, Lorenzo Bianconi wrote: > Add IEEE80211_RADIOTAP_VHT entry to rtap_namespace_sizes array in > order to > define alignment and size of VHT info in tx radiotap > I think you forgot this patch in your [PATCH] resend, can you resend it properly? johannes -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
> On Wed, 2016-02-10 at 17:31 +0100, Lorenzo Bianconi wrote: >> Add IEEE80211_RADIOTAP_VHT entry to rtap_namespace_sizes array in >> order to >> define alignment and size of VHT info in tx radiotap >> > I think you forgot this patch in your [PATCH] resend, can you resend it > properly? Sorry, my fault :) v2 on the way. Best regards, Lorenzo > > johannes
diff --git a/net/wireless/radiotap.c b/net/wireless/radiotap.c index 722da61..6582d15 100644 --- a/net/wireless/radiotap.c +++ b/net/wireless/radiotap.c @@ -43,6 +43,7 @@ static const struct radiotap_align_size rtap_namespace_sizes[] = { [IEEE80211_RADIOTAP_DATA_RETRIES] = { .align = 1, .size = 1, }, [IEEE80211_RADIOTAP_MCS] = { .align = 1, .size = 3, }, [IEEE80211_RADIOTAP_AMPDU_STATUS] = { .align = 4, .size = 8, }, + [IEEE80211_RADIOTAP_VHT] = { .align = 2, .size = 12, }, /* * add more here as they are defined in radiotap.h */
Add IEEE80211_RADIOTAP_VHT entry to rtap_namespace_sizes array in order to define alignment and size of VHT info in tx radiotap Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com> --- net/wireless/radiotap.c | 1 + 1 file changed, 1 insertion(+)