Hello Johannes, During ath9k test we found a performance problem in TCP TX direction. Seems a lot of time we spent in memcpy() and this is because ath9k don't set SUPPORTS_CLONED_SKBS, and next pskb_expand_head() is called for every TCP frame. Base of SUPPORTS_CLONED_SKBS description, we can set this flag in case driver will not touch payload or tailroom. What exactly does it mean? What in case of headroom, while ath9k already move 80211 header - add padding after header (skb_push(hdrlen & 3) + memmove) and remove this padding in tx_completion. What in case of FCS? I am not sure this is save to set this flag for ath9k? Any hints? BR Janusz -- 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