Skip to content

Encap: IPv6 outer#60

Merged
gspivey merged 2 commits into
developmentfrom
agent/encap-ipv6-outer
May 21, 2026
Merged

Encap: IPv6 outer#60
gspivey merged 2 commits into
developmentfrom
agent/encap-ipv6-outer

Conversation

@gspivey
Copy link
Copy Markdown
Owner

@gspivey gspivey commented May 21, 2026

Roadmap item

Encap: IPv6 outer — Adds IPv6 outer support to all three encapsulation protocols (VXLAN, GENEVE, GUE), closing out dual-stack encap in a single PR.

Changes

For each protocol (GUE, VXLAN, GENEVE), adds:

  • *Config6 struct with Ipv6Addr for remote tunnel endpoint
  • build_*_frame_into_v6() — frame builder using outer IPv6 header + mandatory UDP6 checksum (RFC 8200 §8.1)
  • try_decap_*_v6() — decapsulation for IPv6-outer frames
  • *DecapResult6 with Ipv6Addr for outer source IP
  • *_ENCAP_OVERHEAD_V6 constant

Wire format: [Outer Eth 14B][Outer IPv6 40B][Outer UDP 8B][Protocol Header][Inner frame]

Tests added

41 new unit tests (total: 654, up from 613):

  • GUE: 13 tests (config, roundtrip, wire format, checksum, edge cases, perf)
  • VXLAN: 13 tests (config, roundtrip, wire format, checksum, VNI filtering, perf)
  • GENEVE: 15 tests (config, roundtrip, TLV options, wire format, checksum, VNI filtering, perf)

All synthetic PPS benchmarks assert < 10µs/op.

Tradeoffs

  • Inner payload is IPv4-only for now (matching the existing IPv4-outer encap). Inner IPv6 will come with the full IPv6 socket support (roadmap task 3).
  • No extension header support in the outer IPv6 — uses Next Header = UDP directly. Extension headers are not needed for tunnel endpoints.
  • The IPv6 outer decap functions do not walk extension headers in the outer IPv6 header (assumes Next Header = UDP). This matches real-world tunnel deployments where the outer header is minimal.

Dependencies satisfied

Add IPv6 outer encapsulation to all three tunnel protocols, closing
out dual-stack encap as described in the roadmap.

For each protocol (GUE, VXLAN, GENEVE):
- Config6 struct with Ipv6Addr for remote tunnel endpoint
- build_*_frame_into_v6() using outer IPv6 header + mandatory
  UDP6 checksum (RFC 8200 §8.1)
- try_decap_*_v6() for decapsulating IPv6-outer frames
- *DecapResult6 with Ipv6Addr for outer source
- *_ENCAP_OVERHEAD_V6 constant

Wire format:
  [Outer Eth 14B][Outer IPv6 40B][Outer UDP 8B][Protocol Header][Inner frame]

The outer UDP checksum is always computed (mandatory for IPv6),
using the existing udp6_checksum() helper from ipv6.rs.

41 new unit tests including synthetic PPS benchmarks for each protocol.

Dependencies satisfied: IPv6 header build/parse (PR #49), UDP6
checksum (same PR), IPv6 offload flags (PR #55).
@github-actions
Copy link
Copy Markdown

Synthetic Performance Results (run)

Commit: 31d9390a

✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)

Synthetic UDP Performance Results

Measures framework overhead: sync dpdk_udp::UdpSocket vs async (std::sync::Mutex + try_recv_from).

Test Payload Sync PPS Async PPS Ratio (sync/async) Async ns/op
TX send_to 64B 12.2M 11.6M 1.0x 85
RX recv_from 64B 3.7M 4.8M 0.8x 208
TX send_to 1400B 1.9M 1.9M 1.0x 528
RX recv_from 1400B 1.1M 1.2M 0.9x 813

Avg sync/async ratio: 0.9x, worst: 1.0x

Good: Async wrapper is within 1.0x of sync — minimal framework overhead.

@github-actions
Copy link
Copy Markdown

Synthetic Performance Results — Graviton (run)

Commit: 31d9390a

✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)

Synthetic UDP Performance Results

Measures framework overhead: sync dpdk_udp::UdpSocket vs async (std::sync::Mutex + try_recv_from).

Test Payload Sync PPS Async PPS Ratio (sync/async) Async ns/op
TX send_to 64B 11.5M 11.0M 1.1x 91
RX recv_from 64B 3.4M 4.5M 0.8x 223
TX send_to 1400B 1.6M 1.6M 1.0x 613
RX recv_from 1400B 998.8K 1.1M 0.9x 916

Avg sync/async ratio: 0.9x, worst: 1.1x

Good: Async wrapper is within 1.1x of sync — minimal framework overhead.

@github-actions
Copy link
Copy Markdown

[CI] Stage: Deploy

Infrastructure ready.

  • Sender: i-096637188c1ca01d9 (DPDK ENI: 10.0.1.102)
  • Receiver: i-0e90636159fe95ccc (DPDK ENI: 10.0.1.201)
  • Both instances SSM-ready.

@github-actions
Copy link
Copy Markdown

[CI] Stage: Deploy

Infrastructure ready.

  • Sender: i-0cd0526c5bfae23ec (DPDK ENI: 10.0.1.38)
  • Receiver: i-01d0adb4cfb74447b (DPDK ENI: 10.0.1.6)
  • Both instances SSM-ready.

@github-actions
Copy link
Copy Markdown

[CI] Stage: Summary

All tests PASSED.

ARP seeding: kernel /proc/net/arp (automatic)

  • tier1-dpdk-echo: 6 tests, 0 failures
  • tier2-kernel-interop: 4 tests, 0 failures
  • tier3-iperf-interop: 1 tests, 0 failures
  • tier3-iperf-interop: 1 tests, 0 failures

1 similar comment
@github-actions
Copy link
Copy Markdown

[CI] Stage: Summary

All tests PASSED.

ARP seeding: kernel /proc/net/arp (automatic)

  • tier1-dpdk-echo: 6 tests, 0 failures
  • tier2-kernel-interop: 4 tests, 0 failures
  • tier3-iperf-interop: 1 tests, 0 failures
  • tier3-iperf-interop: 1 tests, 0 failures

@github-actions
Copy link
Copy Markdown

✅ Integration Tests Passed — Graviton (run)

Branch: 60/merge | Commit: 31d9390a

Test Results

  • tier1-dpdk-echo.xml: 6 tests, 0 failures
  • tier2-kernel-interop.xml: 4 tests, 0 failures
  • tier3-iperf-sends.xml: 1 tests, 0 failures
  • tier3-our-app-sends.xml: 1 tests, 0 failures

Application Logs (last 20 lines)

receiver-echo-server.log

EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.201:9000 (MAC: 02:87:4a:0e:78:ef)
echo listening on 10.0.1.201:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-echo-server.log

EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.102:9000 (MAC: 02:d0:1a:64:ce:7d)
echo listening on 10.0.1.102:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-test-client.log

EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
TELEMETRY: No legacy callbacks, legacy socket not created
DPDK bind failed (Port init failed: Invalid port ID: 0), falling back to tokio
Backend: tokio
Sending packets...
Sent 12 bytes: 'arp-probe #1'
Received 12 bytes from 10.0.1.201:9000: 'arp-probe #1'
Test complete
[2026-05-21T03:45:57Z] INFO: ARP resolution succeeded (got response from peer)
[2026-05-21T03:45:57Z] INFO: Test: udp_send_receive
[2026-05-21T03:45:59Z] INFO: UDP send/receive succeeded
[2026-05-21T03:45:59Z] INFO: Test: echo_roundtrip
[2026-05-21T03:45:59Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-05-21T03:45:59Z] INFO: Test: payload_integrity
[2026-05-21T03:45:59Z] INFO: Response received, checking payload match...
[2026-05-21T03:45:59Z] INFO: Payload integrity verified (found in response)
[2026-05-21T03:45:59Z] INFO: JUnit XML written to: /tmp/test-results/tier2-kernel-interop.xml
[2026-05-21T03:45:59Z] INFO: Tier 2 sender tests complete. Results: /tmp/test-results/tier2-kernel-interop.xml

@github-actions
Copy link
Copy Markdown

✅ Integration Tests Passed (Run 26203824751)

Branch: 60/merge | Commit: 31d9390a

Test Results

  • tier1-dpdk-echo.xml: 6 tests, 0 failures, skipped
  • tier2-kernel-interop.xml: 4 tests, 0 failures, skipped
  • tier3-iperf-sends.xml: 1 tests, 0 failures, skipped
  • tier3-our-app-sends.xml: 1 tests, 0 failures, skipped

Application Logs (last 20 lines)

receiver-echo-server.log

EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.6:9000 (MAC: 02:84:06:6b:4a:3f)
echo listening on 10.0.1.6:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-echo-server.log

EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.38:9000 (MAC: 02:50:0f:6e:66:85)
echo listening on 10.0.1.38:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-test-client.log

EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
TELEMETRY: No legacy callbacks, legacy socket not created
DPDK bind failed (Port init failed: Invalid port ID: 0), falling back to tokio
Backend: tokio
Sending packets...
Sent 12 bytes: 'arp-probe #1'
Received 12 bytes from 10.0.1.6:9000: 'arp-probe #1'
Test complete
[2026-05-21T03:48:06Z] INFO: ARP resolution succeeded (got response from peer)
[2026-05-21T03:48:06Z] INFO: Test: udp_send_receive
[2026-05-21T03:48:07Z] INFO: UDP send/receive succeeded
[2026-05-21T03:48:07Z] INFO: Test: echo_roundtrip
[2026-05-21T03:48:08Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-05-21T03:48:08Z] INFO: Test: payload_integrity
[2026-05-21T03:48:08Z] INFO: Response received, checking payload match...
[2026-05-21T03:48:08Z] INFO: Payload integrity verified (found in response)
[2026-05-21T03:48:08Z] INFO: JUnit XML written to: /tmp/test-results/tier2-kernel-interop.xml
[2026-05-21T03:48:08Z] INFO: Tier 2 sender tests complete. Results: /tmp/test-results/tier2-kernel-interop.xml

receiver-test-client-iperf.log

[2026-05-21T03:55:16Z] INFO: iperf-sends: sent 10 packets, received 10 responses
[2026-05-21T03:55:16Z] INFO: iperf-sends: PASS (sent >= 5 packets)
[2026-05-21T03:55:16Z] INFO: JUnit XML written to: /tmp/test-results/tier3-iperf-sends.xml
[2026-05-21T03:55:16Z] INFO: iperf-sends test complete

sender-test-client-iperf.log

Received 30 bytes from 10.0.1.6:9000: 'dpdk-to-kernel-test-payload #3'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #4'
Received 30 bytes from 10.0.1.6:9000: 'dpdk-to-kernel-test-payload #4'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #5'
Received 30 bytes from 10.0.1.6:9000: 'dpdk-to-kernel-test-payload #5'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #6'
Received 30 bytes from 10.0.1.6:9000: 'dpdk-to-kernel-test-payload #6'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #7'
Received 30 bytes from 10.0.1.6:9000: 'dpdk-to-kernel-test-payload #7'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #8'
Received 30 bytes from 10.0.1.6:9000: 'dpdk-to-kernel-test-payload #8'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #9'
Received 30 bytes from 10.0.1.6:9000: 'dpdk-to-kernel-test-payload #9'
Sent 31 bytes: 'dpdk-to-kernel-test-payload #10'
Received 31 bytes from 10.0.1.6:9000: 'dpdk-to-kernel-test-payload #10'
Test complete
[2026-05-21T03:54:15Z] INFO: our-app-sends: sent 10 packets, received 10 responses
[2026-05-21T03:54:15Z] INFO: our-app-sends: PASS (sent >= 5 packets)
[2026-05-21T03:54:15Z] INFO: JUnit XML written to: /tmp/test-results/tier3-our-app-sends.xml
[2026-05-21T03:54:15Z] INFO: our-app-sends test complete
Full Application Logs (last 200 lines each)

receiver-echo-server.log

EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.6:9000 (MAC: 02:84:06:6b:4a:3f)
echo listening on 10.0.1.6:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-echo-server.log

EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.38:9000 (MAC: 02:50:0f:6e:66:85)
echo listening on 10.0.1.38:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-test-client.log

