automatic DPDK test reports
 help / color / mirror / Atom feed
From: dpdklab@iol.unh.edu
To: test-report@dpdk.org
Cc: dpdk-test-reports@iol.unh.edu
Subject: |WARNING| pw111722 [PATCH] examples/ipsec-secgw: add support of NEON with poll mode
Date: Tue, 24 May 2022 06:18:26 -0400 (EDT)	[thread overview]
Message-ID: <20220524101826.681E36D4C2@noxus.dpdklab.iol.unh.edu> (raw)

[-- Attachment #1: Type: text/plain, Size: 2804 bytes --]

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

_apply patch failure_

Submitter: Rahul Bhansali <rbhansali@marvell.com>
Date: Tuesday, May 24 2022 09:57:17 
Applied on: CommitID:981a025741f80b4036f994ed30b04e757299ab19
Apply patch set 111722 failed:

Checking patch examples/ipsec-secgw/ipsec-secgw.c...
Hunk #2 succeeded at 107 (offset 7 lines).
error: while searching for:
			process_pkts_outbound(&qconf->outbound, &traffic);
	}

	route4_pkts(qconf->rt4_ctx, traffic.ip4.pkts, traffic.ip4.num,
		    qconf->outbound.ipv4_offloads, true);
	route6_pkts(qconf->rt6_ctx, traffic.ip6.pkts, traffic.ip6.num);
}

static inline void

error: patch failed: examples/ipsec-secgw/ipsec-secgw.c:561
Hunk #4 succeeded at 1969 (offset 562 lines).
Hunk #5 succeeded at 2292 (offset 421 lines).
Checking patch examples/ipsec-secgw/ipsec_lpm_neon.h...
Checking patch examples/ipsec-secgw/ipsec_neon.h...
Checking patch examples/ipsec-secgw/ipsec_worker.c...
error: while searching for:
				v6_num = ip6.num;
			}

			route4_pkts(rt4_ctx, v4, v4_num, 0, false);
			route6_pkts(rt6_ctx, v6, v6_num);
		}
	}
}

error: patch failed: examples/ipsec-secgw/ipsec_worker.c:1248
Applying patch examples/ipsec-secgw/ipsec-secgw.c with 1 reject...
Hunk #1 applied cleanly.
Hunk #2 applied cleanly.
Rejected hunk #3.
Hunk #4 applied cleanly.
Hunk #5 applied cleanly.
Applied patch examples/ipsec-secgw/ipsec_lpm_neon.h cleanly.
Applied patch examples/ipsec-secgw/ipsec_neon.h cleanly.
Applying patch examples/ipsec-secgw/ipsec_worker.c with 1 reject...
Hunk #1 applied cleanly.
Rejected hunk #2.
diff a/examples/ipsec-secgw/ipsec-secgw.c b/examples/ipsec-secgw/ipsec-secgw.c	(rejected hunks)
@@ -561,9 +571,16 @@ process_pkts(struct lcore_conf *qconf, struct rte_mbuf **pkts,
 			process_pkts_outbound(&qconf->outbound, &traffic);
 	}
 
+#if defined __ARM_NEON
+	/* Neon optimized packet routing */
+	route4_pkts_neon(qconf->rt4_ctx, traffic.ip4.pkts, traffic.ip4.num,
+			 qconf->outbound.ipv4_offloads, true);
+	route6_pkts_neon(qconf->rt6_ctx, traffic.ip6.pkts, traffic.ip6.num);
+#else
 	route4_pkts(qconf->rt4_ctx, traffic.ip4.pkts, traffic.ip4.num,
 		    qconf->outbound.ipv4_offloads, true);
 	route6_pkts(qconf->rt6_ctx, traffic.ip6.pkts, traffic.ip6.num);
+#endif
 }
 
 static inline void
diff a/examples/ipsec-secgw/ipsec_worker.c b/examples/ipsec-secgw/ipsec_worker.c	(rejected hunks)
@@ -1248,8 +1252,13 @@ ipsec_poll_mode_wrkr_inl_pr(void)
 				v6_num = ip6.num;
 			}
 
+#if defined __ARM_NEON
+			route4_pkts_neon(rt4_ctx, v4, v4_num, 0, false);
+			route6_pkts_neon(rt6_ctx, v6, v6_num);
+#else
 			route4_pkts(rt4_ctx, v4, v4_num, 0, false);
 			route6_pkts(rt6_ctx, v6, v6_num);
+#endif
 		}
 	}
 }

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

UNH-IOL DPDK Community Lab

             reply	other threads:[~2022-05-24 10:18 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-24 10:18 dpdklab [this message]
     [not found] <20220524095717.3875284-1-rbhansali@marvell.com>
2022-05-24  9:59 ` checkpatch

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220524101826.681E36D4C2@noxus.dpdklab.iol.unh.edu \
    --to=dpdklab@iol.unh.edu \
    --cc=dpdk-test-reports@iol.unh.edu \
    --cc=test-report@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).