aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2009-04-21 01:36:59 +0200
committerJohn W. Linville <linville@tuxdriver.com>2009-04-21 16:43:33 -0400
commitd1bcb9f1273adee6d2ce5edf84f19409a5cc31b9 (patch)
tree28f9aea8fae6c4835acd1be486775853417ec181 /net
parentmac80211: do not print WARN if config interface (diff)
downloadlinux-dev-d1bcb9f1273adee6d2ce5edf84f19409a5cc31b9.tar.xz
linux-dev-d1bcb9f1273adee6d2ce5edf84f19409a5cc31b9.zip
mac80211: fix alignment calculation bug
When checking whether or not a given frame needs to be moved to be properly aligned to a 4-byte boundary, we use & 4 which wasn't intended, this code should check the lowest two bits. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net')
-rw-r--r--net/mac80211/rx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c
index 5fa7aedd90ed..9776f73c51ad 100644
--- a/net/mac80211/rx.c
+++ b/net/mac80211/rx.c
@@ -1397,7 +1397,7 @@ ieee80211_deliver_skb(struct ieee80211_rx_data *rx)
* mac80211. That also explains the __skb_push()
* below.
*/
- align = (unsigned long)skb->data & 4;
+ align = (unsigned long)skb->data & 3;
if (align) {
if (WARN_ON(skb_headroom(skb) < 3)) {
dev_kfree_skb(skb);