diff options
Diffstat (limited to 'net/mac80211/tx.c')
-rw-r--r-- | net/mac80211/tx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c index 195cb6d..ce06e79 100644 --- a/net/mac80211/tx.c +++ b/net/mac80211/tx.c @@ -1567,7 +1567,7 @@ int ieee80211_subif_start_xmit(struct sk_buff *skb, * make it big enough for everything we may ever need. */ - if (head_need > 0 || skb_header_cloned(skb)) { + if (head_need > 0 || skb_cloned(skb)) { head_need += IEEE80211_ENCRYPT_HEADROOM; head_need += local->tx_headroom; head_need = max_t(int, 0, head_need); |