[dpdk-dev] [PATCH v4 5/6] vmxnet3: add TSO support

2016-03-15 Thread Thomas Monjalon
2016-01-12 18:08, Yong Wang: > + /* Drop non-TSO packet that is excessively fragmented */ > + if (unlikely(!tso && count > VMXNET3_MAX_TXD_PER_PKT)) { > + PMD_TX_LOG(ERROR, "Non-TSO packet cannot occupy more > than %d tx " > +

[dpdk-dev] [PATCH v4 5/6] vmxnet3: add TSO support

2016-01-12 Thread Yong Wang
This commit adds vmxnet3 TSO support. Verified with test-pmd (set fwd csum) that both tso and non-tso pkts can be successfully transmitted and all segmentes for a tso pkt are correct on the receiver side. Signed-off-by: Yong Wang --- doc/guides/rel_notes/release_2_3.rst | 3 + drivers/net/vmx