[2026-05-21T03:43:47Z] INFO: Test: arp_resolution
UDP Test Client
Target: 10.0.1.6:9000
Bind address: 10.0.1.38:0
Message: 'arp-probe'
Count: 1
EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.38:32768 (MAC: 02:50:0f:6e:66:85)
Backend: dpdk
Sending packets...
Sent 12 bytes: 'arp-probe #1'
Received 12 bytes from 10.0.1.6:9000: 'arp-probe #1'
Test complete
[2026-05-21T03:43:48Z] INFO: ARP resolution succeeded (got response from peer)
[2026-05-21T03:43:48Z] INFO: Test: udp_send_receive
[2026-05-21T03:43:50Z] INFO: UDP send/receive succeeded
[2026-05-21T03:43:50Z] INFO: Test: echo_roundtrip
[2026-05-21T03:43:51Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-05-21T03:43:51Z] INFO: Test: payload_integrity
[2026-05-21T03:43:52Z] INFO: Response received, checking payload match...
[2026-05-21T03:43:52Z] INFO: Payload integrity verified (found in response)
[2026-05-21T03:43:52Z] INFO: Test: jumbo_diagnostics
[2026-05-21T03:43:52Z] INFO: === JUMBO FRAME DIAGNOSTICS ===
[2026-05-21T03:43:52Z] INFO: Interface MTU:
  9001
  65536
[2026-05-21T03:43:52Z] INFO:   ens5: MTU=9001
[2026-05-21T03:43:52Z] INFO:   lo: MTU=65536
[2026-05-21T03:43:52Z] INFO: Routing table MTU column:
Iface	Destination	Gateway 	Flags	RefCnt	Use	Metric	Mask		MTU	Window	IRTT                                                       
ens5	00000000	0101000A	0003	0	0	512	00000000	0	0	0                                                                             
ens5	0200000A	0101000A	0007	0	0	512	FFFFFFFF	0	0	0                                                                             
ens5	0001000A	00000000	0001	0	0	512	00FFFFFF	0	0	0                                                                             
ens5	0101000A	00000000	0005	0	0	512	FFFFFFFF	0	0	0                                                                             
[2026-05-21T03:43:52Z] INFO: DPDK port config (from echo server log):
[2026-05-21T03:43:52Z] INFO:   (no MTU info in echo log)
[2026-05-21T03:43:52Z] INFO: === END JUMBO DIAGNOSTICS ===
[2026-05-21T03:43:52Z] INFO: Test: jumbo_echo_8000
[2026-05-21T03:43:54Z] INFO: Jumbo output: UDP Test Client
Target: 10.0.1.6:9000
Bind address: 10.0.1.38:0
Payload size: 8000 bytes
Count: 3
EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.38:32768 (MAC: 02:50:0f:6e:66:85)
Backend: dpdk
Sending packets...
Sent 8000 bytes (binary payload)
Received 8000 bytes from 10.0.1.6:9000 (expected 8000, OK)
Sent 8000 bytes (binary payload)
Received 8000 bytes from 10.0.1.6:9000 (expected 8000, OK)
Sent 8000 bytes (binary payload)
Received 8000 bytes from 10.0.1.6:9000 (expected 8000, OK)
Test complete
[2026-05-21T03:43:54Z] INFO: Jumbo frame echo succeeded: 3/3 responses with correct size
[2026-05-21T03:43:54Z] INFO: JUnit XML written to: /tmp/test-results/tier1-dpdk-echo.xml
[2026-05-21T03:43:54Z] INFO: Tier 1 sender tests complete. Results: /tmp/test-results/tier1-dpdk-echo.xml
[2026-05-21T03:48:06Z] INFO: Test: arp_resolution
UDP Test Client
Target: 10.0.1.6:9000
Bind address: 0.0.0.0:0
Message: 'arp-probe'
Count: 1
EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
TELEMETRY: No legacy callbacks, legacy socket not created
DPDK bind failed (Port init failed: Invalid port ID: 0), falling back to tokio
Backend: tokio
Sending packets...
Sent 12 bytes: 'arp-probe #1'
Received 12 bytes from 10.0.1.6:9000: 'arp-probe #1'
Test complete
[2026-05-21T03:48:06Z] INFO: ARP resolution succeeded (got response from peer)
[2026-05-21T03:48:06Z] INFO: Test: udp_send_receive
[2026-05-21T03:48:07Z] INFO: UDP send/receive succeeded
[2026-05-21T03:48:07Z] INFO: Test: echo_roundtrip
[2026-05-21T03:48:08Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-05-21T03:48:08Z] INFO: Test: payload_integrity
[2026-05-21T03:48:08Z] INFO: Response received, checking payload match...
[2026-05-21T03:48:08Z] INFO: Payload integrity verified (found in response)
[2026-05-21T03:48:08Z] INFO: JUnit XML written to: /tmp/test-results/tier2-kernel-interop.xml
[2026-05-21T03:48:08Z] INFO: Tier 2 sender tests complete. Results: /tmp/test-results/tier2-kernel-interop.xml

receiver-test-client-iperf.log

[2026-05-21T03:55:16Z] INFO: iperf-sends: sent 10 packets, received 10 responses
[2026-05-21T03:55:16Z] INFO: iperf-sends: PASS (sent >= 5 packets)
[2026-05-21T03:55:16Z] INFO: JUnit XML written to: /tmp/test-results/tier3-iperf-sends.xml
[2026-05-21T03:55:16Z] INFO: iperf-sends test complete

sender-test-client-iperf.log

[2026-05-21T03:54:13Z] INFO: Pre-flight: checking DPDK state and ARP cache...
[2026-05-21T03:54:13Z] INFO: Local IP: 10.0.1.38, Peer IP: 10.0.1.6, Port: 9000
[2026-05-21T03:54:13Z] INFO: /proc/net/arp contents:
IP address       HW type     Flags       HW address            Mask     Device
10.0.1.38        0x1         0x2         02:50:0f:6e:66:85     *        ens5
10.0.1.16        0x1         0x2         02:9b:ee:af:f9:47     *        ens5
10.0.1.1         0x1         0x2         02:54:f4:6d:21:15     *        ens5
10.0.1.6         0x1         0x2         02:84:06:6b:4a:3f     *        ens5
10.0.1.160       0x1         0x2         02:38:f0:c3:04:09     *        ens5
[2026-05-21T03:54:13Z] INFO: DPDK runtime state:
No /var/run/dpdk/ directory
[2026-05-21T03:54:13Z] INFO: vfio-pci bindings:
0000:00:06.0
bind
module
new_id
remove_id
uevent
unbind
[2026-05-21T03:54:13Z] INFO: Test binary: /opt/dpdk-stdlib/target/release/test-client
-rwxr-xr-x. 2 root root 1903240 May 21 03:41 /opt/dpdk-stdlib/target/release/test-client
[2026-05-21T03:54:13Z] INFO: Launching test-client: /opt/dpdk-stdlib/target/release/test-client --target 10.0.1.6 --port 9000 --bind-ip 10.0.1.38 --count 10 --delay 200
[2026-05-21T03:54:15Z] INFO: Test client output: UDP Test Client
Target: 10.0.1.6:9000
Bind address: 10.0.1.38:0
Message: 'dpdk-to-kernel-test-payload'
Count: 10
EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.38:32768 (MAC: 02:50:0f:6e:66:85)
Backend: dpdk
Sending packets...
Sent 30 bytes: 'dpdk-to-kernel-test-payload #1'
Received 30 bytes from 10.0.1.6:9000: 'dpdk-to-kernel-test-payload #1'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #2'
Received 30 bytes from 10.0.1.6:9000: 'dpdk-to-kernel-test-payload #2'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #3'
Received 30 bytes from 10.0.1.6:9000: 'dpdk-to-kernel-test-payload #3'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #4'
Received 30 bytes from 10.0.1.6:9000: 'dpdk-to-kernel-test-payload #4'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #5'
Received 30 bytes from 10.0.1.6:9000: 'dpdk-to-kernel-test-payload #5'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #6'
Received 30 bytes from 10.0.1.6:9000: 'dpdk-to-kernel-test-payload #6'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #7'
Received 30 bytes from 10.0.1.6:9000: 'dpdk-to-kernel-test-payload #7'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #8'
Received 30 bytes from 10.0.1.6:9000: 'dpdk-to-kernel-test-payload #8'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #9'
Received 30 bytes from 10.0.1.6:9000: 'dpdk-to-kernel-test-payload #9'
Sent 31 bytes: 'dpdk-to-kernel-test-payload #10'
Received 31 bytes from 10.0.1.6:9000: 'dpdk-to-kernel-test-payload #10'
Test complete
[2026-05-21T03:54:15Z] INFO: our-app-sends: sent 10 packets, received 10 responses
[2026-05-21T03:54:15Z] INFO: our-app-sends: PASS (sent >= 5 packets)
[2026-05-21T03:54:15Z] INFO: JUnit XML written to: /tmp/test-results/tier3-our-app-sends.xml
[2026-05-21T03:54:15Z] INFO: our-app-sends test complete
⚠️ SSM Command Failures (receiver-ssm-failure.log)
=== Polling timeout after 30s ===
Status: InProgress
Instance: i-01d0adb4cfb74447b (receiver)
Command ID: f20cb02c-1892-4795-9374-db7d9b46eb1f

=== STDOUT ===


=== STDERR ===


=== Polling timeout after 30s ===
Status: InProgress
Instance: i-01d0adb4cfb74447b (receiver)
Command ID: aa647ca3-8282-421f-aad1-1b8411faff27

=== STDOUT ===


=== STDERR ===


=== Polling timeout after 30s ===
Status: InProgress
Instance: i-01d0adb4cfb74447b (receiver)
Command ID: 7f9c41f2-0eb7-4bb8-ab26-5ef1d6d4fdeb

=== STDOUT ===


=== STDERR ===


=== Polling timeout after 30s ===
Status: InProgress
Instance: i-01d0adb4cfb74447b (receiver)
Command ID: 24bb3b91-e3d5-4270-bd9f-0ecca98820c9

=== STDOUT ===


=== STDERR ===


⚠️ SSM Command Failures (sender-ssm-failure.log)
=== Polling timeout after 30s ===
Status: InProgress
Instance: i-0cd0526c5bfae23ec (sender)
Command ID: 6d8a4d31-e0e2-4701-a011-2b1d1bbaa1a6

=== STDOUT ===


=== STDERR ===


Network & PCI State

receiver-network-interfaces.log

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host noprefixroute 
       valid_lft forever preferred_lft forever
2: ens5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 9001 qdisc mq state UP group default qlen 1000
    link/ether 02:40:b0:1d:0f:61 brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-005234a1a4f07d50e
    altname device-number-0.0
    inet 10.0.1.35/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 2251sec preferred_lft 2251sec
    inet6 fe80::40:b0ff:fe1d:f61/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever

sender-network-interfaces.log

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host noprefixroute 
       valid_lft forever preferred_lft forever
2: ens5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 9001 qdisc mq state UP group default qlen 1000
    link/ether 02:e1:6d:b8:44:dd brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-0bf339525edc96b60
    altname device-number-0.0
    inet 10.0.1.234/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 2274sec preferred_lft 2274sec
    inet6 fe80::e1:6dff:feb8:44dd/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever

receiver-networking-diag-baseline.txt

=== NETWORKING DIAGNOSTICS ===
timestamp: 2026-05-21T03:43:07Z
hostname: ip-10-0-1-35.ec2.internal
kernel: 6.18.25-57.109.amzn2023.x86_64

=== DPDK PORT STATUS ===

Network devices using DPDK-compatible driver
============================================
0000:00:06.0 'Elastic Network Adapter (ENA) ec20' drv=vfio-pci unused=ena

Network devices using kernel driver
===================================
0000:00:05.0 'Elastic Network Adapter (ENA) ec20' if=ens5 drv=ena unused=vfio-pci *Active*

No 'Baseband' devices detected
==============================

No 'Crypto' devices detected
============================

No 'DMA' devices detected
=========================

No 'Eventdev' devices detected
==============================

No 'Mempool' devices detected
=============================

No 'Compress' devices detected
==============================

No 'Misc (rawdev)' devices detected
===================================

No 'Regex' devices detected
===========================

=== IP ADDRESSES ===
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host noprefixroute 
       valid_lft forever preferred_lft forever
2: ens5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 9001 qdisc mq state UP group default qlen 1000
    link/ether 02:40:b0:1d:0f:61 brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-005234a1a4f07d50e
    altname device-number-0.0
    inet 10.0.1.35/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 3285sec preferred_lft 3285sec
    inet6 fe80::40:b0ff:fe1d:f61/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever

=== ARP TABLE ===
10.0.1.16 dev ens5 lladdr 02:9b:ee:af:f9:47 REACHABLE 
10.0.1.1 dev ens5 lladdr 02:54:f4:6d:21:15 REACHABLE 

=== ROUTE TABLE ===
default via 10.0.1.1 dev ens5 proto dhcp src 10.0.1.35 metric 512 
10.0.0.2 via 10.0.1.1 dev ens5 proto dhcp src 10.0.1.35 metric 512 
10.0.1.0/24 dev ens5 proto kernel scope link src 10.0.1.35 metric 512 
10.0.1.1 dev ens5 proto dhcp scope link src 10.0.1.35 metric 512 

