diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-11-03 15:05:01 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-11-21 11:06:05 -0500 |
commit | 4821277f36e008b531728e359fbbedb229117f4b (patch) | |
tree | 7e73197e8f5ae76133c84f8c6cd0bab3d97ad5f8 /include | |
parent | 8b0162a3dc5c30e862b7a73da29e32de3170f5e4 (diff) |
mac80211: fix BUILD_BUG_ON() caused by misalignment on arm
On ARM alignment is done slightly different from other architectures.
struct ieee80211_tx_rate is aligned to word size, even though it only has 3
single-byte members, which triggers the BUILD_BUG_ON in
ieee80211_tx_info_clear_status
This patch marks the struct ieee80211_tx_rate as packed, so that ARM
behaves like the other architectures.
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/mac80211.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index 1b8ed421feaa..c813fbf7d364 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -307,7 +307,7 @@ struct ieee80211_tx_rate { | |||
307 | s8 idx; | 307 | s8 idx; |
308 | u8 count; | 308 | u8 count; |
309 | u8 flags; | 309 | u8 flags; |
310 | }; | 310 | } __attribute__((packed)); |
311 | 311 | ||
312 | /** | 312 | /** |
313 | * struct ieee80211_tx_info - skb transmit information | 313 | * struct ieee80211_tx_info - skb transmit information |