Re: [PATCH] ibmveth: Support to enable LSO/CSO for Trunk VEA.
From: David Miller <davem@davemloft.net>
Date: 2017-04-08 18:45:30
Also in:
lkml, netdev
From: David Miller <davem@davemloft.net>
Date: 2017-04-08 18:45:30
Also in:
lkml, netdev
From: Sivakumar Krishnasamy <redacted> Date: Fri, 7 Apr 2017 05:57:59 -0400
Enable largesend and checksum offload for ibmveth configured in trunk mode. Added support to SKB frag_list in TX path by skb_linearize'ing such SKBs. Signed-off-by: Sivakumar Krishnasamy <redacted>
Why is linearization necessary? It would seem that the gains you get from GRO are nullified by linearizing the SKB and thus copying all the data around and allocating buffers. Finally, all of that new checksumming stuff looks extremely suspicious. You have to explain why that is happening and why it isn't because this driver is doing something incorrectly. Thanks.