=== IMDS: ENI INFORMATION ===
ENI MACs found: 02:40:b0:1d:0f:61/ 02:84:06:6b:4a:3f/ 

--- ENI: 02:40:b0:1d:0f:61/ ---
  device-number: 0
  local-ipv4s: 10.0.1.35
  subnet-id: subnet-0e81fe2ca0079bde1
  subnet-cidr: 10.0.1.0/24

--- ENI: 02:84:06:6b:4a:3f/ ---
  device-number: 1
  local-ipv4s: 10.0.1.6
  subnet-id: subnet-0e81fe2ca0079bde1
  subnet-cidr: 10.0.1.0/24


=== GATEWAY ARP TEST ===
Gateway IP: 10.0.1.1
Gateway ARP entry:
10.0.1.1 dev ens5 lladdr 02:54:f4:6d:21:15 REACHABLE 

arping result:
ARPING 10.0.1.1 from 10.0.1.35 ens5
Unicast reply from 10.0.1.1 [02:54:F4:6D:21:15]  0.536ms
Sent 1 probes (1 broadcast(s))
Received 1 response(s)

=== HUGEPAGE STATUS ===
AnonHugePages:         0 kB
ShmemHugePages:        0 kB
FileHugePages:     18432 kB
HugePages_Total:    1024
HugePages_Free:     1024
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
Hugetlb:         2097152 kB

=== VFIO STATUS ===
total 0
drwxr-xr-x.  2 root root       80 May 21 03:42 .
drwxr-xr-x. 14 root root     3100 May 21 03:42 ..
crw-------.  1 root root 243,   0 May 21 03:42 noiommu-0
crw-rw-rw-.  1 root root  10, 196 May 21 03:37 vfio

noiommu mode:
Y

=== DPDK SHARED MEMORY ===
no /var/run/dpdk/ directory (clean state)

=== DPDK-RELATED DMESG (last 30 lines) ===
[    0.053726] printk: legacy console [ttyS0] enabled
[    0.054838] x2apic enabled
[    0.059573] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
[    0.059688] x86/fpu: Enabled xstate features 0x2ff, context size is 2568 bytes, using 'compacted' format.
[    0.069249] audit: type=2000 audit(1779334664.593:1): state=initialized audit_enabled=0 res=1
[    0.079855] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.130839] ACPI: Interpreter enabled
[    0.130839] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.145348] pci 0000:00:05.0: enabling Extended Tags
[    0.213950] SGI XFS with ACLs, security attributes, quota, no debug enabled
[    0.229362] ACPI: \_SB_.LNKD: Enabled at IRQ 11
[    0.235681] IPI shorthand broadcast: enabled
[    5.706419] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    5.748744] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    5.802845] VFIO - User Level meta-driver version: 0.3
[    6.149811] ena 0000:00:05.0: Elastic Network Adapter (ENA) v2.16.1g
[    6.161388] ena 0000:00:05.0: ENA device version: 0.10
[    6.162159] ena 0000:00:05.0: ENA controller version: 0.0.1 implementation version 1
[    6.265055] ena 0000:00:05.0: ENA Large LLQ is disabled
[    6.277403] ena 0000:00:05.0: Elastic Network Adapter (ENA) found at mem c0500000, mac addr 02:40:b0:1d:0f:61
[    6.304809] ena 0000:00:05.0 ens5: renamed from eth0
[  269.708542] pci 0000:00:06.0: enabling Extended Tags
[  269.712659] ena 0000:00:06.0: enabling device (0000 -> 0002)
[  269.721406] ena 0000:00:06.0: ENA device version: 0.10
[  269.722176] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  269.821382] ena 0000:00:06.0: ENA Large LLQ is disabled
[  269.833482] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:84:06:6b:4a:3f
[  269.840780] ena 0000:00:06.0 ens6: renamed from eth0
[  309.584480] vfio-pci 0000:00:06.0: Adding to iommu group 0
[  309.585928] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device

=== DPDK-RELATED PROCESSES ===
no DPDK processes running

=== END DIAGNOSTICS ===

sender-networking-diag-baseline.txt

=== NETWORKING DIAGNOSTICS ===
timestamp: 2026-05-21T03:42:59Z
hostname: ip-10-0-1-234.ec2.internal
kernel: 6.18.25-57.109.amzn2023.x86_64

=== DPDK PORT STATUS ===

Network devices using DPDK-compatible driver
============================================
0000:00:06.0 'Elastic Network Adapter (ENA) ec20' drv=vfio-pci unused=ena

Network devices using kernel driver
===================================
0000:00:05.0 'Elastic Network Adapter (ENA) ec20' if=ens5 drv=ena unused=vfio-pci *Active*

No 'Baseband' devices detected
==============================

No 'Crypto' devices detected
============================

No 'DMA' devices detected
=========================

No 'Eventdev' devices detected
==============================

No 'Mempool' devices detected
=============================

No 'Compress' devices detected
==============================

No 'Misc (rawdev)' devices detected
===================================

No 'Regex' devices detected
===========================

=== IP ADDRESSES ===
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host noprefixroute 
       valid_lft forever preferred_lft forever
2: ens5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 9001 qdisc mq state UP group default qlen 1000
    link/ether 02:e1:6d:b8:44:dd brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-0bf339525edc96b60
    altname device-number-0.0
    inet 10.0.1.234/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 3293sec preferred_lft 3293sec
    inet6 fe80::e1:6dff:feb8:44dd/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever

=== ARP TABLE ===
10.0.1.16 dev ens5 lladdr 02:9b:ee:af:f9:47 REACHABLE 
10.0.1.1 dev ens5 lladdr 02:54:f4:6d:21:15 REACHABLE 

=== ROUTE TABLE ===
default via 10.0.1.1 dev ens5 proto dhcp src 10.0.1.234 metric 512 
10.0.0.2 via 10.0.1.1 dev ens5 proto dhcp src 10.0.1.234 metric 512 
10.0.1.0/24 dev ens5 proto kernel scope link src 10.0.1.234 metric 512 
10.0.1.1 dev ens5 proto dhcp scope link src 10.0.1.234 metric 512 

=== IMDS: ENI INFORMATION ===
ENI MACs found: 02:50:0f:6e:66:85/ 02:e1:6d:b8:44:dd/ 

--- ENI: 02:50:0f:6e:66:85/ ---
  device-number: 1
  local-ipv4s: 10.0.1.38
  subnet-id: subnet-0e81fe2ca0079bde1
  subnet-cidr: 10.0.1.0/24

--- ENI: 02:e1:6d:b8:44:dd/ ---
  device-number: 0
  local-ipv4s: 10.0.1.234
  subnet-id: subnet-0e81fe2ca0079bde1
  subnet-cidr: 10.0.1.0/24


=== GATEWAY ARP TEST ===
Gateway IP: 10.0.1.1
Gateway ARP entry:
10.0.1.1 dev ens5 lladdr 02:54:f4:6d:21:15 REACHABLE 

arping result:
ARPING 10.0.1.1 from 10.0.1.234 ens5
Unicast reply from 10.0.1.1 [02:54:F4:6D:21:15]  0.536ms
Sent 1 probes (1 broadcast(s))
Received 1 response(s)

=== HUGEPAGE STATUS ===
AnonHugePages:         0 kB
ShmemHugePages:        0 kB
FileHugePages:     18432 kB
HugePages_Total:    1024
HugePages_Free:     1024
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
Hugetlb:         2097152 kB

=== VFIO STATUS ===
total 0
drwxr-xr-x.  2 root root       80 May 21 03:42 .
drwxr-xr-x. 14 root root     3100 May 21 03:42 ..
crw-------.  1 root root 243,   0 May 21 03:42 noiommu-0
crw-rw-rw-.  1 root root  10, 196 May 21 03:37 vfio

noiommu mode:
Y

=== DPDK SHARED MEMORY ===
no /var/run/dpdk/ directory (clean state)

=== DPDK-RELATED DMESG (last 30 lines) ===
[    0.055317] printk: legacy console [ttyS0] enabled
[    0.056435] x2apic enabled
[    0.061161] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
[    0.061276] x86/fpu: Enabled xstate features 0x2ff, context size is 2568 bytes, using 'compacted' format.
[    0.070872] audit: type=2000 audit(1779334664.605:1): state=initialized audit_enabled=0 res=1
[    0.081802] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.132983] ACPI: Interpreter enabled
[    0.132983] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.150380] pci 0000:00:05.0: enabling Extended Tags
[    0.223817] SGI XFS with ACLs, security attributes, quota, no debug enabled
[    0.229253] ACPI: \_SB_.LNKD: Enabled at IRQ 11
[    0.235462] IPI shorthand broadcast: enabled
[    5.717416] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    5.765956] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    5.811629] VFIO - User Level meta-driver version: 0.3
[    6.192336] ena 0000:00:05.0: Elastic Network Adapter (ENA) v2.16.1g
[    6.203803] ena 0000:00:05.0: ENA device version: 0.10
[    6.204557] ena 0000:00:05.0: ENA controller version: 0.0.1 implementation version 1
[    6.315079] ena 0000:00:05.0: ENA Large LLQ is disabled
[    6.329216] ena 0000:00:05.0: Elastic Network Adapter (ENA) found at mem c0500000, mac addr 02:e1:6d:b8:44:dd
[    6.419352] ena 0000:00:05.0 ens5: renamed from eth0
[  270.163536] pci 0000:00:06.0: enabling Extended Tags
[  270.169026] ena 0000:00:06.0: enabling device (0000 -> 0002)
[  270.182052] ena 0000:00:06.0: ENA device version: 0.10
[  270.182843] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  270.283256] ena 0000:00:06.0: ENA Large LLQ is disabled
[  270.295515] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:50:0f:6e:66:85
[  270.303790] ena 0000:00:06.0 ens6: renamed from eth0
[  302.687085] vfio-pci 0000:00:06.0: Adding to iommu group 0
[  302.688582] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device

=== DPDK-RELATED PROCESSES ===
no DPDK processes running

=== END DIAGNOSTICS ===
⚠️ Crash Diagnostics

receiver-dmesg-crashes.log

[    0.068601] pid_max: default: 32768 minimum: 301
[    0.149346] iommu: Default domain type: Translated
[    0.149372] NetLabel:  unlabeled traffic allowed by default
[    0.191302] PCI: CLS 0 bytes, default 64
[    0.257124] nvme nvme0: 2/0/0 default/read/poll queues
[    0.400487] systemd[1]: systemd 252.23-11.amzn2023 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP -GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 -BZIP2 -LZ4 +XZ +ZLIB -ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    0.400612] systemd[1]: No hostname configured, using default hostname.
[    0.466300] systemd[1]: Queued start job for default target initrd.target.
[    3.889647] systemd[1]: systemd 252.23-11.amzn2023 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP -GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 -BZIP2 -LZ4 +XZ +ZLIB -ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[  348.013602] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:4428)
[  606.349976] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:4913)
[ 1216.411352] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:6074)

sender-dmesg-crashes.log

[    0.070210] pid_max: default: 32768 minimum: 301
[    0.154326] iommu: Default domain type: Translated
[    0.161002] NetLabel:  unlabeled traffic allowed by default
[    0.195448] PCI: CLS 0 bytes, default 64
[    0.243557] nvme nvme0: 2/0/0 default/read/poll queues
[    0.431792] systemd[1]: systemd 252.23-11.amzn2023 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP -GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 -BZIP2 -LZ4 +XZ +ZLIB -ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    0.431887] systemd[1]: No hostname configured, using default hostname.
[    0.486658] systemd[1]: Queued start job for default target initrd.target.
[    3.881303] systemd[1]: systemd 252.23-11.amzn2023 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP -GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 -BZIP2 -LZ4 +XZ +ZLIB -ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[ 1034.361374] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:5770)
Kernel Console (dmesg)

receiver-console-output.log (PCI/driver events only)

