From: Johannes Berg <johannes@xxxxxxxxxxxxxxxx> Date: Mon, 05 May 2008 22:57:46 +0200 > But I cannot modify the ethernet header that'll live on in the skb data > so that's not useful. Actually, you can, if skb_header_cloned() returns false. When skb_header_cloned() returns false you can change the headers however you like. I'm not sure if it helps the bridging case or not, but in any event, the following patch should work and reduce the number of cases where pskb_expand_head() is necessary on TX. diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c index f35eaea..86f0e36 100644 --- a/net/mac80211/tx.c +++ b/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_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); -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html