Commit dde4e47e8fe333a5649a3fa0e7db1fa7c08d6158
Committed by
David S. Miller
1 parent
fe6aa301c7
Exists in
master
and in
7 other branches
[WIRELESS] radiotap parser: accept all other fields
This makes the radiotap parser accept all other fields that are currently defined. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Showing 1 changed file with 5 additions and 1 deletions Side-by-side Diff
net/wireless/radiotap.c
... | ... | @@ -161,7 +161,11 @@ |
161 | 161 | [IEEE80211_RADIOTAP_DBM_TX_POWER] = 0x11, |
162 | 162 | [IEEE80211_RADIOTAP_ANTENNA] = 0x11, |
163 | 163 | [IEEE80211_RADIOTAP_DB_ANTSIGNAL] = 0x11, |
164 | - [IEEE80211_RADIOTAP_DB_ANTNOISE] = 0x11 | |
164 | + [IEEE80211_RADIOTAP_DB_ANTNOISE] = 0x11, | |
165 | + [IEEE80211_RADIOTAP_RX_FLAGS] = 0x22, | |
166 | + [IEEE80211_RADIOTAP_TX_FLAGS] = 0x22, | |
167 | + [IEEE80211_RADIOTAP_RTS_RETRIES] = 0x11, | |
168 | + [IEEE80211_RADIOTAP_DATA_RETRIES] = 0x11, | |
165 | 169 | /* |
166 | 170 | * add more here as they are defined in |
167 | 171 | * include/net/ieee80211_radiotap.h |