[  348.011992] vfio-pci 0000:00:06.0: reset done
[  348.013602] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:4428)
[  348.015077] vfio-pci 0000:00:06.0: resetting
[  348.231883] vfio-pci 0000:00:06.0: reset done
[  429.106224] vfio-pci 0000:00:06.0: Removing from iommu group 0
[  430.119122] ena 0000:00:06.0: ENA device version: 0.10
[  430.119883] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  430.219106] ena 0000:00:06.0: ENA Large LLQ is disabled
[  430.231227] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:84:06:6b:4a:3f
[  430.241966] ena 0000:00:06.0 ens6: renamed from eth0 (while UP)
[  449.982534] vfio-pci 0000:00:06.0: Adding to iommu group 0
[  449.983781] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[  606.134142] vfio-pci 0000:00:06.0: resetting
[  606.348365] vfio-pci 0000:00:06.0: reset done
[  606.349976] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:4913)
[  606.351509] vfio-pci 0000:00:06.0: resetting
[  606.568209] vfio-pci 0000:00:06.0: reset done
[  682.203000] vfio-pci 0000:00:06.0: Removing from iommu group 0
[  683.215539] ena 0000:00:06.0: ENA device version: 0.10
[  683.216309] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  683.315519] ena 0000:00:06.0: ENA Large LLQ is disabled
[  683.327587] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:84:06:6b:4a:3f
[  683.339431] ena 0000:00:06.0 ens6: renamed from eth0 (while UP)
[ 1135.272707] vfio-pci 0000:00:06.0: Adding to iommu group 0
[ 1135.274167] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[ 1216.189536] vfio-pci 0000:00:06.0: resetting
[ 1216.409749] vfio-pci 0000:00:06.0: reset done
[ 1216.411352] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:6074)
[ 1216.412772] vfio-pci 0000:00:06.0: resetting
[ 1216.629582] vfio-pci 0000:00:06.0: reset done

sender-console-output.log (PCI/driver events only)

[ 1034.362908] vfio-pci 0000:00:06.0: resetting
[ 1034.579587] vfio-pci 0000:00:06.0: reset done
[ 1097.406373] vfio-pci 0000:00:06.0: Removing from iommu group 0
[ 1098.419661] ena 0000:00:06.0: ENA device version: 0.10
[ 1098.420436] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[ 1098.517522] ena 0000:00:06.0: ENA Large LLQ is disabled
[ 1098.529583] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:50:0f:6e:66:85
[ 1098.538463] ena 0000:00:06.0 ens6: renamed from eth0
[ 1128.411055] vfio-pci 0000:00:06.0: Adding to iommu group 0
[ 1128.412539] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[ 1232.216752] vfio-pci 0000:00:06.0: resetting
[ 1232.438294] vfio-pci 0000:00:06.0: reset done
[ 1232.439912] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:6210)
[ 1232.441597] vfio-pci 0000:00:06.0: resetting
[ 1232.658144] vfio-pci 0000:00:06.0: reset done
[ 1232.946721] vfio-pci 0000:00:06.0: resetting
[ 1233.168257] vfio-pci 0000:00:06.0: reset done
[ 1233.169860] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:6230)
[ 1233.171572] vfio-pci 0000:00:06.0: resetting
[ 1233.388125] vfio-pci 0000:00:06.0: reset done
[ 1234.668986] vfio-pci 0000:00:06.0: resetting
[ 1234.898178] vfio-pci 0000:00:06.0: reset done
[ 1234.899797] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:6253)
[ 1234.901481] vfio-pci 0000:00:06.0: resetting
[ 1235.118108] vfio-pci 0000:00:06.0: reset done
[ 1236.399808] vfio-pci 0000:00:06.0: resetting
[ 1236.628169] vfio-pci 0000:00:06.0: reset done
[ 1236.629784] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:6276)
[ 1236.631481] vfio-pci 0000:00:06.0: resetting
[ 1236.848140] vfio-pci 0000:00:06.0: reset done

@github-actions
Copy link
Copy Markdown

[Perf] Stage: Deploy

Deploying PerfTestStack...
Configs: plain-rust,rust-dpdk,tokio-dpdk,native-dpdk
Packet sizes: 64,512,1400,8500

@github-actions
Copy link
Copy Markdown

[Perf] Stage: Instances Ready

  • TRex: i-0e78f4a2ee87b4bf6 (10.0.1.45)
  • DUT: i-03ea8165250a1a1c2 (10.0.1.157)
  • Instance type: unknown

@github-actions
Copy link
Copy Markdown

[Perf] Stage: TRex Config

Starting TRex configuration (MAC discovery + NIC binding)...

@github-actions
Copy link
Copy Markdown

[Perf] Stage: TRex Config OK

  • TX: 0000:00:06.0 MAC: 02:76:b6:51:ff:67
  • RX: 0000:00:07.0 MAC: 02:21:54:82:99:f5
  • Gateway MAC: 02:4a:34:d7:d0:bd
    Starting TRex server...

@github-actions
Copy link
Copy Markdown

[Perf] Stage: TRex Started

TRex server running. Beginning benchmarks...

@github-actions
Copy link
Copy Markdown

[Perf] DUT Ready

DUT instance i-03ea8165250a1a1c2 SSM working, build complete.

@github-actions
Copy link
Copy Markdown

[Perf] Stage: Benchmark (1/4)

Running plain-rust benchmark...
Packet sizes: 64,512,1400,8500 | Duration: 30s/step | Target PPS: 70000,140000,350000,700000

@github-actions
Copy link
Copy Markdown

[Perf] Benchmark Diag: plain-rust preflight

TRex API OK: 2 ports
  Port 0: 02:76:b6:51:ff:67
  Port 1: 02:21:54:82:99:f5
PREFLIGHT_OK

@github-actions
Copy link
Copy Markdown

[Perf] Benchmark Diag: plain-rust result

SSM exit: 0

Output (last 30 lines)
Duration per step: 30s
Source MAC: 02:76:b6:51:ff:67

--- Packet size: 64B ---
  Target: 70,000 pps ... TX: 70,000 pps, RX: 69,000 pps, Drop: 1.4285%, Lat avg: 144.0 us
  Target: 140,000 pps ... TX: 140,000 pps, RX: 139,000 pps, Drop: 0.7142%, Lat avg: 158.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 348,912 pps, Drop: 0.3108%, Lat avg: 0.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 400,193 pps, Drop: 42.8295%, Lat avg: 599.0 us

--- Packet size: 512B ---
  Target: 70,000 pps ... TX: 70,000 pps, RX: 69,000 pps, Drop: 1.4285%, Lat avg: 139.0 us
  Target: 140,000 pps ... TX: 140,000 pps, RX: 139,000 pps, Drop: 0.7143%, Lat avg: 180.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 348,883 pps, Drop: 0.3191%, Lat avg: 0.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 582,543 pps, Drop: 16.7796%, Lat avg: 0.0 us

--- Packet size: 1400B ---
  Target: 70,000 pps ... TX: 70,000 pps, RX: 69,000 pps, Drop: 1.4285%, Lat avg: 138.0 us
  Target: 140,000 pps ... TX: 140,000 pps, RX: 139,000 pps, Drop: 0.7143%, Lat avg: 0.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 348,957 pps, Drop: 0.2981%, Lat avg: 146.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 583,762 pps, Drop: 16.6054%, Lat avg: 0.0 us

--- Packet size: 8500B ---
  (jumbo: capping at 418,133 pps for 30.0 Gbps limit)
  Target: 70,000 pps ... TX: 70,000 pps, RX: 33,908 pps, Drop: 51.5601%, Lat avg: 0.0 us
  Target: 140,000 pps ... TX: 125,241 pps, RX: 124,329 pps, Drop: 0.7279%, Lat avg: 0.0 us
  Target: 350,000 pps ... TX: 125,243 pps, RX: 124,013 pps, Drop: 0.9824%, Lat avg: 0.0 us
  Target: 700,000 pps ... SKIPPED (exceeds 30.0 Gbps cap)

Results written to /tmp/perf-results/plain-rust.json
EXIT_CODE=0

@github-actions
Copy link
Copy Markdown

[Perf] Stage: Benchmark (2/4)

Running rust-dpdk benchmark...
Packet sizes: 64,512,1400,8500 | Duration: 30s/step | Target PPS: 70000,140000,350000,700000

@github-actions
Copy link
Copy Markdown

[Perf] Benchmark Diag: rust-dpdk preflight

TRex API OK: 2 ports
  Port 0: 02:76:b6:51:ff:67
  Port 1: 02:21:54:82:99:f5
PREFLIGHT_OK

@github-actions
Copy link
Copy Markdown

[Perf] Benchmark Diag: rust-dpdk result

SSM exit: 0

Output (last 30 lines)
Duration per step: 30s
Source MAC: 02:76:b6:51:ff:67

--- Packet size: 64B ---
  Target: 70,000 pps ... TX: 70,000 pps, RX: 69,000 pps, Drop: 1.4286%, Lat avg: 0.0 us
  Target: 140,000 pps ... TX: 140,000 pps, RX: 139,000 pps, Drop: 0.7143%, Lat avg: 0.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 348,996 pps, Drop: 0.2869%, Lat avg: 0.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 699,000 pps, Drop: 0.1429%, Lat avg: 0.0 us

--- Packet size: 512B ---
  Target: 70,000 pps ... TX: 70,000 pps, RX: 69,000 pps, Drop: 1.4286%, Lat avg: 0.0 us
  Target: 140,000 pps ... TX: 140,000 pps, RX: 139,000 pps, Drop: 0.7143%, Lat avg: 222.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 349,000 pps, Drop: 0.2857%, Lat avg: 273.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 699,000 pps, Drop: 0.1429%, Lat avg: 0.0 us

--- Packet size: 1400B ---
  Target: 70,000 pps ... TX: 70,000 pps, RX: 69,000 pps, Drop: 1.4286%, Lat avg: 0.0 us
  Target: 140,000 pps ... TX: 140,000 pps, RX: 139,000 pps, Drop: 0.7143%, Lat avg: 0.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 349,000 pps, Drop: 0.2857%, Lat avg: 214.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 569,926 pps, Drop: 18.582%, Lat avg: 0.0 us

--- Packet size: 8500B ---
  (jumbo: capping at 418,133 pps for 30.0 Gbps limit)
  Target: 70,000 pps ... TX: 70,000 pps, RX: 69,000 pps, Drop: 1.4286%, Lat avg: 0.0 us
  Target: 140,000 pps ... TX: 125,273 pps, RX: 124,350 pps, Drop: 0.7366%, Lat avg: 0.0 us
  Target: 350,000 pps ... TX: 125,204 pps, RX: 123,085 pps, Drop: 1.6925%, Lat avg: 0.0 us
  Target: 700,000 pps ... SKIPPED (exceeds 30.0 Gbps cap)

Results written to /tmp/perf-results/rust-dpdk.json
EXIT_CODE=0

@github-actions
Copy link
Copy Markdown

[Perf] Stage: Benchmark (3/4)

Running tokio-dpdk benchmark...
Packet sizes: 64,512,1400,8500 | Duration: 30s/step | Target PPS: 70000,140000,350000,700000

@github-actions
Copy link
Copy Markdown

[Perf] Benchmark Diag: tokio-dpdk preflight

TRex API OK: 2 ports
  Port 0: 02:76:b6:51:ff:67
  Port 1: 02:21:54:82:99:f5
PREFLIGHT_OK

@github-actions
Copy link
Copy Markdown

[Perf] Benchmark Diag: tokio-dpdk result

SSM exit: 0

Output (last 30 lines)
Duration per step: 30s
Source MAC: 02:76:b6:51:ff:67

--- Packet size: 64B ---
  Target: 70,000 pps ... TX: 70,000 pps, RX: 69,000 pps, Drop: 1.4285%, Lat avg: 0.0 us
  Target: 140,000 pps ... TX: 140,000 pps, RX: 139,000 pps, Drop: 0.7143%, Lat avg: 0.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 307,647 pps, Drop: 12.1007%, Lat avg: 0.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 307,850 pps, Drop: 56.0214%, Lat avg: 0.0 us

--- Packet size: 512B ---
  Target: 70,000 pps ... TX: 70,000 pps, RX: 69,000 pps, Drop: 1.4286%, Lat avg: 0.0 us
  Target: 140,000 pps ... TX: 140,000 pps, RX: 139,000 pps, Drop: 0.7143%, Lat avg: 0.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 217,519 pps, Drop: 37.8519%, Lat avg: 0.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 218,676 pps, Drop: 68.7606%, Lat avg: 0.0 us

--- Packet size: 1400B ---
  Target: 70,000 pps ... TX: 70,000 pps, RX: 69,000 pps, Drop: 1.4286%, Lat avg: 0.0 us
  Target: 140,000 pps ... TX: 140,000 pps, RX: 138,867 pps, Drop: 0.8096%, Lat avg: 0.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 138,763 pps, Drop: 60.3535%, Lat avg: 0.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 138,567 pps, Drop: 80.2047%, Lat avg: 0.0 us

--- Packet size: 8500B ---
  (jumbo: capping at 418,133 pps for 30.0 Gbps limit)
  Target: 70,000 pps ... TX: 70,000 pps, RX: 53,097 pps, Drop: 24.1473%, Lat avg: 0.0 us
  Target: 140,000 pps ... TX: 125,205 pps, RX: 56,448 pps, Drop: 54.9151%, Lat avg: 0.0 us
  Target: 350,000 pps ... TX: 125,301 pps, RX: 56,560 pps, Drop: 54.8606%, Lat avg: 0.0 us
  Target: 700,000 pps ... SKIPPED (exceeds 30.0 Gbps cap)

