]> git.baikalelectronics.ru Git - kernel.git/commit
mac80211: fix BUILD_BUG_ON() caused by misalignment on arm
authorFelix Fietkau <nbd@openwrt.org>
Mon, 3 Nov 2008 20:05:01 +0000 (21:05 +0100)
committerJohn W. Linville <linville@tuxdriver.com>
Fri, 21 Nov 2008 16:06:05 +0000 (11:06 -0500)
commit627efeb8798b456ee2e1f0dfd3628b09de680ade
tree7e73197e8f5ae76133c84f8c6cd0bab3d97ad5f8
parent6ed30748d6535d4a1e85ba0ac976d3366ded9b63
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>
include/net/mac80211.h