From 724741818c6410cfdda128edf273419570967fc9 Mon Sep 17 00:00:00 2001 From: "David S. Miller" Date: Wed, 18 Jun 2008 01:19:51 -0700 Subject: [PATCH] --- yaml --- r: 98248 b: refs/heads/master c: 3a5be7d4b079f3a9ce1e8ce4a93ba15ae6d00111 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/net/mac80211/tx.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/[refs] b/[refs] index 8cfda677a9ae..2273f5b7ca9b 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 3c73419c09a5ef73d56472dbfdade9e311496e9b +refs/heads/master: 3a5be7d4b079f3a9ce1e8ce4a93ba15ae6d00111 diff --git a/trunk/net/mac80211/tx.c b/trunk/net/mac80211/tx.c index 1d7dd54aacef..28d8bd53bd3a 100644 --- a/trunk/net/mac80211/tx.c +++ b/trunk/net/mac80211/tx.c @@ -1562,13 +1562,13 @@ int ieee80211_subif_start_xmit(struct sk_buff *skb, * be cloned. This could happen, e.g., with Linux bridge code passing * us broadcast frames. */ - if (head_need > 0 || skb_header_cloned(skb)) { + if (head_need > 0 || skb_cloned(skb)) { #if 0 printk(KERN_DEBUG "%s: need to reallocate buffer for %d bytes " "of headroom\n", dev->name, head_need); #endif - if (skb_header_cloned(skb)) + if (skb_cloned(skb)) I802_DEBUG_INC(local->tx_expand_skb_head_cloned); else I802_DEBUG_INC(local->tx_expand_skb_head);