aboutsummaryrefslogtreecommitdiffstats
path: root/package/madwifi/patches/324-alignment.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-01-31 04:09:54 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-01-31 04:09:54 +0000
commit02cabf59486ff526a71c760b7120e0ce5e7892b7 (patch)
treed7025986045fd65118b17b57a8aedd7b718e4d82 /package/madwifi/patches/324-alignment.patch
parente80d5f9686da8698ae2b8d961401ec76cedcce30 (diff)
downloadupstream-02cabf59486ff526a71c760b7120e0ce5e7892b7.tar.gz
upstream-02cabf59486ff526a71c760b7120e0ce5e7892b7.tar.bz2
upstream-02cabf59486ff526a71c760b7120e0ce5e7892b7.zip
pull madwifi forward to the latest upstream version - should fix some dual radio issues; add preliminary 2.6.24 support patch (compiles, not run-time tested, thx SeG)
SVN-Revision: 10334
Diffstat (limited to 'package/madwifi/patches/324-alignment.patch')
-rw-r--r--package/madwifi/patches/324-alignment.patch15
1 files changed, 6 insertions, 9 deletions
diff --git a/package/madwifi/patches/324-alignment.patch b/package/madwifi/patches/324-alignment.patch
index 108f0c6137..bd8547b88f 100644
--- a/package/madwifi/patches/324-alignment.patch
+++ b/package/madwifi/patches/324-alignment.patch
@@ -1,8 +1,8 @@
-Index: madwifi-trunk-r3280/net80211/ieee80211_input.c
+Index: madwifi-trunk-r3314/net80211/ieee80211_input.c
===================================================================
---- madwifi-trunk-r3280.orig/net80211/ieee80211_input.c 2008-01-28 18:38:05.794780412 +0100
-+++ madwifi-trunk-r3280/net80211/ieee80211_input.c 2008-01-28 18:38:21.835694529 +0100
-@@ -1279,17 +1279,8 @@
+--- madwifi-trunk-r3314.orig/net80211/ieee80211_input.c 2008-01-31 03:33:26.665309039 +0100
++++ madwifi-trunk-r3314/net80211/ieee80211_input.c 2008-01-31 03:38:55.116026377 +0100
+@@ -1275,14 +1275,8 @@
eh->ether_type = ether_type;
if (!ALIGNED_POINTER(skb->data + sizeof(*eh), u_int32_t)) {
@@ -10,11 +10,8 @@ Index: madwifi-trunk-r3280/net80211/ieee80211_input.c
-
- /* XXX: does this always work? */
- tskb = skb_copy(skb, GFP_ATOMIC);
-- if (!tskb)
-- return skb;
--
-- /* We duplicate the reference after skb_copy */
-- ieee80211_skb_copy_noderef(skb, tskb);
+- if (tskb)
+- ieee80211_skb_copy_noderef(skb, tskb);
- ieee80211_dev_kfree_skb(&skb);
- skb = tskb;
+ memmove(skb->data - 2, skb->data, skb->len);