[dpdk-test-report] |WARNING| pw98441 [PATCH] vhost: merge repeated loop in vhost Tx

dpdklab at iol.unh.edu dpdklab at iol.unh.edu
Thu Sep 9 16:35:12 CEST 2021


Test-Label: iol-testing
Test-Status: WARNING
http://dpdk.org/patch/98441

_apply patch failure_

Submitter: Gaoxiang Liu <gaoxiangliu0 at 163.com>
Date: Thursday, September 09 2021 14:00:43 
Applied on: CommitID:dbf81c338cdcf9737315c57ac4dfd40df4c6b8e9
Apply patch set 98441 failed:

.git/rebase-apply/patch:99: trailing whitespace.
	
Checking patch drivers/net/vhost/rte_eth_vhost.c...
Checking patch lib/vhost/virtio_net.c...
Hunk #1 succeeded at 1218 (offset -5 lines).
error: while searching for:
	do {
		rte_prefetch0(&vq->desc_packed[vq->last_avail_idx]);

		if (count - pkt_idx >= PACKED_BATCH_SIZE) {
			if (!virtio_dev_rx_batch_packed(dev, vq,
							&pkts[pkt_idx])) {

error: patch failed: lib/vhost/virtio_net.c:1374
Applied patch drivers/net/vhost/rte_eth_vhost.c cleanly.
Applying patch lib/vhost/virtio_net.c with 1 reject...
Hunk #1 applied cleanly.
Rejected hunk #2.
diff a/lib/vhost/virtio_net.c b/lib/vhost/virtio_net.c	(rejected hunks)
@@ -1374,6 +1384,17 @@ virtio_dev_rx_packed(struct virtio_net *dev,
 	do {
 		rte_prefetch0(&vq->desc_packed[vq->last_avail_idx]);
 
+		/* Do VLAN tag insertion */
+		if (pkts[pkt_idx]->ol_flags & PKT_TX_VLAN_PKT) {
+			int error = rte_vlan_insert(&pkts[pkt_idx]);
+			if (unlikely(error)) {
+				rte_pktmbuf_free(pkts[pkt_idx]);
+				pkts[pkt_idx] = NULL;
+				pkt_idx++;
+				continue;
+			}
+		}
+	
 		if (count - pkt_idx >= PACKED_BATCH_SIZE) {
 			if (!virtio_dev_rx_batch_packed(dev, vq,
 							&pkts[pkt_idx])) {

https://lab.dpdk.org/results/dashboard/patchsets/18647/

UNH-IOL DPDK Community Lab


More information about the test-report mailing list