Results written to /tmp/perf-results/tokio-dpdk.json
EXIT_CODE=0

@github-actions
Copy link
Copy Markdown

[Perf] Stage: Benchmark (4/4)

Running native-dpdk benchmark...
Packet sizes: 64,512,1400,8500 | Duration: 30s/step | Target PPS: 70000,140000,350000,700000

@github-actions
Copy link
Copy Markdown

[Perf] Benchmark Diag: native-dpdk preflight

TRex API OK: 2 ports
  Port 0: 02:76:b6:51:ff:67
  Port 1: 02:21:54:82:99:f5
PREFLIGHT_OK

@github-actions
Copy link
Copy Markdown

[Perf] Benchmark Diag: native-dpdk result

SSM exit: 0

Output (last 30 lines)
Duration per step: 30s
Source MAC: 02:76:b6:51:ff:67

--- Packet size: 64B ---
  Target: 70,000 pps ... TX: 70,000 pps, RX: 70,000 pps, Drop: 0.0%, Lat avg: 57.0 us
  Target: 140,000 pps ... TX: 140,000 pps, RX: 140,000 pps, Drop: 0.0%, Lat avg: 66.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 350,000 pps, Drop: 0.0%, Lat avg: 64.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 698,643 pps, Drop: 0.1938%, Lat avg: 247.0 us

--- Packet size: 512B ---
  Target: 70,000 pps ... TX: 70,000 pps, RX: 70,000 pps, Drop: 0.0%, Lat avg: 54.0 us
  Target: 140,000 pps ... TX: 140,000 pps, RX: 140,000 pps, Drop: 0.0%, Lat avg: 78.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 350,000 pps, Drop: 0.0%, Lat avg: 84.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 698,348 pps, Drop: 0.2361%, Lat avg: 670.0 us

--- Packet size: 1400B ---
  Target: 70,000 pps ... TX: 70,000 pps, RX: 70,000 pps, Drop: 0.0%, Lat avg: 56.0 us
  Target: 140,000 pps ... TX: 140,000 pps, RX: 140,000 pps, Drop: 0.0%, Lat avg: 74.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 350,000 pps, Drop: 0.0%, Lat avg: 85.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 674,637 pps, Drop: 3.6232%, Lat avg: 1073.0 us

--- Packet size: 8500B ---
  (jumbo: capping at 418,133 pps for 30.0 Gbps limit)
  Target: 70,000 pps ... TX: 70,000 pps, RX: 70,000 pps, Drop: 0.0%, Lat avg: 62.0 us
  Target: 140,000 pps ... TX: 125,301 pps, RX: 125,301 pps, Drop: 0.0003%, Lat avg: 8911.0 us
  Target: 350,000 pps ... TX: 125,202 pps, RX: 120,300 pps, Drop: 3.9148%, Lat avg: 8918.0 us
  Target: 700,000 pps ... SKIPPED (exceeds 30.0 Gbps cap)

Results written to /tmp/perf-results/native-dpdk.json
EXIT_CODE=0

@github-actions
Copy link
Copy Markdown

[Perf] Diag: testpmd log

testpmd output (last 30 lines)
=== testpmd stats (last 30 lines) ===
  ############################################################################
Telling cores to stop...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 122258284      RX-dropped: 0             RX-total: 122258284
  RX-error: 426318
  RX-nombufs: 0             
  TX-packets: 122163953      TX-dropped: 94331         TX-total: 122258284
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 122258284      RX-dropped: 0             RX-total: 122258284
  TX-packets: 122163953      TX-dropped: 94331         TX-total: 122258284
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
ena_rx_queue_release(): Rx queue 0:0 released
ena_tx_queue_release(): Tx queue 0:0 released
Closing ports...
Port 0 is closed
Done

Bye...
=== ENA port stats ===
N/A (vfio-pci)

@github-actions
Copy link
Copy Markdown

[Perf] Stage: Results

[04:58:23] INFO Generating markdown summary...

Performance Test Results — unknown

Commit: 28febfd6
Timestamp: 2026-05-21T04:58:23.324449+00:00

64B packets

Config Target PPS TX pps RX pps Drop % NIC imissed NIC ierrors NIC nombuf App Drops Lat Avg (us) Lat Max (us) TX Mbps RX Mbps
native-dpdk 70,000 70,000 70,000 0.00% 57.0 383.0 35.8 35.8
native-dpdk 140,000 140,000 140,000 0.00% 66.0 280.0 71.7 71.7
native-dpdk 350,000 350,000 350,000 0.00% 64.0 851.0 179.2 179.2
native-dpdk 700,000 700,000 698,643 0.19% 247.0 3000.0 358.4 357.7
rust-dpdk 70,000 70,000 69,000 1.43% 0 31,667 0 0 0.0 0.0 35.8 35.3
rust-dpdk 140,000 140,000 139,000 0.71% 0 41,916 0 0 0.0 0.0 71.7 71.2
rust-dpdk 350,000 350,000 348,996 0.29% 0 33,582 0 0 0.0 0.0 179.2 178.7
rust-dpdk 700,000 700,000 699,000 0.14% 0 41,922 0 0 0.0 0.0 358.4 357.9
tokio-dpdk 70,000 70,000 69,000 1.43% 0 31,733 0 0 0.0 0.0 35.8 38.6
tokio-dpdk 140,000 140,000 139,000 0.71% 0 39,036 0 0 0.0 0.0 71.7 77.8
tokio-dpdk 350,000 350,000 307,647 12.10% 0 20,372 0 0 0.0 0.0 179.2 172.3
tokio-dpdk 700,000 700,000 307,850 56.02% 0 23,725 0 0 0.0 0.0 358.4 172.4
plain-rust 70,000 70,000 69,000 1.43% 144.0 0.0 35.8 35.3
plain-rust 140,000 140,000 139,000 0.71% 158.0 0.0 71.7 71.2
plain-rust 350,000 350,000 348,912 0.31% 0.0 0.0 179.2 178.6
plain-rust 700,000 700,000 400,193 42.83% 599.0 0.0 358.4 204.9

512B packets

Config Target PPS TX pps RX pps Drop % NIC imissed NIC ierrors NIC nombuf App Drops Lat Avg (us) Lat Max (us) TX Mbps RX Mbps
native-dpdk 70,000 70,000 70,000 0.00% 54.0 282.0 286.7 286.7
native-dpdk 140,000 140,000 140,000 0.00% 78.0 324.0 573.4 573.4
native-dpdk 350,000 350,000 350,000 0.00% 84.0 369.0 1433.6 1433.6
native-dpdk 700,000 700,000 698,348 0.24% 670.0 2548.0 2867.2 2860.4
rust-dpdk 70,000 70,000 69,000 1.43% 0 35,504 0 0 0.0 0.0 286.7 282.6
rust-dpdk 140,000 140,000 139,000 0.71% 0 31,911 0 0 222.0 0.0 573.4 569.3
rust-dpdk 350,000 350,000 349,000 0.29% 0 41,918 0 0 273.0 0.0 1433.6 1429.5
rust-dpdk 700,000 700,000 699,000 0.14% 0 33,384 0 0 0.0 0.0 2867.2 2863.1
tokio-dpdk 70,000 70,000 69,000 1.43% 0 35,520 0 0 0.0 0.0 286.7 285.9
tokio-dpdk 140,000 140,000 139,000 0.71% 0 30,931 0 0 0.0 0.0 573.4 576.0
tokio-dpdk 350,000 350,000 217,519 37.85% 0 16,958 0 0 0.0 0.0 1433.6 901.4
tokio-dpdk 700,000 700,000 218,676 68.76% 0 12,276 0 0 0.0 0.0 2867.2 906.2
plain-rust 70,000 70,000 69,000 1.43% 139.0 0.0 286.7 282.6
plain-rust 140,000 140,000 139,000 0.71% 180.0 0.0 573.4 569.3
plain-rust 350,000 350,000 348,883 0.32% 0.0 0.0 1433.6 1429.0
plain-rust 700,000 700,000 582,543 16.78% 0.0 0.0 2867.2 2386.1

1400B packets

Config Target PPS TX pps RX pps Drop % NIC imissed NIC ierrors NIC nombuf App Drops Lat Avg (us) Lat Max (us) TX Mbps RX Mbps
native-dpdk 70,000 70,000 70,000 0.00% 56.0 303.0 784.0 784.0
native-dpdk 140,000 140,000 140,000 0.00% 74.0 324.0 1568.0 1568.0
native-dpdk 350,000 350,000 350,000 0.00% 85.0 588.0 3920.0 3920.0
native-dpdk 700,000 700,000 674,637 3.62% 1073.0 3065.0 7840.0 7555.9
rust-dpdk 70,000 70,000 69,000 1.43% 0 41,928 0 0 0.0 0.0 784.0 772.8
rust-dpdk 140,000 140,000 139,000 0.71% 0 35,320 0 0 0.0 0.0 1568.0 1556.8
rust-dpdk 350,000 350,000 349,000 0.29% 0 31,733 0 0 214.0 0.0 3920.0 3908.8
rust-dpdk 700,000 700,000 569,926 18.58% 0 36,895 0 0 0.0 0.0 7840.0 6383.2
tokio-dpdk 70,000 70,000 69,000 1.43% 0 40,082 0 0 0.0 0.0 784.0 776.1
tokio-dpdk 140,000 140,000 138,867 0.81% 0 30,821 0 0 0.0 0.0 1568.0 1562.0
tokio-dpdk 350,000 350,000 138,763 60.35% 0 6,898 0 0 0.0 0.0 3920.0 1560.8
tokio-dpdk 700,000 700,000 138,567 80.20% 0 7,057 0 0 0.0 0.0 7840.0 1558.6
plain-rust 70,000 70,000 69,000 1.43% 138.0 0.0 784.0 772.8
plain-rust 140,000 140,000 139,000 0.71% 0.0 0.0 1568.0 1556.8
plain-rust 350,000 350,000 348,957 0.30% 146.0 0.0 3920.0 3908.3
plain-rust 700,000 700,000 583,762 16.61% 0.0 0.0 7840.0 6538.1

8500B packets

Config Target PPS TX pps RX pps Drop % NIC imissed NIC ierrors NIC nombuf App Drops Lat Avg (us) Lat Max (us) TX Mbps RX Mbps
native-dpdk 70,000 70,000 70,000 0.00% 62.0 238.0 4760.0 4760.0
native-dpdk 140,000 125,301 125,301 0.00% 8911.0 9554.0 8520.5 8520.5
native-dpdk 350,000 125,202 120,300 3.91% 8918.0 10029.0 8513.7 8180.4
rust-dpdk 70,000 70,000 69,000 1.43% 0 32,675 0 0 0.0 0.0 4760.0 4692.0
rust-dpdk 140,000 125,273 124,350 0.74% 0 32,570 0 0 0.0 0.0 8518.5 8455.8
rust-dpdk 350,000 125,204 123,085 1.69% 0 10,666 0 0 0.0 0.0 8513.9 8369.8
tokio-dpdk 70,000 70,000 53,097 24.15% 0 3,722 0 0 0.0 0.0 4760.0 3613.1
tokio-dpdk 140,000 125,205 56,448 54.92% 0 16,096 0 0 0.0 0.0 8513.9 3841.2
tokio-dpdk 350,000 125,301 56,560 54.86% 0 4,854 0 0 0.0 0.0 8520.5 3848.8
plain-rust 70,000 70,000 33,908 51.56% 0.0 0.0 4760.0 2305.7
plain-rust 140,000 125,241 124,329 0.73% 0.0 0.0 8516.4 8454.4
plain-rust 350,000 125,243 124,013 0.98% 0.0 0.0 8516.5 8432.9

NIC Drops Instrumentation Self-Check

Compares (NIC-FINAL − NIC-BASELINE) one-shot snapshots against the sum of per-tick [PERF] deltas over the reporter's lifetime. These MUST match exactly — a mismatch means per-tick delta bookkeeping is losing data.

Config Status imissed (expected / actual / Δ) ierrors (expected / actual / Δ) rx_nombuf (expected / actual / Δ)
native-dpdk no instrumentation
rust-dpdk OK 0 / 0 / 0 422,439 / 422,439 / 0 0 / 0 / 0
tokio-dpdk OK 0 / 0 / 0 263,721 / 263,721 / 0 0 / 0 / 0
plain-rust no instrumentation

expected = FINAL − BASELINE (raw NIC counter delta across reporter lifetime). actual = sum of per-tick [PERF] delta fields. Any Δ ≠ 0 is a bug in the tick loop's bookkeeping.

plain-rust Kernel NIC Drops (ethtool -S delta)

ethtool snapshots not available — baseline or final file missing in $LOGS_DIR/dut-plain-rust-ethtool-*.txt.

Full results artifact

…dmap

