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| pw127978 [PATCH] [v2] node: add IPv4 reassembly node
Date: Sat, 10 Jun 2023 11:18:56 -0700 (PDT)	[thread overview]
Message-ID: <6484be90.a70a0220.3f0dc.d303SMTPIN_ADDED_MISSING@mx.google.com> (raw)

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

_apply patch failure_

Submitter: Pavan Nikhilesh Bhagavatula <pbhagavatula@marvell.com>
Date: Friday, June 02 2023 16:48:40 
Applied on: CommitID:abaa473297cf21cb81e5348185a7694ae2f221e7
Apply patch set 127978 failed:

Checking patch doc/guides/prog_guide/graph_lib.rst...
error: while searching for:
the packet out to a particular ethdev_tx node.
``rte_node_ip4_rewrite_add()`` is control path API to add next-hop info.

ip6_lookup
~~~~~~~~~~
This node is an intermediate node that does LPM lookup for the received

error: patch failed: doc/guides/prog_guide/graph_lib.rst:388
Checking patch lib/node/ethdev_rx.c...
Checking patch lib/node/ethdev_rx_priv.h...
Checking patch lib/node/ip4_reassembly.c...
Checking patch lib/node/ip4_reassembly_priv.h...
Checking patch lib/node/meson.build...
error: while searching for:
        'null.c',
        'pkt_cls.c',
        'pkt_drop.c',
)
headers = files('rte_node_ip4_api.h', 'rte_node_ip6_api.h', 'rte_node_eth_api.h')
# Strict-aliasing rules are violated by uint8_t[] to context size casts.
cflags += '-fno-strict-aliasing'
deps += ['graph', 'mbuf', 'lpm', 'ethdev', 'mempool', 'cryptodev']

error: patch failed: lib/node/meson.build:19
Checking patch lib/node/rte_node_ip4_api.h...
Checking patch lib/node/version.map...
error: while searching for:
	rte_node_eth_config;
	rte_node_ip4_route_add;
	rte_node_ip4_rewrite_add;
	rte_node_ip6_rewrite_add;
	rte_node_ip6_route_add;
	rte_node_logtype;

error: patch failed: lib/node/version.map:4
Applying patch doc/guides/prog_guide/graph_lib.rst with 1 reject...
Rejected hunk #1.
Applied patch lib/node/ethdev_rx.c cleanly.
Applied patch lib/node/ethdev_rx_priv.h cleanly.
Applied patch lib/node/ip4_reassembly.c cleanly.
Applied patch lib/node/ip4_reassembly_priv.h cleanly.
Applying patch lib/node/meson.build with 1 reject...
Rejected hunk #1.
Applied patch lib/node/rte_node_ip4_api.h cleanly.
Applying patch lib/node/version.map with 1 reject...
Rejected hunk #1.
hint: Use 'git am --show-current-patch' to see the failed patch
diff a/doc/guides/prog_guide/graph_lib.rst b/doc/guides/prog_guide/graph_lib.rst	(rejected hunks)
@@ -388,6 +388,14 @@ to determine the L2 header to be written to the packet before sending
 the packet out to a particular ethdev_tx node.
 ``rte_node_ip4_rewrite_add()`` is control path API to add next-hop info.

+ip4_reassembly
+~~~~~~~~~~~~~~
+This node is an intermediate node that reassembles ipv4 fragmented packets,
+non-fragmented packets pass through the node un-effected. The node rewrites
+it's stream and moves it to the next node.
+The fragment table and death row table should be setup via the
+``rte_node_ip4_reassembly_configure`` API.
+
 ip6_lookup
 ~~~~~~~~~~
 This node is an intermediate node that does LPM lookup for the received
diff a/lib/node/meson.build b/lib/node/meson.build	(rejected hunks)
@@ -19,8 +19,9 @@ sources = files(
         'null.c',
         'pkt_cls.c',
         'pkt_drop.c',
+        'ip4_reassembly.c'
 )
 headers = files('rte_node_ip4_api.h', 'rte_node_ip6_api.h', 'rte_node_eth_api.h')
 # Strict-aliasing rules are violated by uint8_t[] to context size casts.
 cflags += '-fno-strict-aliasing'
-deps += ['graph', 'mbuf', 'lpm', 'ethdev', 'mempool', 'cryptodev']
+deps += ['graph', 'mbuf', 'lpm', 'ethdev', 'mempool', 'cryptodev', 'ip_frag']
diff a/lib/node/version.map b/lib/node/version.map	(rejected hunks)
@@ -4,6 +4,7 @@ EXPERIMENTAL {
 	rte_node_eth_config;
 	rte_node_ip4_route_add;
 	rte_node_ip4_rewrite_add;
+	rte_node_ip4_reassembly_configure;
 	rte_node_ip6_rewrite_add;
 	rte_node_ip6_route_add;
 	rte_node_logtype;

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

UNH-IOL DPDK Community Lab

             reply	other threads:[~2023-06-10 18:18 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-10 18:18 dpdklab [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-06-09 22:15 dpdklab
2023-06-02 21:49 dpdklab
     [not found] <20230602164840.2295-1-pbhagavatula@marvell.com>
2023-06-02 16:40 ` |WARNING| pw127978 [PATCH v2] " qemudev

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=6484be90.a70a0220.3f0dc.d303SMTPIN_ADDED_MISSING@mx.google.com \
    --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).