automatic DPDK test reports
 help / color / mirror / Atom feed
* |WARNING| pw127978 [PATCH] [v2] node: add IPv4 reassembly node
@ 2023-06-02 21:49 dpdklab
  0 siblings, 0 replies; 4+ messages in thread
From: dpdklab @ 2023-06-02 21:49 UTC (permalink / raw)
  To: test-report; +Cc: dpdk-test-reports

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* |WARNING| pw127978 [PATCH] [v2] node: add IPv4 reassembly node
@ 2023-06-10 18:18 dpdklab
  0 siblings, 0 replies; 4+ messages in thread
From: dpdklab @ 2023-06-10 18:18 UTC (permalink / raw)
  To: test-report; +Cc: dpdk-test-reports

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* |WARNING| pw127978 [PATCH] [v2] node: add IPv4 reassembly node
@ 2023-06-09 22:15 dpdklab
  0 siblings, 0 replies; 4+ messages in thread
From: dpdklab @ 2023-06-09 22:15 UTC (permalink / raw)
  To: test-report; +Cc: dpdk-test-reports

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* |WARNING| pw127978 [PATCH v2] node: add IPv4 reassembly node
       [not found] <20230602164840.2295-1-pbhagavatula@marvell.com>
@ 2023-06-02 16:40 ` qemudev
  0 siblings, 0 replies; 4+ messages in thread
From: qemudev @ 2023-06-02 16:40 UTC (permalink / raw)
  To: test-report; +Cc: pbhagavatula, zhoumin

Test-Label: loongarch-compilation
Test-Status: WARNING
http://dpdk.org/patch/127978

_apply patch failure_

Submitter: Pavan Nikhilesh Bhagavatula <pbhagavatula@marvell.com>
Date: Fri, 2 Jun 2023 22:18:40 +0530
DPDK git baseline: Repo:dpdk
  Branch: main
  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
error: doc/guides/prog_guide/graph_lib.rst: patch does not apply
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
error: lib/node/meson.build: patch does not apply
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
error: lib/node/version.map: patch does not apply


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-06-10 18:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-02 21:49 |WARNING| pw127978 [PATCH] [v2] node: add IPv4 reassembly node dpdklab
  -- strict thread matches above, loose matches on Subject: below --
2023-06-10 18:18 dpdklab
2023-06-09 22:15 dpdklab
     [not found] <20230602164840.2295-1-pbhagavatula@marvell.com>
2023-06-02 16:40 ` |WARNING| pw127978 [PATCH v2] " qemudev

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).