Performance test results from GH Actions run 26204734648 show no
regression from the IPv6 outer encap feature:
- rust-dpdk 64B/700K: 699,000 RX (0.1% drop) — identical to Run #18
- rust-dpdk 512B/700K: 699,000 RX (0.1% drop) — identical to Run #18
- NIC instrumentation self-check: OK (zero drift)

README roadmap updated to move 'Encap: IPv6 outer' from Planned to Done.
@gspivey gspivey merged commit 1e27d21 into development May 21, 2026
5 checks passed
@github-actions
Copy link
Copy Markdown

Synthetic Performance Results (run)

Commit: 78bdd03d

✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)

Synthetic UDP Performance Results

Measures framework overhead: sync dpdk_udp::UdpSocket vs async (std::sync::Mutex + try_recv_from).

Test Payload Sync PPS Async PPS Ratio (sync/async) Async ns/op
TX send_to 64B 11.0M 10.1M 1.1x 98
RX recv_from 64B 3.3M 3.7M 0.9x 271
TX send_to 1400B 1.7M 1.7M 1.0x 604
RX recv_from 1400B 978.4K 1.0M 1.0x 994

Avg sync/async ratio: 1.0x, worst: 1.1x

Good: Async wrapper is within 1.1x of sync — minimal framework overhead.

@github-actions
Copy link
Copy Markdown

Synthetic Performance Results — Graviton (run)

Commit: 78bdd03d

✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)

Synthetic UDP Performance Results

Measures framework overhead: sync dpdk_udp::UdpSocket vs async (std::sync::Mutex + try_recv_from).

Test Payload Sync PPS Async PPS Ratio (sync/async) Async ns/op
TX send_to 64B 12.2M 11.6M 1.0x 85
RX recv_from 64B 3.7M 4.9M 0.8x 205
TX send_to 1400B 1.9M 1.9M 1.0x 525
RX recv_from 1400B 1.2M 1.2M 0.9x 804

Avg sync/async ratio: 0.9x, worst: 1.0x

Good: Async wrapper is within 1.0x of sync — minimal framework overhead.

@github-actions
Copy link
Copy Markdown

[CI] Stage: Deploy

Infrastructure ready.

  • Sender: i-04de1cb9f48c68944 (DPDK ENI: 10.0.1.150)
  • Receiver: i-04868f917932e73dd (DPDK ENI: 10.0.1.43)
  • Both instances SSM-ready.

@github-actions
Copy link
Copy Markdown

[CI] Stage: Deploy

Infrastructure ready.

  • Sender: i-02c77cffde99821d8 (DPDK ENI: 10.0.1.56)
  • Receiver: i-0faddf3b837c91065 (DPDK ENI: 10.0.1.77)
  • Both instances SSM-ready.

@github-actions
Copy link
Copy Markdown

[CI] Stage: Summary

All tests PASSED.

ARP seeding: kernel /proc/net/arp (automatic)

  • tier1-dpdk-echo: 6 tests, 0 failures
  • tier2-kernel-interop: 4 tests, 0 failures
  • tier3-iperf-interop: 1 tests, 0 failures
  • tier3-iperf-interop: 1 tests, 0 failures

1 similar comment
@github-actions
Copy link
Copy Markdown

[CI] Stage: Summary

All tests PASSED.

ARP seeding: kernel /proc/net/arp (automatic)

  • tier1-dpdk-echo: 6 tests, 0 failures
  • tier2-kernel-interop: 4 tests, 0 failures
  • tier3-iperf-interop: 1 tests, 0 failures
  • tier3-iperf-interop: 1 tests, 0 failures

@github-actions
Copy link
Copy Markdown

✅ Integration Tests Passed (Run 26206433609)

Branch: 60/merge | Commit: 78bdd03d

Test Results

  • tier1-dpdk-echo.xml: 6 tests, 0 failures, skipped
  • tier2-kernel-interop.xml: 4 tests, 0 failures, skipped
  • tier3-iperf-sends.xml: 1 tests, 0 failures, skipped
  • tier3-our-app-sends.xml: 1 tests, 0 failures, skipped

Application Logs (last 20 lines)

receiver-echo-server.log

EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.43:9000 (MAC: 02:1b:db:ab:17:a7)
echo listening on 10.0.1.43:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-echo-server.log

EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.150:9000 (MAC: 02:1d:ea:04:b8:7b)
echo listening on 10.0.1.150:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-test-client.log

EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
TELEMETRY: No legacy callbacks, legacy socket not created
DPDK bind failed (Port init failed: Invalid port ID: 0), falling back to tokio
Backend: tokio
Sending packets...
Sent 12 bytes: 'arp-probe #1'
Received 12 bytes from 10.0.1.43:9000: 'arp-probe #1'
Test complete
[2026-05-21T05:11:32Z] INFO: ARP resolution succeeded (got response from peer)
[2026-05-21T05:11:32Z] INFO: Test: udp_send_receive
[2026-05-21T05:11:33Z] INFO: UDP send/receive succeeded
[2026-05-21T05:11:33Z] INFO: Test: echo_roundtrip
[2026-05-21T05:11:34Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-05-21T05:11:34Z] INFO: Test: payload_integrity
[2026-05-21T05:11:34Z] INFO: Response received, checking payload match...
[2026-05-21T05:11:34Z] INFO: Payload integrity verified (found in response)
[2026-05-21T05:11:34Z] INFO: JUnit XML written to: /tmp/test-results/tier2-kernel-interop.xml
[2026-05-21T05:11:34Z] INFO: Tier 2 sender tests complete. Results: /tmp/test-results/tier2-kernel-interop.xml

receiver-test-client-iperf.log

[2026-05-21T05:18:11Z] INFO: iperf-sends: sent 10 packets, received 10 responses
[2026-05-21T05:18:11Z] INFO: iperf-sends: PASS (sent >= 5 packets)
[2026-05-21T05:18:11Z] INFO: JUnit XML written to: /tmp/test-results/tier3-iperf-sends.xml
[2026-05-21T05:18:11Z] INFO: iperf-sends test complete

sender-test-client-iperf.log

Received 30 bytes from 10.0.1.43:9000: 'dpdk-to-kernel-test-payload #3'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #4'
Received 30 bytes from 10.0.1.43:9000: 'dpdk-to-kernel-test-payload #4'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #5'
Received 30 bytes from 10.0.1.43:9000: 'dpdk-to-kernel-test-payload #5'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #6'
Received 30 bytes from 10.0.1.43:9000: 'dpdk-to-kernel-test-payload #6'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #7'
Received 30 bytes from 10.0.1.43:9000: 'dpdk-to-kernel-test-payload #7'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #8'
Received 30 bytes from 10.0.1.43:9000: 'dpdk-to-kernel-test-payload #8'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #9'
Received 30 bytes from 10.0.1.43:9000: 'dpdk-to-kernel-test-payload #9'
Sent 31 bytes: 'dpdk-to-kernel-test-payload #10'
Received 31 bytes from 10.0.1.43:9000: 'dpdk-to-kernel-test-payload #10'
Test complete
[2026-05-21T05:17:10Z] INFO: our-app-sends: sent 10 packets, received 10 responses
[2026-05-21T05:17:10Z] INFO: our-app-sends: PASS (sent >= 5 packets)
[2026-05-21T05:17:10Z] INFO: JUnit XML written to: /tmp/test-results/tier3-our-app-sends.xml
[2026-05-21T05:17:10Z] INFO: our-app-sends test complete
Full Application Logs (last 200 lines each)

receiver-echo-server.log

EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.43:9000 (MAC: 02:1b:db:ab:17:a7)
echo listening on 10.0.1.43:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-echo-server.log

EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.150:9000 (MAC: 02:1d:ea:04:b8:7b)
echo listening on 10.0.1.150:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-test-client.log

[2026-05-21T05:08:36Z] INFO: Test: arp_resolution
UDP Test Client
Target: 10.0.1.43:9000
Bind address: 10.0.1.150:0
Message: 'arp-probe'
Count: 1
EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.150:32768 (MAC: 02:1d:ea:04:b8:7b)
Backend: dpdk
Sending packets...
Sent 12 bytes: 'arp-probe #1'
Received 12 bytes from 10.0.1.43:9000: 'arp-probe #1'
Test complete
[2026-05-21T05:08:37Z] INFO: ARP resolution succeeded (got response from peer)
[2026-05-21T05:08:37Z] INFO: Test: udp_send_receive
[2026-05-21T05:08:39Z] INFO: UDP send/receive succeeded
[2026-05-21T05:08:39Z] INFO: Test: echo_roundtrip
[2026-05-21T05:08:40Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-05-21T05:08:40Z] INFO: Test: payload_integrity
[2026-05-21T05:08:41Z] INFO: Response received, checking payload match...
[2026-05-21T05:08:41Z] INFO: Payload integrity verified (found in response)
[2026-05-21T05:08:41Z] INFO: Test: jumbo_diagnostics
[2026-05-21T05:08:41Z] INFO: === JUMBO FRAME DIAGNOSTICS ===
[2026-05-21T05:08:41Z] INFO: Interface MTU:
  9001
  65536
[2026-05-21T05:08:41Z] INFO:   ens5: MTU=9001
[2026-05-21T05:08:41Z] INFO:   lo: MTU=65536
[2026-05-21T05:08:41Z] INFO: Routing table MTU column:
Iface	Destination	Gateway 	Flags	RefCnt	Use	Metric	Mask		MTU	Window	IRTT                                                       
ens5	00000000	0101000A	0003	0	0	512	00000000	0	0	0                                                                             
ens5	0200000A	0101000A	0007	0	0	512	FFFFFFFF	0	0	0                                                                             
ens5	0001000A	00000000	0001	0	0	512	00FFFFFF	0	0	0                                                                             
ens5	0101000A	00000000	0005	0	0	512	FFFFFFFF	0	0	0                                                                             
[2026-05-21T05:08:41Z] INFO: DPDK port config (from echo server log):
[2026-05-21T05:08:41Z] INFO:   (no MTU info in echo log)
[2026-05-21T05:08:41Z] INFO: === END JUMBO DIAGNOSTICS ===
[2026-05-21T05:08:41Z] INFO: Test: jumbo_echo_8000
[2026-05-21T05:08:43Z] INFO: Jumbo output: UDP Test Client
Target: 10.0.1.43:9000
Bind address: 10.0.1.150:0
Payload size: 8000 bytes
Count: 3
EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.150:32768 (MAC: 02:1d:ea:04:b8:7b)
Backend: dpdk
Sending packets...
Sent 8000 bytes (binary payload)
Received 8000 bytes from 10.0.1.43:9000 (expected 8000, OK)
Sent 8000 bytes (binary payload)
Received 8000 bytes from 10.0.1.43:9000 (expected 8000, OK)
Sent 8000 bytes (binary payload)
Received 8000 bytes from 10.0.1.43:9000 (expected 8000, OK)
Test complete
[2026-05-21T05:08:43Z] INFO: Jumbo frame echo succeeded: 3/3 responses with correct size
[2026-05-21T05:08:43Z] INFO: JUnit XML written to: /tmp/test-results/tier1-dpdk-echo.xml
[2026-05-21T05:08:43Z] INFO: Tier 1 sender tests complete. Results: /tmp/test-results/tier1-dpdk-echo.xml
[2026-05-21T05:11:32Z] INFO: Test: arp_resolution
UDP Test Client
Target: 10.0.1.43:9000
Bind address: 0.0.0.0:0
Message: 'arp-probe'
Count: 1
EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
TELEMETRY: No legacy callbacks, legacy socket not created
DPDK bind failed (Port init failed: Invalid port ID: 0), falling back to tokio
Backend: tokio
Sending packets...
Sent 12 bytes: 'arp-probe #1'
Received 12 bytes from 10.0.1.43:9000: 'arp-probe #1'
Test complete
[2026-05-21T05:11:32Z] INFO: ARP resolution succeeded (got response from peer)
[2026-05-21T05:11:32Z] INFO: Test: udp_send_receive
[2026-05-21T05:11:33Z] INFO: UDP send/receive succeeded
[2026-05-21T05:11:33Z] INFO: Test: echo_roundtrip
[2026-05-21T05:11:34Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-05-21T05:11:34Z] INFO: Test: payload_integrity
[2026-05-21T05:11:34Z] INFO: Response received, checking payload match...
[2026-05-21T05:11:34Z] INFO: Payload integrity verified (found in response)
[2026-05-21T05:11:34Z] INFO: JUnit XML written to: /tmp/test-results/tier2-kernel-interop.xml
[2026-05-21T05:11:34Z] INFO: Tier 2 sender tests complete. Results: /tmp/test-results/tier2-kernel-interop.xml

receiver-test-client-iperf.log

