diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-01-28 18:34:06 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-01-28 18:34:06 +0000 |
commit | b3378a4f120657d96db891ce19ed6533f99d1f94 (patch) | |
tree | 4c9c7d142b19e68c4c34cc70bc3ef7884e7254ea /package/madwifi/patches/324-alignment.patch | |
parent | 9337d3de3c936d0a77cf3e348e282f0754ab4dd0 (diff) | |
download | upstream-b3378a4f120657d96db891ce19ed6533f99d1f94.tar.gz upstream-b3378a4f120657d96db891ce19ed6533f99d1f94.tar.bz2 upstream-b3378a4f120657d96db891ce19ed6533f99d1f94.zip |
update madwifi to latest trunk, include a few more fixes/improvements
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10294 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/madwifi/patches/324-alignment.patch')
-rw-r--r-- | package/madwifi/patches/324-alignment.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/package/madwifi/patches/324-alignment.patch b/package/madwifi/patches/324-alignment.patch new file mode 100644 index 0000000000..108f0c6137 --- /dev/null +++ b/package/madwifi/patches/324-alignment.patch @@ -0,0 +1,24 @@ +Index: madwifi-trunk-r3280/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 @@ + eh->ether_type = ether_type; + + if (!ALIGNED_POINTER(skb->data + sizeof(*eh), u_int32_t)) { +- struct sk_buff *tskb; +- +- /* 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); +- ieee80211_dev_kfree_skb(&skb); +- skb = tskb; ++ memmove(skb->data - 2, skb->data, skb->len); ++ skb->data -= 2; + } + return skb; + } |