diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2007-08-13 14:04:30 +0200 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 16:47:43 -0700 |
commit | dde4e47e8fe333a5649a3fa0e7db1fa7c08d6158 (patch) | |
tree | 4f0f5d7dd1c3b7bf1d17b2f9c20930f6c08b8697 /net/wireless | |
parent | fe6aa301c747e0eca140428426e065657b6ab412 (diff) | |
download | op-kernel-dev-dde4e47e8fe333a5649a3fa0e7db1fa7c08d6158.zip op-kernel-dev-dde4e47e8fe333a5649a3fa0e7db1fa7c08d6158.tar.gz |
[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>
Diffstat (limited to 'net/wireless')
-rw-r--r-- | net/wireless/radiotap.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net/wireless/radiotap.c b/net/wireless/radiotap.c index 68c11d0..28fbd0b 100644 --- a/net/wireless/radiotap.c +++ b/net/wireless/radiotap.c @@ -161,7 +161,11 @@ int ieee80211_radiotap_iterator_next( [IEEE80211_RADIOTAP_DBM_TX_POWER] = 0x11, [IEEE80211_RADIOTAP_ANTENNA] = 0x11, [IEEE80211_RADIOTAP_DB_ANTSIGNAL] = 0x11, - [IEEE80211_RADIOTAP_DB_ANTNOISE] = 0x11 + [IEEE80211_RADIOTAP_DB_ANTNOISE] = 0x11, + [IEEE80211_RADIOTAP_RX_FLAGS] = 0x22, + [IEEE80211_RADIOTAP_TX_FLAGS] = 0x22, + [IEEE80211_RADIOTAP_RTS_RETRIES] = 0x11, + [IEEE80211_RADIOTAP_DATA_RETRIES] = 0x11, /* * add more here as they are defined in * include/net/ieee80211_radiotap.h |