[2026-05-21T05:18:11Z] INFO: iperf-sends: sent 10 packets, received 10 responses
[2026-05-21T05:18:11Z] INFO: iperf-sends: PASS (sent >= 5 packets)
[2026-05-21T05:18:11Z] INFO: JUnit XML written to: /tmp/test-results/tier3-iperf-sends.xml
[2026-05-21T05:18:11Z] INFO: iperf-sends test complete

sender-test-client-iperf.log

[2026-05-21T05:17:08Z] INFO: Pre-flight: checking DPDK state and ARP cache...
[2026-05-21T05:17:08Z] INFO: Local IP: 10.0.1.150, Peer IP: 10.0.1.43, Port: 9000
[2026-05-21T05:17:08Z] INFO: /proc/net/arp contents:
IP address       HW type     Flags       HW address            Mask     Device
10.0.1.240       0x1         0x2         02:f7:83:e4:f8:73     *        ens5
10.0.1.43        0x1         0x2         02:1b:db:ab:17:a7     *        ens5
10.0.1.1         0x1         0x2         02:6f:49:e6:05:9f     *        ens5
10.0.1.150       0x1         0x2         02:1d:ea:04:b8:7b     *        ens5
[2026-05-21T05:17:08Z] INFO: DPDK runtime state:
No /var/run/dpdk/ directory
[2026-05-21T05:17:08Z] INFO: vfio-pci bindings:
0000:00:06.0
bind
module
new_id
remove_id
uevent
unbind
[2026-05-21T05:17:08Z] INFO: Test binary: /opt/dpdk-stdlib/target/release/test-client
-rwxr-xr-x. 2 root root 1903240 May 21 05:06 /opt/dpdk-stdlib/target/release/test-client
[2026-05-21T05:17:08Z] INFO: Launching test-client: /opt/dpdk-stdlib/target/release/test-client --target 10.0.1.43 --port 9000 --bind-ip 10.0.1.150 --count 10 --delay 200
[2026-05-21T05:17:10Z] INFO: Test client output: UDP Test Client
Target: 10.0.1.43:9000
Bind address: 10.0.1.150:0
Message: 'dpdk-to-kernel-test-payload'
Count: 10
EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.150:32768 (MAC: 02:1d:ea:04:b8:7b)
Backend: dpdk
Sending packets...
Sent 30 bytes: 'dpdk-to-kernel-test-payload #1'
Received 30 bytes from 10.0.1.43:9000: 'dpdk-to-kernel-test-payload #1'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #2'
Received 30 bytes from 10.0.1.43:9000: 'dpdk-to-kernel-test-payload #2'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #3'
Received 30 bytes from 10.0.1.43:9000: 'dpdk-to-kernel-test-payload #3'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #4'
Received 30 bytes from 10.0.1.43:9000: 'dpdk-to-kernel-test-payload #4'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #5'
Received 30 bytes from 10.0.1.43:9000: 'dpdk-to-kernel-test-payload #5'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #6'
Received 30 bytes from 10.0.1.43:9000: 'dpdk-to-kernel-test-payload #6'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #7'
Received 30 bytes from 10.0.1.43:9000: 'dpdk-to-kernel-test-payload #7'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #8'
Received 30 bytes from 10.0.1.43:9000: 'dpdk-to-kernel-test-payload #8'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #9'
Received 30 bytes from 10.0.1.43:9000: 'dpdk-to-kernel-test-payload #9'
Sent 31 bytes: 'dpdk-to-kernel-test-payload #10'
Received 31 bytes from 10.0.1.43:9000: 'dpdk-to-kernel-test-payload #10'
Test complete
[2026-05-21T05:17:10Z] INFO: our-app-sends: sent 10 packets, received 10 responses
[2026-05-21T05:17:10Z] INFO: our-app-sends: PASS (sent >= 5 packets)
[2026-05-21T05:17:10Z] INFO: JUnit XML written to: /tmp/test-results/tier3-our-app-sends.xml
[2026-05-21T05:17:10Z] INFO: our-app-sends test complete
⚠️ SSM Command Failures (receiver-ssm-failure.log)
=== Polling timeout after 30s ===
Status: InProgress
Instance: i-04868f917932e73dd (receiver)
Command ID: 64398152-e790-4dd7-8821-f2f30c1227f0

=== STDOUT ===


=== STDERR ===


=== Polling timeout after 30s ===
Status: InProgress
Instance: i-04868f917932e73dd (receiver)
Command ID: b7c17f86-c923-404f-ad23-46f27ccd220a

=== STDOUT ===


=== STDERR ===


=== Polling timeout after 30s ===
Status: InProgress
Instance: i-04868f917932e73dd (receiver)
Command ID: b06f2f5a-ef23-400d-8e95-acb13a00eda4

=== STDOUT ===


=== STDERR ===


=== Polling timeout after 30s ===
Status: InProgress
Instance: i-04868f917932e73dd (receiver)
Command ID: 8f933e81-b68c-49e7-abd2-ff4fd903ab80

=== STDOUT ===


=== STDERR ===


⚠️ SSM Command Failures (sender-ssm-failure.log)
=== Polling timeout after 30s ===
Status: InProgress
Instance: i-04de1cb9f48c68944 (sender)
Command ID: a8ec5eeb-58a0-4e2c-9352-e6a560af77ff

=== STDOUT ===


=== STDERR ===


Network & PCI State

receiver-network-interfaces.log

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host noprefixroute 
       valid_lft forever preferred_lft forever
2: ens5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 9001 qdisc mq state UP group default qlen 1000
    link/ether 02:12:90:96:66:a9 brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-0357cc138df9c83d5
    altname device-number-0.0
    inet 10.0.1.133/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 2447sec preferred_lft 2447sec
    inet6 fe80::12:90ff:fe96:66a9/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever

sender-network-interfaces.log

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host noprefixroute 
       valid_lft forever preferred_lft forever
2: ens5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 9001 qdisc mq state UP group default qlen 1000
    link/ether 02:99:51:96:59:4f brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-0c293c27eebccc95e
    altname device-number-0.0
    inet 10.0.1.55/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 2470sec preferred_lft 2470sec
    inet6 fe80::99:51ff:fe96:594f/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever

receiver-networking-diag-baseline.txt

=== NETWORKING DIAGNOSTICS ===
timestamp: 2026-05-21T05:07:56Z
hostname: ip-10-0-1-133.ec2.internal
kernel: 6.18.25-57.109.amzn2023.x86_64

=== DPDK PORT STATUS ===

Network devices using DPDK-compatible driver
============================================
0000:00:06.0 'Elastic Network Adapter (ENA) ec20' drv=vfio-pci unused=ena

Network devices using kernel driver
===================================
0000:00:05.0 'Elastic Network Adapter (ENA) ec20' if=ens5 drv=ena unused=vfio-pci *Active*

No 'Baseband' devices detected
==============================

No 'Crypto' devices detected
============================

No 'DMA' devices detected
=========================

No 'Eventdev' devices detected
==============================

No 'Mempool' devices detected
=============================

No 'Compress' devices detected
==============================

No 'Misc (rawdev)' devices detected
===================================

No 'Regex' devices detected
===========================

=== IP ADDRESSES ===
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host noprefixroute 
       valid_lft forever preferred_lft forever
2: ens5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 9001 qdisc mq state UP group default qlen 1000
    link/ether 02:12:90:96:66:a9 brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-0357cc138df9c83d5
    altname device-number-0.0
    inet 10.0.1.133/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 3363sec preferred_lft 3363sec
    inet6 fe80::12:90ff:fe96:66a9/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever

=== ARP TABLE ===
10.0.1.1 dev ens5 lladdr 02:6f:49:e6:05:9f REACHABLE 

=== ROUTE TABLE ===
default via 10.0.1.1 dev ens5 proto dhcp src 10.0.1.133 metric 512 
10.0.0.2 via 10.0.1.1 dev ens5 proto dhcp src 10.0.1.133 metric 512 
10.0.1.0/24 dev ens5 proto kernel scope link src 10.0.1.133 metric 512 
10.0.1.1 dev ens5 proto dhcp scope link src 10.0.1.133 metric 512 

=== IMDS: ENI INFORMATION ===
ENI MACs found: 02:12:90:96:66:a9/ 02:1b:db:ab:17:a7/ 

--- ENI: 02:12:90:96:66:a9/ ---
  device-number: 0
  local-ipv4s: 10.0.1.133
  subnet-id: subnet-03da645f5ddbf51c4
  subnet-cidr: 10.0.1.0/24

--- ENI: 02:1b:db:ab:17:a7/ ---
  device-number: 1
  local-ipv4s: 10.0.1.43
  subnet-id: subnet-03da645f5ddbf51c4
  subnet-cidr: 10.0.1.0/24


=== GATEWAY ARP TEST ===
Gateway IP: 10.0.1.1
Gateway ARP entry:
10.0.1.1 dev ens5 lladdr 02:6f:49:e6:05:9f REACHABLE 

arping result:
ARPING 10.0.1.1 from 10.0.1.133 ens5
Unicast reply from 10.0.1.1 [02:6F:49:E6:05:9F]  0.545ms
Sent 1 probes (1 broadcast(s))
Received 1 response(s)

=== HUGEPAGE STATUS ===
AnonHugePages:         0 kB
ShmemHugePages:        0 kB
FileHugePages:     18432 kB
HugePages_Total:    1024
HugePages_Free:     1024
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
Hugetlb:         2097152 kB

=== VFIO STATUS ===
total 0
drwxr-xr-x.  2 root root       80 May 21 05:07 .
drwxr-xr-x. 14 root root     3100 May 21 05:07 ..
crw-------.  1 root root 243,   0 May 21 05:07 noiommu-0
crw-rw-rw-.  1 root root  10, 196 May 21 05:03 vfio

noiommu mode:
Y

=== DPDK SHARED MEMORY ===
no /var/run/dpdk/ directory (clean state)

=== DPDK-RELATED DMESG (last 30 lines) ===
[    0.056519] printk: legacy console [ttyS0] enabled
[    0.057640] x2apic enabled
[    0.062381] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
[    0.062498] x86/fpu: Enabled xstate features 0x2ff, context size is 2568 bytes, using 'compacted' format.
[    0.072083] audit: type=2000 audit(1779339835.245:1): state=initialized audit_enabled=0 res=1
[    0.082987] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.141690] ACPI: Interpreter enabled
[    0.141847] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.149961] pci 0000:00:05.0: enabling Extended Tags
[    0.224029] SGI XFS with ACLs, security attributes, quota, no debug enabled
[    0.229555] ACPI: \_SB_.LNKD: Enabled at IRQ 11
[    0.232627] IPI shorthand broadcast: enabled
[    3.197533] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    3.242710] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    3.301309] VFIO - User Level meta-driver version: 0.3
[    3.731079] ena 0000:00:05.0: Elastic Network Adapter (ENA) v2.16.1g
[    3.742338] ena 0000:00:05.0: ENA device version: 0.10
[    3.743110] ena 0000:00:05.0: ENA controller version: 0.0.1 implementation version 1
[    3.844837] ena 0000:00:05.0: ENA Large LLQ is disabled
[    3.857221] ena 0000:00:05.0: Elastic Network Adapter (ENA) found at mem c0500000, mac addr 02:12:90:96:66:a9
[    3.881958] ena 0000:00:05.0 ens5: renamed from eth0
[  189.515541] pci 0000:00:06.0: enabling Extended Tags
[  189.519724] ena 0000:00:06.0: enabling device (0000 -> 0002)
[  189.530630] ena 0000:00:06.0: ENA device version: 0.10
[  189.531400] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  189.630608] ena 0000:00:06.0: ENA Large LLQ is disabled
[  189.642803] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:1b:db:ab:17:a7
[  189.650655] ena 0000:00:06.0 ens6: renamed from eth0
[  227.714480] vfio-pci 0000:00:06.0: Adding to iommu group 0
[  227.715935] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device

=== DPDK-RELATED PROCESSES ===
no DPDK processes running

=== END DIAGNOSTICS ===

sender-networking-diag-baseline.txt

=== NETWORKING DIAGNOSTICS ===
timestamp: 2026-05-21T05:07:48Z
hostname: ip-10-0-1-55.ec2.internal
kernel: 6.18.25-57.109.amzn2023.x86_64

=== DPDK PORT STATUS ===

Network devices using DPDK-compatible driver
============================================
0000:00:06.0 'Elastic Network Adapter (ENA) ec20' drv=vfio-pci unused=ena

Network devices using kernel driver
===================================
0000:00:05.0 'Elastic Network Adapter (ENA) ec20' if=ens5 drv=ena unused=vfio-pci *Active*

No 'Baseband' devices detected
==============================

No 'Crypto' devices detected
============================

No 'DMA' devices detected
=========================

No 'Eventdev' devices detected
==============================

No 'Mempool' devices detected
=============================

No 'Compress' devices detected
==============================

