Re: [net-next 02/13] ixgbe: Adding Tx encapsulation capability
From: Alexander Duyck <hidden>
Date: 2013-01-31 00:59:43
On 01/30/2013 09:48 AM, Eric Dumazet wrote:
On Wed, 2013-01-30 at 08:58 -0800, Alexander Duyck wrote:quoted
NAK, this is not a production patch. This was just meant to be proof of concept code.Well, this was the most interesting part of this serie for me ;) What is missing to reach production level ?
Well this was sort of a hack in the first place. I am just treating the outer headers as one giant L2 header in order to allow this to work.
hw_enc_features is in net-next with no user yet, I was eager to see the first implementation... if (skb->encapsulation) features &= dev->hw_enc_features;
Really the feature was meant for the next gen hardware, not the current gen. The fact is you can apply this patch and test with it, but you could probably do the same hack on most network drivers in order to make them capable of doing the transmit checksum on the inner header for VXlan frames. The other issue is this patch was pretty much just meant to allow testing the feature to make sure it was setup correctly in the kernel and as such I had advised our testers to only focus on bugs in the kernel enablement code and not the code enabling the offload in ixgbe. Thanks, Alex