diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-07-31 17:37:09 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-07-31 17:37:09 +0000 |
commit | 9b149826da6dbcd2c6f140bc7674c1f046507d38 (patch) | |
tree | d1ffe173837f51c9255c9dddddac0a10bee6a8e9 /package/madwifi/patches/408-changeset_r3337.patch | |
parent | 0270f3b748fd48acb016351f572ecf11e963f87c (diff) |
fix madwifi packet injection
This patch from madwifi commit 3337 makes packet injection work.
Signed-off-by: Petr Liebmann <petrliebman@googlemail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12048 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/madwifi/patches/408-changeset_r3337.patch')
-rw-r--r-- | package/madwifi/patches/408-changeset_r3337.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/package/madwifi/patches/408-changeset_r3337.patch b/package/madwifi/patches/408-changeset_r3337.patch new file mode 100644 index 0000000000..de2eda2730 --- /dev/null +++ b/package/madwifi/patches/408-changeset_r3337.patch @@ -0,0 +1,34 @@ +--- a/THANKS ++++ b/THANKS +@@ -129,6 +129,7 @@ + jhansen + Benoit Papillault + Russell Harmon ++Alessandro Erta + + Apologies to anyone whose name was unintentionally left off. + Please let us know if you think your name should be mentioned here! +--- a/ath/if_ath.c ++++ b/ath/if_ath.c +@@ -2964,7 +2964,7 @@ + struct ath_softc *sc = dev->priv; + struct ath_hal *ah = sc->sc_ah; + struct ieee80211_phy_params *ph = (struct ieee80211_phy_params *) +- (SKB_CB(skb) + sizeof(struct ieee80211_cb)); ++ (SKB_CB(skb) + 1); /* NB: SKB_CB casts to CB struct*. */ + const HAL_RATE_TABLE *rt; + unsigned int pktlen, hdrlen, try0, power; + HAL_PKT_TYPE atype; +--- a/net80211/ieee80211_monitor.c ++++ b/net80211/ieee80211_monitor.c +@@ -128,8 +128,8 @@ + void + ieee80211_monitor_encap(struct ieee80211vap *vap, struct sk_buff *skb) + { +- struct ieee80211_phy_params *ph = +- (struct ieee80211_phy_params *) (SKB_CB(skb) + sizeof(struct ieee80211_cb)); ++ struct ieee80211_phy_params *ph = (struct ieee80211_phy_params *) ++ (SKB_CB(skb) + 1); /* NB: SKB_CB casts to CB struct*. */ + SKB_CB(skb)->flags = M_RAW; + SKB_CB(skb)->ni = NULL; + SKB_CB(skb)->next = NULL; |