No 'Misc (rawdev)' devices detected
===================================

No 'Regex' devices detected
===========================

=== IP ADDRESSES ===
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host noprefixroute 
       valid_lft forever preferred_lft forever
2: ens5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 9001 qdisc mq state UP group default qlen 1000
    link/ether 02:99:51:96:59:4f brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-0c293c27eebccc95e
    altname device-number-0.0
    inet 10.0.1.55/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 3372sec preferred_lft 3372sec
    inet6 fe80::99:51ff:fe96:594f/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever

=== ARP TABLE ===
10.0.1.240 dev ens5 lladdr 02:f7:83:e4:f8:73 REACHABLE 
10.0.1.1 dev ens5 lladdr 02:6f:49:e6:05:9f REACHABLE 

=== ROUTE TABLE ===
default via 10.0.1.1 dev ens5 proto dhcp src 10.0.1.55 metric 512 
10.0.0.2 via 10.0.1.1 dev ens5 proto dhcp src 10.0.1.55 metric 512 
10.0.1.0/24 dev ens5 proto kernel scope link src 10.0.1.55 metric 512 
10.0.1.1 dev ens5 proto dhcp scope link src 10.0.1.55 metric 512 

=== IMDS: ENI INFORMATION ===
ENI MACs found: 02:1d:ea:04:b8:7b/ 02:99:51:96:59:4f/ 

--- ENI: 02:1d:ea:04:b8:7b/ ---
  device-number: 1
  local-ipv4s: 10.0.1.150
  subnet-id: subnet-03da645f5ddbf51c4
  subnet-cidr: 10.0.1.0/24

--- ENI: 02:99:51:96:59:4f/ ---
  device-number: 0
  local-ipv4s: 10.0.1.55
  subnet-id: subnet-03da645f5ddbf51c4
  subnet-cidr: 10.0.1.0/24


=== GATEWAY ARP TEST ===
Gateway IP: 10.0.1.1
Gateway ARP entry:
10.0.1.1 dev ens5 lladdr 02:6f:49:e6:05:9f REACHABLE 

arping result:
ARPING 10.0.1.1 from 10.0.1.55 ens5
Unicast reply from 10.0.1.1 [02:6F:49:E6:05:9F]  0.548ms
Sent 1 probes (1 broadcast(s))
Received 1 response(s)

=== HUGEPAGE STATUS ===
AnonHugePages:         0 kB
ShmemHugePages:        0 kB
FileHugePages:     18432 kB
HugePages_Total:    1024
HugePages_Free:     1024
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
Hugetlb:         2097152 kB

=== VFIO STATUS ===
total 0
drwxr-xr-x.  2 root root       80 May 21 05:07 .
drwxr-xr-x. 14 root root     3100 May 21 05:06 ..
crw-------.  1 root root 243,   0 May 21 05:07 noiommu-0
crw-rw-rw-.  1 root root  10, 196 May 21 05:03 vfio

noiommu mode:
Y

=== DPDK SHARED MEMORY ===
no /var/run/dpdk/ directory (clean state)

=== DPDK-RELATED DMESG (last 30 lines) ===
[    0.051953] printk: legacy console [ttyS0] enabled
[    0.053048] x2apic enabled
[    0.057724] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
[    0.057839] x86/fpu: Enabled xstate features 0x2ff, context size is 2568 bytes, using 'compacted' format.
[    0.067412] audit: type=2000 audit(1779339835.113:1): state=initialized audit_enabled=0 res=1
[    0.077657] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.128025] ACPI: Interpreter enabled
[    0.128025] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.146193] pci 0000:00:05.0: enabling Extended Tags
[    0.214158] SGI XFS with ACLs, security attributes, quota, no debug enabled
[    0.229429] ACPI: \_SB_.LNKD: Enabled at IRQ 11
[    0.232630] IPI shorthand broadcast: enabled
[    3.356025] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    3.400627] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    3.462012] VFIO - User Level meta-driver version: 0.3
[    3.768886] ena 0000:00:05.0: Elastic Network Adapter (ENA) v2.16.1g
[    3.796560] ena 0000:00:05.0: ENA device version: 0.10
[    3.797319] ena 0000:00:05.0: ENA controller version: 0.0.1 implementation version 1
[    3.905013] ena 0000:00:05.0: ENA Large LLQ is disabled
[    3.917139] ena 0000:00:05.0: Elastic Network Adapter (ENA) found at mem c0500000, mac addr 02:99:51:96:59:4f
[    3.961047] ena 0000:00:05.0 ens5: renamed from eth0
[  169.847150] pci 0000:00:06.0: enabling Extended Tags
[  169.851180] ena 0000:00:06.0: enabling device (0000 -> 0002)
[  169.863666] ena 0000:00:06.0: ENA device version: 0.10
[  169.864399] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  169.963650] ena 0000:00:06.0: ENA Large LLQ is disabled
[  169.975449] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:1d:ea:04:b8:7b
[  169.982952] ena 0000:00:06.0 ens6: renamed from eth0
[  220.926750] vfio-pci 0000:00:06.0: Adding to iommu group 0
[  220.928175] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device

=== DPDK-RELATED PROCESSES ===
no DPDK processes running

=== END DIAGNOSTICS ===
⚠️ Crash Diagnostics

receiver-dmesg-crashes.log

[    0.071421] pid_max: default: 32768 minimum: 301
[    0.154006] iommu: Default domain type: Translated
[    0.160033] NetLabel:  unlabeled traffic allowed by default
[    0.187163] PCI: CLS 0 bytes, default 64
[    0.240663] nvme nvme0: 2/0/0 default/read/poll queues
[    0.422265] systemd[1]: systemd 252.23-11.amzn2023 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP -GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 -BZIP2 -LZ4 +XZ +ZLIB -ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    0.422399] systemd[1]: No hostname configured, using default hostname.
[    0.480788] systemd[1]: Queued start job for default target initrd.target.
[    2.470495] systemd[1]: systemd 252.23-11.amzn2023 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP -GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 -BZIP2 -LZ4 +XZ +ZLIB -ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[  265.392713] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:4382)
[  441.329845] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:4770)
[ 1015.870664] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:5980)

sender-dmesg-crashes.log

[    0.066805] pid_max: default: 32768 minimum: 301
[    0.150066] iommu: Default domain type: Translated
[    0.150090] NetLabel:  unlabeled traffic allowed by default
[    0.188874] PCI: CLS 0 bytes, default 64
[    0.245546] nvme nvme0: 2/0/0 default/read/poll queues
[    0.410510] systemd[1]: systemd 252.23-11.amzn2023 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP -GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 -BZIP2 -LZ4 +XZ +ZLIB -ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    0.410632] systemd[1]: No hostname configured, using default hostname.
[    0.467428] systemd[1]: Queued start job for default target initrd.target.
[    2.591240] systemd[1]: systemd 252.23-11.amzn2023 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP -GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 -BZIP2 -LZ4 +XZ +ZLIB -ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[  838.870259] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:5524)
Kernel Console (dmesg)

receiver-console-output.log (PCI/driver events only)

[  265.391103] vfio-pci 0000:00:06.0: reset done
[  265.392713] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:4382)
[  265.394179] vfio-pci 0000:00:06.0: resetting
[  265.620953] vfio-pci 0000:00:06.0: reset done
[  347.274544] vfio-pci 0000:00:06.0: Removing from iommu group 0
[  348.287178] ena 0000:00:06.0: ENA device version: 0.10
[  348.287950] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  348.388009] ena 0000:00:06.0: ENA Large LLQ is disabled
[  348.400093] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:1b:db:ab:17:a7
[  348.411550] ena 0000:00:06.0 ens6: renamed from eth0 (while UP)
[  368.311641] vfio-pci 0000:00:06.0: Adding to iommu group 0
[  368.313054] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[  441.114397] vfio-pci 0000:00:06.0: resetting
[  441.328243] vfio-pci 0000:00:06.0: reset done
[  441.329845] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:4770)
[  441.331289] vfio-pci 0000:00:06.0: resetting
[  441.548103] vfio-pci 0000:00:06.0: reset done
[  517.194299] vfio-pci 0000:00:06.0: Removing from iommu group 0
[  518.205179] ena 0000:00:06.0: ENA device version: 0.10
[  518.205935] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  518.305157] ena 0000:00:06.0: ENA Large LLQ is disabled
[  518.317226] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:1b:db:ab:17:a7
[  518.330392] ena 0000:00:06.0 ens6: renamed from eth0 (while UP)
[  939.932874] vfio-pci 0000:00:06.0: Adding to iommu group 0
[  939.934329] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[ 1015.652436] vfio-pci 0000:00:06.0: resetting
[ 1015.869093] vfio-pci 0000:00:06.0: reset done
[ 1015.870664] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:5980)
[ 1015.872176] vfio-pci 0000:00:06.0: resetting
[ 1016.088972] vfio-pci 0000:00:06.0: reset done

sender-console-output.log (PCI/driver events only)

[  838.871685] vfio-pci 0000:00:06.0: resetting
[  839.088520] vfio-pci 0000:00:06.0: reset done
[  902.026320] vfio-pci 0000:00:06.0: Removing from iommu group 0
[  903.036507] ena 0000:00:06.0: ENA device version: 0.10
[  903.037245] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  903.136491] ena 0000:00:06.0: ENA Large LLQ is disabled
[  903.148251] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:1d:ea:04:b8:7b
[  903.158981] ena 0000:00:06.0 ens6: renamed from eth0 (while UP)
[  933.049690] vfio-pci 0000:00:06.0: Adding to iommu group 0
[  933.051106] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[ 1031.825671] vfio-pci 0000:00:06.0: resetting
[ 1032.046829] vfio-pci 0000:00:06.0: reset done
[ 1032.048415] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:5969)
[ 1032.050030] vfio-pci 0000:00:06.0: resetting
[ 1032.266586] vfio-pci 0000:00:06.0: reset done
[ 1032.553744] vfio-pci 0000:00:06.0: resetting
[ 1032.766649] vfio-pci 0000:00:06.0: reset done
[ 1032.768221] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:5989)
[ 1032.769818] vfio-pci 0000:00:06.0: resetting
[ 1032.986624] vfio-pci 0000:00:06.0: reset done
[ 1034.275784] vfio-pci 0000:00:06.0: resetting
[ 1034.496652] vfio-pci 0000:00:06.0: reset done
[ 1034.498227] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:6012)
[ 1034.499826] vfio-pci 0000:00:06.0: resetting
[ 1034.716501] vfio-pci 0000:00:06.0: reset done
[ 1036.006153] vfio-pci 0000:00:06.0: resetting
[ 1036.226644] vfio-pci 0000:00:06.0: reset done
[ 1036.228224] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:6035)
[ 1036.229807] vfio-pci 0000:00:06.0: resetting
[ 1036.446517] vfio-pci 0000:00:06.0: reset done

@github-actions
Copy link
Copy Markdown

✅ Integration Tests Passed — Graviton (run)

Branch: 60/merge | Commit: 78bdd03d

Test Results

  • tier1-dpdk-echo.xml: 6 tests, 0 failures
  • tier2-kernel-interop.xml: 4 tests, 0 failures
  • tier3-iperf-sends.xml: 1 tests, 0 failures
  • tier3-our-app-sends.xml: 1 tests, 0 failures

Application Logs (last 20 lines)

receiver-echo-server.log

EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.77:9000 (MAC: 02:0c:87:ab:49:bb)
echo listening on 10.0.1.77:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-echo-server.log

EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.56:9000 (MAC: 02:03:29:7e:2f:1f)
echo listening on 10.0.1.56:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-test-client.log

EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
TELEMETRY: No legacy callbacks, legacy socket not created
DPDK bind failed (Port init failed: Invalid port ID: 0), falling back to tokio
Backend: tokio
Sending packets...
Sent 12 bytes: 'arp-probe #1'
Received 12 bytes from 10.0.1.77:9000: 'arp-probe #1'
Test complete
[2026-05-21T05:12:42Z] INFO: ARP resolution succeeded (got response from peer)
[2026-05-21T05:12:42Z] INFO: Test: udp_send_receive
[2026-05-21T05:12:44Z] INFO: UDP send/receive succeeded
[2026-05-21T05:12:44Z] INFO: Test: echo_roundtrip
[2026-05-21T05:12:44Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-05-21T05:12:44Z] INFO: Test: payload_integrity
[2026-05-21T05:12:44Z] INFO: Response received, checking payload match...
[2026-05-21T05:12:44Z] INFO: Payload integrity verified (found in response)
[2026-05-21T05:12:44Z] INFO: JUnit XML written to: /tmp/test-results/tier2-kernel-interop.xml
[2026-05-21T05:12:44Z] INFO: Tier 2 sender tests complete. Results: /tmp/test-results/tier2-kernel-interop.xml

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant