forked from luck/tmp_suning_uos_patched
vmxnet3: use correct tcp hdr length when packet is encapsulated
Commitdacce2be33
("vmxnet3: add geneve and vxlan tunnel offload support") added support for encapsulation offload. However, while calculating tcp hdr length, it does not take into account if the packet is encapsulated or not. This patch fixes this issue by using correct reference for inner tcp header. Fixes:dacce2be33
("vmxnet3: add geneve and vxlan tunnel offload support") Signed-off-by: Ronak Doshi <doshir@vmware.com> Acked-by: Guolin Yang <gyang@vmware.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
519a8a6cf9
commit
8a7f280f29
|
@ -886,7 +886,8 @@ vmxnet3_parse_hdr(struct sk_buff *skb, struct vmxnet3_tx_queue *tq,
|
|||
|
||||
switch (protocol) {
|
||||
case IPPROTO_TCP:
|
||||
ctx->l4_hdr_size = tcp_hdrlen(skb);
|
||||
ctx->l4_hdr_size = skb->encapsulation ? inner_tcp_hdrlen(skb) :
|
||||
tcp_hdrlen(skb);
|
||||
break;
|
||||
case IPPROTO_UDP:
|
||||
ctx->l4_hdr_size = sizeof(struct udphdr);
|
||||
|
|
Loading…
Reference in New Issue
Block a user