Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 96566
b: refs/heads/master
c: 608961a
h: refs/heads/master
v: v3
  • Loading branch information
David S. Miller committed May 13, 2008
1 parent b50bb5a commit 307cb26
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f3994eceebf64cf356a82ffb2718ef538eb8d4f4
refs/heads/master: 608961a5eca8d3c6bd07172febc27b5559408c5d
4 changes: 2 additions & 2 deletions trunk/net/mac80211/tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -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_cloned(skb)) {
if (head_need > 0 || skb_header_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_cloned(skb))
if (skb_header_cloned(skb))
I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
else
I802_DEBUG_INC(local->tx_expand_skb_head);
Expand Down

0 comments on commit 307cb26

Please sign in to comment.