Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit efead871 authored by Shreyas Bhatewara's avatar Shreyas Bhatewara Committed by David S. Miller
Browse files

vmxnet3: Fix transport header size



Fix transport header size

Fix the transpoert header size for UDP packets.

Signed-off-by: default avatarShreyas N Bhatewara <sbhatewara@vmware.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 413708bb
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -830,13 +830,8 @@ vmxnet3_parse_and_copy_hdr(struct sk_buff *skb, struct vmxnet3_tx_queue *tq,
					ctx->l4_hdr_size = ((struct tcphdr *)
					   skb_transport_header(skb))->doff * 4;
				else if (iph->protocol == IPPROTO_UDP)
					/*
					 * Use tcp header size so that bytes to
					 * be copied are more than required by
					 * the device.
					 */
					ctx->l4_hdr_size =
							sizeof(struct tcphdr);
							sizeof(struct udphdr);
				else
					ctx->l4_hdr_size = 0;
			} else {
+2 −2
Original line number Diff line number Diff line
@@ -70,10 +70,10 @@
/*
 * Version numbers
 */
#define VMXNET3_DRIVER_VERSION_STRING   "1.1.18.0-k"
#define VMXNET3_DRIVER_VERSION_STRING   "1.1.29.0-k"

/* a 32-bit int, each byte encode a verion number in VMXNET3_DRIVER_VERSION */
#define VMXNET3_DRIVER_VERSION_NUM      0x01011200
#define VMXNET3_DRIVER_VERSION_NUM      0x01011D00

#if defined(CONFIG_PCI_MSI)
	/* RSS only makes sense if MSI-X is supported. */