diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-02-07 10:42:40 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-02-07 10:42:40 +0000 |
commit | 55bd66663d9a8891b39b635f095e9461613d0c8c (patch) | |
tree | bdd8096ca96b23bcde3bdab052b8898cad3427db | |
parent | 817390fd03087710107ca9fb3bce6d96ab0006d5 (diff) | |
download | upstream-55bd66663d9a8891b39b635f095e9461613d0c8c.tar.gz upstream-55bd66663d9a8891b39b635f095e9461613d0c8c.tar.bz2 upstream-55bd66663d9a8891b39b635f095e9461613d0c8c.zip |
mac80211: fix the check for cloned skbs in the tx path
SVN-Revision: 25398
-rw-r--r-- | package/mac80211/patches/590-mac80211_fix_clone_check.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/mac80211/patches/590-mac80211_fix_clone_check.patch b/package/mac80211/patches/590-mac80211_fix_clone_check.patch new file mode 100644 index 0000000000..41de0bbe07 --- /dev/null +++ b/package/mac80211/patches/590-mac80211_fix_clone_check.patch @@ -0,0 +1,11 @@ +--- a/net/mac80211/tx.c ++++ b/net/mac80211/tx.c +@@ -1547,7 +1547,7 @@ static int ieee80211_skb_resize(struct i + skb_orphan(skb); + } + +- if (skb_header_cloned(skb)) ++ if (skb_cloned(skb)) + I802_DEBUG_INC(local->tx_expand_skb_head_cloned); + else if (head_need || tail_need) + I802_DEBUG_INC(local->tx_expand_skb_head); |