Skip to content

IPv6 UDP checksum validation#61

Merged
gspivey merged 3 commits into
developmentfrom
agent/udp6-checksum-validation
May 21, 2026
Merged

IPv6 UDP checksum validation#61
gspivey merged 3 commits into
developmentfrom
agent/udp6-checksum-validation

Conversation

@gspivey
Copy link
Copy Markdown
Owner

@gspivey gspivey commented May 21, 2026

Roadmap item

IPv6 sub-task #2: UDP over IPv6 checksum — mandatory IPv6 pseudo-header checksum validation (RFC 8200 §8.1).

Changes

  • Integrated verify_udp6_checksum into the RX path (process_frame_zerocopy)
  • IPv6 UDP packets are now parsed and checksum-validated before delivery to the application
  • Zero checksums are rejected (mandatory for IPv6, unlike IPv4 where 0 means disabled)
  • Valid IPv6 UDP packets are delivered with SocketAddrV6 source addresses

Tests added (21 new tests)

Checksum verification (ipv6.rs):

  • VLAN-tagged IPv6 frame checksum verification
  • Extension header (Hop-by-Hop) checksum verification
  • Various payload sizes: empty, 1-byte, odd-length, max (1452B)
  • Corruption detection: src/dst IP, src/dst port, payload
  • Edge cases: truncated frames, non-IPv6 frames, too-short frames
  • Pseudo-header checksum properties (different lengths, addresses, large lengths)
  • Zero-becomes-0xFFFF contract verification (RFC 8200 §8.1)

RX path integration (lib.rs):

  • process_frame_zerocopy_accepts_valid_ipv6_udp
  • process_frame_zerocopy_rejects_corrupted_ipv6_checksum
  • process_frame_zerocopy_rejects_zero_ipv6_checksum

Tradeoffs

  • The RX path tries IPv4 parsing first, then falls back to IPv6. This adds one failed parse attempt for IPv6-only traffic. The cost is negligible (a few comparisons) and avoids changing the hot path for existing IPv4 workloads.
  • No topology worker integration yet — that will come with sub-task feat: implement send_to() with packet building and API compatibility … #3 (SocketAddrV6 through UdpSocket) which adds full dual-stack socket support.

All 607 tests pass, no regressions.

Agent Router added 2 commits May 21, 2026 08:27
Add comprehensive tests for verify_udp6_checksum and
udp6_pseudo_header_checksum:
- VLAN-tagged IPv6 frame checksum verification
- Extension header (Hop-by-Hop) checksum verification
- Various payload sizes (empty, 1-byte, odd-length, max)
- Corruption detection in src/dst IP, src/dst port, payload
- Edge cases: truncated frames, non-IPv6 frames, too-short frames
- Pseudo-header checksum properties (different lengths, addresses)
- Zero-becomes-0xFFFF contract verification
- RX path integration: process_frame_zerocopy accepts/rejects IPv6 UDP

The RX path integration test (accepts_valid_ipv6_udp) is expected to
fail until the implementation is added in the next commit.
Add IPv6 UDP packet handling to process_frame_zerocopy:
- Parse incoming IPv6/UDP frames via parse_udp6_packet_ref
- Validate mandatory UDP checksum via verify_udp6_checksum (RFC 8200 §8.1)
- Reject frames with zero checksum (invalid for IPv6, unlike IPv4)
- Deliver valid IPv6 UDP packets to the application with SocketAddrV6

The RX path now tries IPv4 parsing first, then falls back to IPv6.
This completes IPv6 roadmap sub-task #2: UDP over IPv6 checksum.

All 607 tests pass with no regressions.
@github-actions
Copy link
Copy Markdown

Synthetic Performance Results (run)

Commit: f6461106

✅ 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.9M 11.3M 1.1x 88
RX recv_from 64B 3.6M 4.6M 0.8x 218
TX send_to 1400B 1.8M 1.8M 1.0x 551
RX recv_from 1400B 1.1M 1.2M 0.9x 820

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

Synthetic Performance Results — Graviton (run)

Commit: f6461106

✅ 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.0M 11.2M 1.1x 88
RX recv_from 64B 3.5M 4.5M 0.8x 221
TX send_to 1400B 1.8M 1.8M 1.0x 552
RX recv_from 1400B 1.1M 1.2M 0.9x 855

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-085b27e3f1adbbd8d (DPDK ENI: 10.0.1.214)
  • Receiver: i-0f7a74710cdcb0810 (DPDK ENI: 10.0.1.222)
  • Both instances SSM-ready.

@github-actions
Copy link
Copy Markdown

[CI] Stage: Deploy

Infrastructure ready.

  • Sender: i-0656476378d4a5e1a (DPDK ENI: 10.0.1.74)
  • Receiver: i-046a6524491846fc5 (DPDK ENI: 10.0.1.237)
  • 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: 61/merge | Commit: f6461106

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.222:9000 (MAC: 02:ab:c4:b9:26:c3)
echo listening on 10.0.1.222: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.214:9000 (MAC: 02:aa:93:38:e5:e1)
echo listening on 10.0.1.214: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.222:9000: 'arp-probe #1'
Test complete
[2026-05-21T12:42:08Z] INFO: ARP resolution succeeded (got response from peer)
[2026-05-21T12:42:08Z] INFO: Test: udp_send_receive
[2026-05-21T12:42:09Z] INFO: UDP send/receive succeeded
[2026-05-21T12:42:09Z] INFO: Test: echo_roundtrip
[2026-05-21T12:42:10Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-05-21T12:42:10Z] INFO: Test: payload_integrity
[2026-05-21T12:42:10Z] INFO: Response received, checking payload match...
[2026-05-21T12:42:10Z] INFO: Payload integrity verified (found in response)
[2026-05-21T12:42:10Z] INFO: JUnit XML written to: /tmp/test-results/tier2-kernel-interop.xml
[2026-05-21T12:42:10Z] INFO: Tier 2 sender tests complete. Results: /tmp/test-results/tier2-kernel-interop.xml

@github-actions
Copy link
Copy Markdown

✅ Integration Tests Passed (Run 26225969665)

Branch: 61/merge | Commit: f6461106

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.237:9000 (MAC: 02:04:d5:f9:99:ad)
echo listening on 10.0.1.237: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.74:9000 (MAC: 02:e7:7c:05:8c:37)
echo listening on 10.0.1.74: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.237:9000: 'arp-probe #1'
Test complete
[2026-05-21T12:42:17Z] INFO: ARP resolution succeeded (got response from peer)
[2026-05-21T12:42:17Z] INFO: Test: udp_send_receive
[2026-05-21T12:42:18Z] INFO: UDP send/receive succeeded
[2026-05-21T12:42:18Z] INFO: Test: echo_roundtrip
[2026-05-21T12:42:19Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-05-21T12:42:19Z] INFO: Test: payload_integrity
[2026-05-21T12:42:19Z] INFO: Response received, checking payload match...
[2026-05-21T12:42:19Z] INFO: Payload integrity verified (found in response)
[2026-05-21T12:42:19Z] INFO: JUnit XML written to: /tmp/test-results/tier2-kernel-interop.xml
[2026-05-21T12:42:19Z] INFO: Tier 2 sender tests complete. Results: /tmp/test-results/tier2-kernel-interop.xml

receiver-test-client-iperf.log

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

sender-test-client-iperf.log

Received 30 bytes from 10.0.1.237:9000: 'dpdk-to-kernel-test-payload #3'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #4'
Received 30 bytes from 10.0.1.237:9000: 'dpdk-to-kernel-test-payload #4'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #5'
Received 30 bytes from 10.0.1.237:9000: 'dpdk-to-kernel-test-payload #5'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #6'
Received 30 bytes from 10.0.1.237:9000: 'dpdk-to-kernel-test-payload #6'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #7'
Received 30 bytes from 10.0.1.237:9000: 'dpdk-to-kernel-test-payload #7'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #8'
Received 30 bytes from 10.0.1.237:9000: 'dpdk-to-kernel-test-payload #8'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #9'
Received 30 bytes from 10.0.1.237:9000: 'dpdk-to-kernel-test-payload #9'
Sent 31 bytes: 'dpdk-to-kernel-test-payload #10'
Received 31 bytes from 10.0.1.237:9000: 'dpdk-to-kernel-test-payload #10'
Test complete
[2026-05-21T12:48:12Z] INFO: our-app-sends: sent 10 packets, received 10 responses
[2026-05-21T12:48:12Z] INFO: our-app-sends: PASS (sent >= 5 packets)
[2026-05-21T12:48:12Z] INFO: JUnit XML written to: /tmp/test-results/tier3-our-app-sends.xml
[2026-05-21T12:48:12Z] 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.237:9000 (MAC: 02:04:d5:f9:99:ad)
echo listening on 10.0.1.237: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.74:9000 (MAC: 02:e7:7c:05:8c:37)
echo listening on 10.0.1.74:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-test-client.log

[2026-05-21T12:39:13Z] INFO: Test: arp_resolution
UDP Test Client
Target: 10.0.1.237:9000
Bind address: 10.0.1.74: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.74:32768 (MAC: 02:e7:7c:05:8c:37)
Backend: dpdk
Sending packets...
Sent 12 bytes: 'arp-probe #1'
Received 12 bytes from 10.0.1.237:9000: 'arp-probe #1'
Test complete
[2026-05-21T12:39:13Z] INFO: ARP resolution succeeded (got response from peer)
[2026-05-21T12:39:13Z] INFO: Test: udp_send_receive
[2026-05-21T12:39:15Z] INFO: UDP send/receive succeeded
[2026-05-21T12:39:15Z] INFO: Test: echo_roundtrip
[2026-05-21T12:39:17Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-05-21T12:39:17Z] INFO: Test: payload_integrity
[2026-05-21T12:39:17Z] INFO: Response received, checking payload match...
[2026-05-21T12:39:17Z] INFO: Payload integrity verified (found in response)
[2026-05-21T12:39:17Z] INFO: Test: jumbo_diagnostics
[2026-05-21T12:39:17Z] INFO: === JUMBO FRAME DIAGNOSTICS ===
[2026-05-21T12:39:17Z] INFO: Interface MTU:
  9001
  65536
[2026-05-21T12:39:17Z] INFO:   ens5: MTU=9001
[2026-05-21T12:39:17Z] INFO:   lo: MTU=65536
[2026-05-21T12:39:17Z] 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-21T12:39:17Z] INFO: DPDK port config (from echo server log):
[2026-05-21T12:39:17Z] INFO:   (no MTU info in echo log)
[2026-05-21T12:39:17Z] INFO: === END JUMBO DIAGNOSTICS ===
[2026-05-21T12:39:17Z] INFO: Test: jumbo_echo_8000
[2026-05-21T12:39:19Z] INFO: Jumbo output: UDP Test Client
Target: 10.0.1.237:9000
Bind address: 10.0.1.74: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.74:32768 (MAC: 02:e7:7c:05:8c:37)
Backend: dpdk
Sending packets...
Sent 8000 bytes (binary payload)
Received 8000 bytes from 10.0.1.237:9000 (expected 8000, OK)
Sent 8000 bytes (binary payload)
Received 8000 bytes from 10.0.1.237:9000 (expected 8000, OK)
Sent 8000 bytes (binary payload)
Received 8000 bytes from 10.0.1.237:9000 (expected 8000, OK)
Test complete
[2026-05-21T12:39:19Z] INFO: Jumbo frame echo succeeded: 3/3 responses with correct size
[2026-05-21T12:39:19Z] INFO: JUnit XML written to: /tmp/test-results/tier1-dpdk-echo.xml
[2026-05-21T12:39:19Z] INFO: Tier 1 sender tests complete. Results: /tmp/test-results/tier1-dpdk-echo.xml
[2026-05-21T12:42:17Z] INFO: Test: arp_resolution
UDP Test Client
Target: 10.0.1.237: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.237:9000: 'arp-probe #1'
Test complete
[2026-05-21T12:42:17Z] INFO: ARP resolution succeeded (got response from peer)
[2026-05-21T12:42:17Z] INFO: Test: udp_send_receive
[2026-05-21T12:42:18Z] INFO: UDP send/receive succeeded
[2026-05-21T12:42:18Z] INFO: Test: echo_roundtrip
[2026-05-21T12:42:19Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-05-21T12:42:19Z] INFO: Test: payload_integrity
[2026-05-21T12:42:19Z] INFO: Response received, checking payload match...
[2026-05-21T12:42:19Z] INFO: Payload integrity verified (found in response)
[2026-05-21T12:42:19Z] INFO: JUnit XML written to: /tmp/test-results/tier2-kernel-interop.xml
[2026-05-21T12:42:19Z] INFO: Tier 2 sender tests complete. Results: /tmp/test-results/tier2-kernel-interop.xml

receiver-test-client-iperf.log

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

sender-test-client-iperf.log

[2026-05-21T12:48:09Z] INFO: Pre-flight: checking DPDK state and ARP cache...
[2026-05-21T12:48:09Z] INFO: Local IP: 10.0.1.74, Peer IP: 10.0.1.237, Port: 9000
[2026-05-21T12:48:09Z] INFO: /proc/net/arp contents:
IP address       HW type     Flags       HW address            Mask     Device
10.0.1.237       0x1         0x2         02:04:d5:f9:99:ad     *        ens5
10.0.1.104       0x1         0x2         02:9c:c2:90:e3:b5     *        ens5
10.0.1.41        0x1         0x2         02:9f:0f:0a:bc:05     *        ens5
10.0.1.1         0x1         0x2         02:99:28:b2:33:af     *        ens5
10.0.1.74        0x1         0x2         02:e7:7c:05:8c:37     *        ens5
[2026-05-21T12:48:09Z] INFO: DPDK runtime state:
No /var/run/dpdk/ directory
[2026-05-21T12:48:09Z] INFO: vfio-pci bindings:
0000:00:06.0
bind
module
new_id
remove_id
uevent
unbind
[2026-05-21T12:48:09Z] INFO: Test binary: /opt/dpdk-stdlib/target/release/test-client
-rwxr-xr-x. 2 root root 1908232 May 21 12:37 /opt/dpdk-stdlib/target/release/test-client
[2026-05-21T12:48:09Z] INFO: Launching test-client: /opt/dpdk-stdlib/target/release/test-client --target 10.0.1.237 --port 9000 --bind-ip 10.0.1.74 --count 10 --delay 200
[2026-05-21T12:48:12Z] INFO: Test client output: UDP Test Client
Target: 10.0.1.237:9000
Bind address: 10.0.1.74: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.74:32768 (MAC: 02:e7:7c:05:8c:37)
Backend: dpdk
Sending packets...
Sent 30 bytes: 'dpdk-to-kernel-test-payload #1'
Received 30 bytes from 10.0.1.237:9000: 'dpdk-to-kernel-test-payload #1'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #2'
Received 30 bytes from 10.0.1.237:9000: 'dpdk-to-kernel-test-payload #2'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #3'
Received 30 bytes from 10.0.1.237:9000: 'dpdk-to-kernel-test-payload #3'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #4'
Received 30 bytes from 10.0.1.237:9000: 'dpdk-to-kernel-test-payload #4'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #5'
Received 30 bytes from 10.0.1.237:9000: 'dpdk-to-kernel-test-payload #5'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #6'
Received 30 bytes from 10.0.1.237:9000: 'dpdk-to-kernel-test-payload #6'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #7'
Received 30 bytes from 10.0.1.237:9000: 'dpdk-to-kernel-test-payload #7'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #8'
Received 30 bytes from 10.0.1.237:9000: 'dpdk-to-kernel-test-payload #8'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #9'
Received 30 bytes from 10.0.1.237:9000: 'dpdk-to-kernel-test-payload #9'
Sent 31 bytes: 'dpdk-to-kernel-test-payload #10'
Received 31 bytes from 10.0.1.237:9000: 'dpdk-to-kernel-test-payload #10'
Test complete
[2026-05-21T12:48:12Z] INFO: our-app-sends: sent 10 packets, received 10 responses
[2026-05-21T12:48:12Z] INFO: our-app-sends: PASS (sent >= 5 packets)
[2026-05-21T12:48:12Z] INFO: JUnit XML written to: /tmp/test-results/tier3-our-app-sends.xml
[2026-05-21T12:48:12Z] INFO: our-app-sends test complete
⚠️ SSM Command Failures (receiver-ssm-failure.log)
=== Polling timeout after 30s ===
Status: InProgress
Instance: i-046a6524491846fc5 (receiver)
Command ID: dccd7776-5b9d-4aaf-879d-d44b1cc875f1

=== STDOUT ===


=== STDERR ===


=== Polling timeout after 30s ===
Status: InProgress
Instance: i-046a6524491846fc5 (receiver)
Command ID: 947dc906-262e-45b9-9fef-55623e1d84b1

=== STDOUT ===


=== STDERR ===


=== Polling timeout after 30s ===
Status: InProgress
Instance: i-046a6524491846fc5 (receiver)
Command ID: c93e0a38-af24-443d-9f68-90ba9db6174f

=== STDOUT ===


=== STDERR ===


=== Polling timeout after 30s ===
Status: InProgress
Instance: i-046a6524491846fc5 (receiver)
Command ID: c41c9592-ba53-4a52-8e1a-a282c482aa1a

=== STDOUT ===


=== STDERR ===


⚠️ SSM Command Failures (sender-ssm-failure.log)
=== Polling timeout after 30s ===
Status: InProgress
Instance: i-0656476378d4a5e1a (sender)
Command ID: a6bb434b-c292-4a60-8a81-5a495a6a9db5

=== 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:ce:cf:17:27:5d brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-0d0753a3b7d2186d4
    altname device-number-0.0
    inet 10.0.1.85/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 2365sec preferred_lft 2365sec
    inet6 fe80::ce:cfff:fe17:275d/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:bb:72:1c:71:15 brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-04aefeaa2820060e1
    altname device-number-0.0
    inet 10.0.1.155/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 2387sec preferred_lft 2387sec
    inet6 fe80::bb:72ff:fe1c:7115/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever

receiver-networking-diag-baseline.txt

=== NETWORKING DIAGNOSTICS ===
timestamp: 2026-05-21T12:38:34Z
hostname: ip-10-0-1-85.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:ce:cf:17:27:5d brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-0d0753a3b7d2186d4
    altname device-number-0.0
    inet 10.0.1.85/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 3300sec preferred_lft 3300sec
    inet6 fe80::ce:cfff:fe17:275d/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever

=== ARP TABLE ===
10.0.1.1 dev ens5 lladdr 02:99:28:b2:33:af REACHABLE 
10.0.1.41 dev ens5 lladdr 02:9f:0f:0a:bc:05 REACHABLE 
10.0.1.104 dev ens5 lladdr 02:9c:c2:90:e3:b5 STALE 

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

=== IMDS: ENI INFORMATION ===
ENI MACs found: 02:04:d5:f9:99:ad/ 02:ce:cf:17:27:5d/ 

--- ENI: 02:04:d5:f9:99:ad/ ---
  device-number: 1
  local-ipv4s: 10.0.1.237
  subnet-id: subnet-0b97ba8130e786879
  subnet-cidr: 10.0.1.0/24

--- ENI: 02:ce:cf:17:27:5d/ ---
  device-number: 0
  local-ipv4s: 10.0.1.85
  subnet-id: subnet-0b97ba8130e786879
  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:99:28:b2:33:af REACHABLE 

arping result:
ARPING 10.0.1.1 from 10.0.1.85 ens5
Unicast reply from 10.0.1.1 [02:99:28:B2:33:AF]  0.547ms
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 12:38 .
drwxr-xr-x. 14 root root     3100 May 21 12:37 ..
crw-------.  1 root root 243,   0 May 21 12:38 noiommu-0
crw-rw-rw-.  1 root root  10, 196 May 21 12:33 vfio

noiommu mode:
Y

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

=== DPDK-RELATED DMESG (last 30 lines) ===
[    0.054563] printk: legacy console [ttyS0] enabled
[    0.055669] x2apic enabled
[    0.060581] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
[    0.060702] x86/fpu: Enabled xstate features 0x2ff, context size is 2568 bytes, using 'compacted' format.
[    0.070120] audit: type=2000 audit(1779366809.665:1): state=initialized audit_enabled=0 res=1
[    0.080035] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.129746] ACPI: Interpreter enabled
[    0.129904] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.149592] pci 0000:00:05.0: enabling Extended Tags
[    0.224333] SGI XFS with ACLs, security attributes, quota, no debug enabled
[    0.237471] ACPI: \_SB_.LNKD: Enabled at IRQ 11
[    0.245472] IPI shorthand broadcast: enabled
[    2.988137] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    3.023532] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    3.096558] VFIO - User Level meta-driver version: 0.3
[    3.500578] ena 0000:00:05.0: Elastic Network Adapter (ENA) v2.16.1g
[    3.512039] ena 0000:00:05.0: ENA device version: 0.10
[    3.512815] ena 0000:00:05.0: ENA controller version: 0.0.1 implementation version 1
[    3.615088] ena 0000:00:05.0: ENA Large LLQ is disabled
[    3.627780] ena 0000:00:05.0: Elastic Network Adapter (ENA) found at mem c0500000, mac addr 02:ce:cf:17:27:5d
[    3.700041] ena 0000:00:05.0 ens5: renamed from eth0
[  211.391295] pci 0000:00:06.0: enabling Extended Tags
[  211.395471] ena 0000:00:06.0: enabling device (0000 -> 0002)
[  211.409387] ena 0000:00:06.0: ENA device version: 0.10
[  211.410176] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  211.511367] ena 0000:00:06.0: ENA Large LLQ is disabled
[  211.524162] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:04:d5:f9:99:ad
[  211.532127] ena 0000:00:06.0 ens6: renamed from eth0
[  291.626813] vfio-pci 0000:00:06.0: Adding to iommu group 0
[  291.628316] 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-21T12:38:26Z
hostname: ip-10-0-1-155.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:bb:72:1c:71:15 brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-04aefeaa2820060e1
    altname device-number-0.0
    inet 10.0.1.155/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 3309sec preferred_lft 3309sec
    inet6 fe80::bb:72ff:fe1c:7115/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever

=== ARP TABLE ===
10.0.1.104 dev ens5 lladdr 02:9c:c2:90:e3:b5 REACHABLE 
10.0.1.41 dev ens5 lladdr 02:9f:0f:0a:bc:05 REACHABLE 
10.0.1.1 dev ens5 lladdr 02:99:28:b2:33:af REACHABLE 

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

=== IMDS: ENI INFORMATION ===
ENI MACs found: 02:bb:72:1c:71:15/ 02:e7:7c:05:8c:37/ 

--- ENI: 02:bb:72:1c:71:15/ ---
  device-number: 0
  local-ipv4s: 10.0.1.155
  subnet-id: subnet-0b97ba8130e786879
  subnet-cidr: 10.0.1.0/24

--- ENI: 02:e7:7c:05:8c:37/ ---
  device-number: 1
  local-ipv4s: 10.0.1.74
  subnet-id: subnet-0b97ba8130e786879
  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:99:28:b2:33:af REACHABLE 

arping result:
ARPING 10.0.1.1 from 10.0.1.155 ens5
Unicast reply from 10.0.1.1 [02:99:28:B2:33:AF]  0.541ms
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 12:38 .
drwxr-xr-x. 14 root root     3100 May 21 12:37 ..
crw-------.  1 root root 243,   0 May 21 12:38 noiommu-0
crw-rw-rw-.  1 root root  10, 196 May 21 12:33 vfio

noiommu mode:
Y

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

=== DPDK-RELATED DMESG (last 30 lines) ===
[    0.053004] printk: legacy console [ttyS0] enabled
[    0.054132] x2apic enabled
[    0.058852] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
[    0.058967] x86/fpu: Enabled xstate features 0x2ff, context size is 2568 bytes, using 'compacted' format.
[    0.068582] audit: type=2000 audit(1779366810.149:1): state=initialized audit_enabled=0 res=1
[    0.079117] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.130144] ACPI: Interpreter enabled
[    0.130144] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.144356] pci 0000:00:05.0: enabling Extended Tags
[    0.224077] SGI XFS with ACLs, security attributes, quota, no debug enabled
[    0.229514] ACPI: \_SB_.LNKD: Enabled at IRQ 11
[    0.235410] IPI shorthand broadcast: enabled
[    3.415920] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    3.452443] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    3.512598] VFIO - User Level meta-driver version: 0.3
[    3.934835] ena 0000:00:05.0: Elastic Network Adapter (ENA) v2.16.1g
[    3.945742] ena 0000:00:05.0: ENA device version: 0.10
[    3.946487] ena 0000:00:05.0: ENA controller version: 0.0.1 implementation version 1
[    4.055067] ena 0000:00:05.0: ENA Large LLQ is disabled
[    4.067680] ena 0000:00:05.0: Elastic Network Adapter (ENA) found at mem c0500000, mac addr 02:bb:72:1c:71:15
[    4.105597] ena 0000:00:05.0 ens5: renamed from eth0
[  250.966867] pci 0000:00:06.0: enabling Extended Tags
[  250.971092] ena 0000:00:06.0: enabling device (0000 -> 0002)
[  250.984087] ena 0000:00:06.0: ENA device version: 0.10
[  250.984860] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  251.086054] ena 0000:00:06.0: ENA Large LLQ is disabled
[  251.098756] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:e7:7c:05:8c:37
[  251.106296] ena 0000:00:06.0 ens6: renamed from eth0
[  284.425629] vfio-pci 0000:00:06.0: Adding to iommu group 0
[  284.427113] 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.069471] pid_max: default: 32768 minimum: 301
[    0.153636] iommu: Default domain type: Translated
[    0.153665] NetLabel:  unlabeled traffic allowed by default
[    0.197967] PCI: CLS 0 bytes, default 64
[    0.259989] nvme nvme0: 2/0/0 default/read/poll queues
[    0.421621] 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.421746] systemd[1]: No hostname configured, using default hostname.
[    0.480539] systemd[1]: Queued start job for default target initrd.target.
[    2.139669] 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)
[  328.325640] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:4448)
[  511.924036] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:4883)
[ 1102.839139] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:6050)

sender-dmesg-crashes.log

[    0.067897] pid_max: default: 32768 minimum: 301
[    0.148332] iommu: Default domain type: Translated
[    0.158650] NetLabel:  unlabeled traffic allowed by default
[    0.194846] PCI: CLS 0 bytes, default 64
[    0.242577] nvme nvme0: 2/0/0 default/read/poll queues
[    0.416716] 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.416846] systemd[1]: No hostname configured, using default hostname.
[    0.478578] systemd[1]: Queued start job for default target initrd.target.
[    2.571505] 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)
[  923.879802] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:5683)
Kernel Console (dmesg)

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

[  328.324015] vfio-pci 0000:00:06.0: reset done
[  328.325640] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:4448)
[  328.327111] vfio-pci 0000:00:06.0: resetting
[  328.543874] vfio-pci 0000:00:06.0: reset done
[  407.857905] vfio-pci 0000:00:06.0: Removing from iommu group 0
[  408.870987] ena 0000:00:06.0: ENA device version: 0.10
[  408.871791] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  408.971726] ena 0000:00:06.0: ENA Large LLQ is disabled
[  408.983555] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:04:d5:f9:99:ad
[  408.992415] ena 0000:00:06.0 ens6: renamed from eth0
[  428.616837] vfio-pci 0000:00:06.0: Adding to iommu group 0
[  428.618248] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[  511.705956] vfio-pci 0000:00:06.0: resetting
[  511.922482] vfio-pci 0000:00:06.0: reset done
[  511.924036] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:4883)
[  511.925458] vfio-pci 0000:00:06.0: resetting
[  512.142331] vfio-pci 0000:00:06.0: reset done
[  586.032587] vfio-pci 0000:00:06.0: Removing from iommu group 0
[  587.045646] ena 0000:00:06.0: ENA device version: 0.10
[  587.046423] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  587.147635] ena 0000:00:06.0: ENA Large LLQ is disabled
[  587.160282] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:04:d5:f9:99:ad
[  587.171440] ena 0000:00:06.0 ens6: renamed from eth0 (while UP)
[ 1023.442786] vfio-pci 0000:00:06.0: Adding to iommu group 0
[ 1023.444212] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[ 1102.616642] vfio-pci 0000:00:06.0: resetting
[ 1102.837507] vfio-pci 0000:00:06.0: reset done
[ 1102.839139] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:6050)
[ 1102.840580] vfio-pci 0000:00:06.0: resetting
[ 1103.067414] vfio-pci 0000:00:06.0: reset done

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

[  923.881286] vfio-pci 0000:00:06.0: resetting
[  924.098133] vfio-pci 0000:00:06.0: reset done
[  985.800173] vfio-pci 0000:00:06.0: Removing from iommu group 0
[  986.813177] ena 0000:00:06.0: ENA device version: 0.10
[  986.813961] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  986.906435] ena 0000:00:06.0: ENA Large LLQ is disabled
[  986.918297] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:e7:7c:05:8c:37
[  986.929548] ena 0000:00:06.0 ens6: renamed from eth0 (while UP)
[ 1016.280291] vfio-pci 0000:00:06.0: Adding to iommu group 0
[ 1016.281790] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[ 1117.993025] vfio-pci 0000:00:06.0: resetting
[ 1118.217731] vfio-pci 0000:00:06.0: reset done
[ 1118.219328] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:6124)
[ 1118.221015] vfio-pci 0000:00:06.0: resetting
[ 1118.437599] vfio-pci 0000:00:06.0: reset done
[ 1118.715852] vfio-pci 0000:00:06.0: resetting
[ 1118.937615] vfio-pci 0000:00:06.0: reset done
[ 1118.939218] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:6144)
[ 1118.940895] vfio-pci 0000:00:06.0: resetting
[ 1119.157537] vfio-pci 0000:00:06.0: reset done
[ 1120.437836] vfio-pci 0000:00:06.0: resetting
[ 1120.647585] vfio-pci 0000:00:06.0: reset done
[ 1120.649201] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:6167)
[ 1120.650890] vfio-pci 0000:00:06.0: resetting
[ 1120.867592] vfio-pci 0000:00:06.0: reset done
[ 1122.147574] vfio-pci 0000:00:06.0: resetting
[ 1122.367619] vfio-pci 0000:00:06.0: reset done
[ 1122.369231] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:6190)
[ 1122.370911] vfio-pci 0000:00:06.0: resetting
[ 1122.587562] 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-05e5062c2c759f231 (10.0.1.106)
  • DUT: i-0a3a381713990f5e1 (10.0.1.80)
  • 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:f4:47:7e:03:89
  • RX: 0000:00:07.0 MAC: 02:94:78:71:7d:e9
  • Gateway MAC: 02:72:3c:c1:87:71
    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-0a3a381713990f5e1 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:f4:47:7e:03:89
  Port 1: 02:94:78:71:7d:e9
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:f4:47:7e:03:89

--- Packet size: 64B ---
  Target: 70,000 pps ... TX: 70,000 pps, RX: 69,000 pps, Drop: 1.4285%, Lat avg: 163.0 us
  Target: 140,000 pps ... TX: 140,000 pps, RX: 138,948 pps, Drop: 0.7511%, Lat avg: 236.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 348,914 pps, Drop: 0.3102%, Lat avg: 0.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 416,570 pps, Drop: 40.49%, 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.7144%, Lat avg: 0.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 348,863 pps, Drop: 0.3249%, Lat avg: 0.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 497,205 pps, Drop: 28.9707%, Lat avg: 0.0 us

--- Packet size: 1400B ---
  Target: 70,000 pps ... TX: 70,000 pps, RX: 68,994 pps, Drop: 1.4365%, Lat avg: 175.0 us
  Target: 140,000 pps ... TX: 140,000 pps, RX: 138,995 pps, Drop: 0.7179%, Lat avg: 264.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 348,897 pps, Drop: 0.3152%, Lat avg: 251.0 us
  Target: 700,000 pps ... TX: 476,673 pps, RX: 466,239 pps, Drop: 2.1889%, 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: 36,136 pps, Drop: 48.3779%, Lat avg: 0.0 us
  Target: 140,000 pps ... TX: 78,356 pps, RX: 77,026 pps, Drop: 1.6979%, Lat avg: 0.0 us
  Target: 350,000 pps ... TX: 78,345 pps, RX: 76,952 pps, Drop: 1.7775%, 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:f4:47:7e:03:89
  Port 1: 02:94:78:71:7d:e9
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:f4:47:7e:03:89

--- 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: 225.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 349,000 pps, Drop: 0.2858%, Lat avg: 0.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 698,383 pps, Drop: 0.2311%, Lat avg: 0.0 us

--- Packet size: 512B ---
  Target: 70,000 pps ... TX: 70,000 pps, RX: 69,000 pps, Drop: 1.4285%, Lat avg: 187.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: 218.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 698,726 pps, Drop: 0.182%, 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,996 pps, Drop: 0.7169%, Lat avg: 266.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 348,973 pps, Drop: 0.2936%, Lat avg: 345.0 us
  Target: 700,000 pps ... TX: 476,290 pps, RX: 475,467 pps, Drop: 0.1728%, 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: 78,358 pps, RX: 77,116 pps, Drop: 1.5854%, Lat avg: 0.0 us
  Target: 350,000 pps ... TX: 78,341 pps, RX: 73,728 pps, Drop: 5.8883%, 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:f4:47:7e:03:89
  Port 1: 02:94:78:71:7d:e9
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:f4:47:7e:03:89

--- 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: 138,999 pps, Drop: 0.7153%, Lat avg: 0.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 326,598 pps, Drop: 6.6862%, Lat avg: 0.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 327,125 pps, Drop: 53.2678%, 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: 236,912 pps, Drop: 32.311%, Lat avg: 0.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 235,463 pps, Drop: 66.3625%, 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: 151,262 pps, Drop: 56.7822%, Lat avg: 0.0 us
  Target: 700,000 pps ... TX: 476,432 pps, RX: 160,036 pps, Drop: 66.4095%, 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: 55,343 pps, Drop: 20.9388%, Lat avg: 0.0 us
  Target: 140,000 pps ... TX: 78,312 pps, RX: 58,704 pps, Drop: 25.0375%, Lat avg: 0.0 us
  Target: 350,000 pps ... TX: 78,330 pps, RX: 58,871 pps, Drop: 24.8419%, 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:f4:47:7e:03:89
  Port 1: 02:94:78:71:7d:e9
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:f4:47:7e:03:89

--- Packet size: 64B ---
  Target: 70,000 pps ... TX: 70,000 pps, RX: 69,998 pps, Drop: 0.0024%, Lat avg: 120.0 us
  Target: 140,000 pps ... TX: 140,000 pps, RX: 140,000 pps, Drop: 0.0%, Lat avg: 146.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 349,949 pps, Drop: 0.0146%, Lat avg: 137.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 699,888 pps, Drop: 0.016%, Lat avg: 192.0 us

--- Packet size: 512B ---
  Target: 70,000 pps ... TX: 70,000 pps, RX: 70,000 pps, Drop: 0.0%, Lat avg: 124.0 us
  Target: 140,000 pps ... TX: 140,000 pps, RX: 140,000 pps, Drop: 0.0%, Lat avg: 128.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 349,993 pps, Drop: 0.0019%, Lat avg: 152.0 us
  Target: 700,000 pps ... TX: 700,000 pps, RX: 699,882 pps, Drop: 0.0169%, Lat avg: 200.0 us

--- Packet size: 1400B ---
  Target: 70,000 pps ... TX: 70,000 pps, RX: 70,000 pps, Drop: 0.0%, Lat avg: 127.0 us
  Target: 140,000 pps ... TX: 140,000 pps, RX: 140,000 pps, Drop: 0.0%, Lat avg: 157.0 us
  Target: 350,000 pps ... TX: 350,000 pps, RX: 349,986 pps, Drop: 0.004%, Lat avg: 146.0 us
  Target: 700,000 pps ... TX: 476,661 pps, RX: 472,950 pps, Drop: 0.7784%, Lat avg: 3854.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: 134.0 us
  Target: 140,000 pps ... TX: 78,346 pps, RX: 77,260 pps, Drop: 1.3858%, Lat avg: 14637.0 us
  Target: 350,000 pps ... TX: 78,344 pps, RX: 75,387 pps, Drop: 3.7746%, Lat avg: 14764.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: 113499125      RX-dropped: 0             RX-total: 113499125
  RX-error: 403662
  RX-nombufs: 0             
  TX-packets: 113396051      TX-dropped: 103074        TX-total: 113499125
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 113499125      RX-dropped: 0             RX-total: 113499125
  TX-packets: 113396051      TX-dropped: 103074        TX-total: 113499125
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

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

[13:51:24] INFO Generating markdown summary...

Performance Test Results — unknown

Commit: 60dfc50c
Timestamp: 2026-05-21T13:51:24.689164+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 69,998 0.00% 120.0 8536.0 35.8 35.8
native-dpdk 140,000 140,000 140,000 0.00% 146.0 818.0 71.7 71.7
native-dpdk 350,000 350,000 349,949 0.01% 137.0 3444.0 179.2 179.2
native-dpdk 700,000 700,000 699,888 0.02% 192.0 2063.0 358.4 358.3
rust-dpdk 70,000 70,000 69,000 1.43% 0 30,212 0 0 0.0 0.0 35.8 35.3
rust-dpdk 140,000 140,000 139,000 0.71% 0 41,885 0 0 225.0 0.0 71.7 71.2
rust-dpdk 350,000 350,000 349,000 0.29% 0 32,099 0 0 0.0 0.0 179.2 178.7
rust-dpdk 700,000 700,000 698,383 0.23% 0 41,879 0 0 0.0 0.0 358.4 357.6
tokio-dpdk 70,000 70,000 69,000 1.43% 0 39,524 0 0 0.0 0.0 35.8 38.6
tokio-dpdk 140,000 140,000 138,999 0.72% 0 33,507 0 0 0.0 0.0 71.7 77.8
tokio-dpdk 350,000 350,000 326,598 6.69% 0 23,721 0 0 0.0 0.0 179.2 182.9
tokio-dpdk 700,000 700,000 327,125 53.27% 0 25,377 0 0 0.0 0.0 358.4 183.2
plain-rust 70,000 70,000 69,000 1.43% 163.0 0.0 35.8 35.3
plain-rust 140,000 140,000 138,948 0.75% 236.0 0.0 71.7 71.1
plain-rust 350,000 350,000 348,914 0.31% 0.0 0.0 179.2 178.6
plain-rust 700,000 700,000 416,570 40.49% 0.0 0.0 358.4 213.3

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% 124.0 8832.0 286.7 286.7
native-dpdk 140,000 140,000 140,000 0.00% 128.0 1900.0 573.4 573.4
native-dpdk 350,000 350,000 349,993 0.00% 152.0 3039.0 1433.6 1433.6
native-dpdk 700,000 700,000 699,882 0.02% 200.0 2118.0 2867.2 2866.7
rust-dpdk 70,000 70,000 69,000 1.43% 0 33,974 0 0 187.0 0.0 286.7 282.6
rust-dpdk 140,000 140,000 139,000 0.71% 0 31,965 0 0 0.0 0.0 573.4 569.3
rust-dpdk 350,000 350,000 349,000 0.29% 0 41,886 0 0 218.0 0.0 1433.6 1429.5
rust-dpdk 700,000 700,000 698,726 0.18% 0 31,884 0 0 0.0 0.0 2867.2 2862.0
tokio-dpdk 70,000 70,000 69,000 1.43% 0 33,308 0 0 0.0 0.0 286.7 285.9
tokio-dpdk 140,000 140,000 139,000 0.71% 0 35,835 0 0 0.0 0.0 573.4 576.0
tokio-dpdk 350,000 350,000 236,912 32.31% 0 12,918 0 0 0.0 0.0 1433.6 981.8
tokio-dpdk 700,000 700,000 235,463 66.36% 0 11,936 0 0 0.0 0.0 2867.2 975.8
plain-rust 70,000 70,000 69,000 1.43% 0.0 0.0 286.7 282.6
plain-rust 140,000 140,000 139,000 0.71% 0.0 0.0 573.4 569.3
plain-rust 350,000 350,000 348,863 0.32% 0.0 0.0 1433.6 1428.9
plain-rust 700,000 700,000 497,205 28.97% 0.0 0.0 2867.2 2036.5

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% 127.0 982.0 784.0 784.0
native-dpdk 140,000 140,000 140,000 0.00% 157.0 1529.0 1568.0 1568.0
native-dpdk 350,000 350,000 349,986 0.00% 146.0 3393.0 3920.0 3919.8
native-dpdk 700,000 476,661 472,950 0.78% 3854.0 5646.0 5338.6 5297.0
rust-dpdk 70,000 70,000 69,000 1.43% 0 41,882 0 0 0.0 0.0 784.0 772.8
rust-dpdk 140,000 140,000 138,996 0.72% 0 33,689 0 0 266.0 0.0 1568.0 1556.8
rust-dpdk 350,000 350,000 348,973 0.29% 0 38,409 0 0 345.0 0.0 3920.0 3908.5
rust-dpdk 700,000 476,290 475,467 0.17% 0 25,886 0 0 0.0 0.0 5334.4 5325.2
tokio-dpdk 70,000 70,000 69,000 1.43% 0 38,844 0 0 0.0 0.0 784.0 776.1
tokio-dpdk 140,000 140,000 139,000 0.71% 0 30,671 0 0 0.0 0.0 1568.0 1563.5
tokio-dpdk 350,000 350,000 151,262 56.78% 0 11,473 0 0 0.0 0.0 3920.0 1701.4
tokio-dpdk 700,000 476,432 160,036 66.41% 0 7,367 0 0 0.0 0.0 5336.0 1800.1
plain-rust 70,000 70,000 68,994 1.44% 175.0 0.0 784.0 772.7
plain-rust 140,000 140,000 138,995 0.72% 264.0 0.0 1568.0 1556.7
plain-rust 350,000 350,000 348,897 0.32% 251.0 0.0 3920.0 3907.6
plain-rust 700,000 476,673 466,239 2.19% 0.0 0.0 5338.7 5221.9

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% 134.0 1100.0 4760.0 4760.0
native-dpdk 140,000 78,346 77,260 1.39% 14637.0 15671.0 5327.5 5253.7
native-dpdk 350,000 78,344 75,387 3.77% 14764.0 17819.0 5327.4 5126.3
rust-dpdk 70,000 70,000 69,000 1.43% 0 32,199 0 0 0.0 0.0 4760.0 4692.0
rust-dpdk 140,000 78,358 77,116 1.59% 0 22,613 0 0 0.0 0.0 5328.4 5243.9
rust-dpdk 350,000 78,341 73,728 5.89% 0 6,935 0 0 0.0 0.0 5327.2 5013.5
tokio-dpdk 70,000 70,000 55,343 20.94% 0 4,167 0 0 0.0 0.0 4760.0 3766.0
tokio-dpdk 140,000 78,312 58,704 25.04% 0 14,154 0 0 0.0 0.0 5325.2 3994.7
tokio-dpdk 350,000 78,330 58,871 24.84% 0 5,474 0 0 0.0 0.0 5326.4 4006.1
plain-rust 70,000 70,000 36,136 48.38% 0.0 0.0 4760.0 2457.2
plain-rust 140,000 78,356 77,026 1.70% 0.0 0.0 5328.2 5237.7
plain-rust 350,000 78,345 76,952 1.78% 0.0 0.0 5327.4 5232.8

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 403,654 / 403,654 / 0 0 / 0 / 0
tokio-dpdk OK 0 / 0 / 0 272,406 / 272,406 / 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

Append performance test results from GH Actions run 26227356354
(Graviton, TRex). No regressions detected — IPv6 fallback path adds
zero overhead to IPv4 traffic.

Mark IPv6 sub-task #2 (UDP over IPv6 checksum) as complete in the
README roadmap.
@gspivey gspivey merged commit 16021fd into development May 21, 2026
5 checks passed
@github-actions
Copy link
Copy Markdown

Synthetic Performance Results (run)

Commit: acb42f29

✅ 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 10.8M 1.1x 92
RX recv_from 64B 3.4M 4.4M 0.8x 226
TX send_to 1400B 1.6M 1.6M 1.0x 616
RX recv_from 1400B 951.7K 1.0M 0.9x 991

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-0da18d769ea7edf60 (DPDK ENI: 10.0.1.69)
  • Receiver: i-03aefa95492eff83b (DPDK ENI: 10.0.1.163)
  • Both instances SSM-ready.

@github-actions
Copy link
Copy Markdown

[CI] Stage: Deploy

Infrastructure ready.

  • Sender: i-0ec225eaeaaa60199 (DPDK ENI: 10.0.1.40)
  • Receiver: i-0bf986f1c581d266f (DPDK ENI: 10.0.1.191)
  • 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: 61/merge | Commit: acb42f29

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.163:9000 (MAC: 02:72:bc:42:c5:15)
echo listening on 10.0.1.163: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.69:9000 (MAC: 02:55:4a:5b:a1:4b)
echo listening on 10.0.1.69: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.163:9000: 'arp-probe #1'
Test complete
[2026-05-21T14:05:23Z] INFO: ARP resolution succeeded (got response from peer)
[2026-05-21T14:05:23Z] INFO: Test: udp_send_receive
[2026-05-21T14:05:24Z] INFO: UDP send/receive succeeded
[2026-05-21T14:05:24Z] INFO: Test: echo_roundtrip
[2026-05-21T14:05:25Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-05-21T14:05:25Z] INFO: Test: payload_integrity
[2026-05-21T14:05:25Z] INFO: Response received, checking payload match...
[2026-05-21T14:05:25Z] INFO: Payload integrity verified (found in response)
[2026-05-21T14:05:25Z] INFO: JUnit XML written to: /tmp/test-results/tier2-kernel-interop.xml
[2026-05-21T14:05:25Z] INFO: Tier 2 sender tests complete. Results: /tmp/test-results/tier2-kernel-interop.xml

@github-actions
Copy link
Copy Markdown

✅ Integration Tests Passed (Run 26230326969)

Branch: 61/merge | Commit: acb42f29

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.191:9000 (MAC: 02:17:7c:e6:6b:37)
echo listening on 10.0.1.191: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.40:9000 (MAC: 02:ad:a7:9a:71:35)
echo listening on 10.0.1.40: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.191:9000: 'arp-probe #1'
Test complete
[2026-05-21T14:05:18Z] INFO: ARP resolution succeeded (got response from peer)
[2026-05-21T14:05:18Z] INFO: Test: udp_send_receive
[2026-05-21T14:05:19Z] INFO: UDP send/receive succeeded
[2026-05-21T14:05:19Z] INFO: Test: echo_roundtrip
[2026-05-21T14:05:20Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-05-21T14:05:20Z] INFO: Test: payload_integrity
[2026-05-21T14:05:20Z] INFO: Response received, checking payload match...
[2026-05-21T14:05:20Z] INFO: Payload integrity verified (found in response)
[2026-05-21T14:05:20Z] INFO: JUnit XML written to: /tmp/test-results/tier2-kernel-interop.xml
[2026-05-21T14:05:20Z] INFO: Tier 2 sender tests complete. Results: /tmp/test-results/tier2-kernel-interop.xml

receiver-test-client-iperf.log

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

sender-test-client-iperf.log

Received 30 bytes from 10.0.1.191:9000: 'dpdk-to-kernel-test-payload #3'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #4'
Received 30 bytes from 10.0.1.191:9000: 'dpdk-to-kernel-test-payload #4'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #5'
Received 30 bytes from 10.0.1.191:9000: 'dpdk-to-kernel-test-payload #5'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #6'
Received 30 bytes from 10.0.1.191:9000: 'dpdk-to-kernel-test-payload #6'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #7'
Received 30 bytes from 10.0.1.191:9000: 'dpdk-to-kernel-test-payload #7'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #8'
Received 30 bytes from 10.0.1.191:9000: 'dpdk-to-kernel-test-payload #8'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #9'
Received 30 bytes from 10.0.1.191:9000: 'dpdk-to-kernel-test-payload #9'
Sent 31 bytes: 'dpdk-to-kernel-test-payload #10'
Received 31 bytes from 10.0.1.191:9000: 'dpdk-to-kernel-test-payload #10'
Test complete
[2026-05-21T14:11:18Z] INFO: our-app-sends: sent 10 packets, received 10 responses
[2026-05-21T14:11:18Z] INFO: our-app-sends: PASS (sent >= 5 packets)
[2026-05-21T14:11:18Z] INFO: JUnit XML written to: /tmp/test-results/tier3-our-app-sends.xml
[2026-05-21T14:11:18Z] 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.191:9000 (MAC: 02:17:7c:e6:6b:37)
echo listening on 10.0.1.191: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.40:9000 (MAC: 02:ad:a7:9a:71:35)
echo listening on 10.0.1.40:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-test-client.log

[2026-05-21T14:01:46Z] INFO: Test: arp_resolution
UDP Test Client
Target: 10.0.1.191:9000
Bind address: 10.0.1.40: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.40:32768 (MAC: 02:ad:a7:9a:71:35)
Backend: dpdk
Sending packets...
Sent 12 bytes: 'arp-probe #1'
Received 12 bytes from 10.0.1.191:9000: 'arp-probe #1'
Test complete
[2026-05-21T14:01:47Z] INFO: ARP resolution succeeded (got response from peer)
[2026-05-21T14:01:47Z] INFO: Test: udp_send_receive
[2026-05-21T14:01:48Z] INFO: UDP send/receive succeeded
[2026-05-21T14:01:49Z] INFO: Test: echo_roundtrip
[2026-05-21T14:01:50Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-05-21T14:01:50Z] INFO: Test: payload_integrity
[2026-05-21T14:01:51Z] INFO: Response received, checking payload match...
[2026-05-21T14:01:51Z] INFO: Payload integrity verified (found in response)
[2026-05-21T14:01:51Z] INFO: Test: jumbo_diagnostics
[2026-05-21T14:01:51Z] INFO: === JUMBO FRAME DIAGNOSTICS ===
[2026-05-21T14:01:51Z] INFO: Interface MTU:
  9001
  65536
[2026-05-21T14:01:51Z] INFO:   ens5: MTU=9001
[2026-05-21T14:01:51Z] INFO:   lo: MTU=65536
[2026-05-21T14:01:51Z] 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-21T14:01:51Z] INFO: DPDK port config (from echo server log):
[2026-05-21T14:01:51Z] INFO:   (no MTU info in echo log)
[2026-05-21T14:01:51Z] INFO: === END JUMBO DIAGNOSTICS ===
[2026-05-21T14:01:51Z] INFO: Test: jumbo_echo_8000
[2026-05-21T14:01:52Z] INFO: Jumbo output: UDP Test Client
Target: 10.0.1.191:9000
Bind address: 10.0.1.40: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.40:32768 (MAC: 02:ad:a7:9a:71:35)
Backend: dpdk
Sending packets...
Sent 8000 bytes (binary payload)
Received 8000 bytes from 10.0.1.191:9000 (expected 8000, OK)
Sent 8000 bytes (binary payload)
Received 8000 bytes from 10.0.1.191:9000 (expected 8000, OK)
Sent 8000 bytes (binary payload)
Received 8000 bytes from 10.0.1.191:9000 (expected 8000, OK)
Test complete
[2026-05-21T14:01:52Z] INFO: Jumbo frame echo succeeded: 3/3 responses with correct size
[2026-05-21T14:01:53Z] INFO: JUnit XML written to: /tmp/test-results/tier1-dpdk-echo.xml
[2026-05-21T14:01:53Z] INFO: Tier 1 sender tests complete. Results: /tmp/test-results/tier1-dpdk-echo.xml
[2026-05-21T14:05:18Z] INFO: Test: arp_resolution
UDP Test Client
Target: 10.0.1.191: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.191:9000: 'arp-probe #1'
Test complete
[2026-05-21T14:05:18Z] INFO: ARP resolution succeeded (got response from peer)
[2026-05-21T14:05:18Z] INFO: Test: udp_send_receive
[2026-05-21T14:05:19Z] INFO: UDP send/receive succeeded
[2026-05-21T14:05:19Z] INFO: Test: echo_roundtrip
[2026-05-21T14:05:20Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-05-21T14:05:20Z] INFO: Test: payload_integrity
[2026-05-21T14:05:20Z] INFO: Response received, checking payload match...
[2026-05-21T14:05:20Z] INFO: Payload integrity verified (found in response)
[2026-05-21T14:05:20Z] INFO: JUnit XML written to: /tmp/test-results/tier2-kernel-interop.xml
[2026-05-21T14:05:20Z] INFO: Tier 2 sender tests complete. Results: /tmp/test-results/tier2-kernel-interop.xml

receiver-test-client-iperf.log

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

sender-test-client-iperf.log

[2026-05-21T14:11:16Z] INFO: Pre-flight: checking DPDK state and ARP cache...
[2026-05-21T14:11:16Z] INFO: Local IP: 10.0.1.40, Peer IP: 10.0.1.191, Port: 9000
[2026-05-21T14:11:16Z] INFO: /proc/net/arp contents:
IP address       HW type     Flags       HW address            Mask     Device
10.0.1.40        0x1         0x2         02:ad:a7:9a:71:35     *        ens5
10.0.1.1         0x1         0x2         02:8a:c5:24:59:e9     *        ens5
10.0.1.191       0x1         0x2         02:17:7c:e6:6b:37     *        ens5
10.0.1.224       0x1         0x2         02:03:cc:3a:b0:4b     *        ens5
[2026-05-21T14:11:16Z] INFO: DPDK runtime state:
No /var/run/dpdk/ directory
[2026-05-21T14:11:16Z] INFO: vfio-pci bindings:
0000:00:06.0
bind
module
new_id
remove_id
uevent
unbind
[2026-05-21T14:11:16Z] INFO: Test binary: /opt/dpdk-stdlib/target/release/test-client
-rwxr-xr-x. 2 root root 1908232 May 21 14:00 /opt/dpdk-stdlib/target/release/test-client
[2026-05-21T14:11:16Z] INFO: Launching test-client: /opt/dpdk-stdlib/target/release/test-client --target 10.0.1.191 --port 9000 --bind-ip 10.0.1.40 --count 10 --delay 200
[2026-05-21T14:11:18Z] INFO: Test client output: UDP Test Client
Target: 10.0.1.191:9000
Bind address: 10.0.1.40: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.40:32768 (MAC: 02:ad:a7:9a:71:35)
Backend: dpdk
Sending packets...
Sent 30 bytes: 'dpdk-to-kernel-test-payload #1'
Received 30 bytes from 10.0.1.191:9000: 'dpdk-to-kernel-test-payload #1'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #2'
Received 30 bytes from 10.0.1.191:9000: 'dpdk-to-kernel-test-payload #2'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #3'
Received 30 bytes from 10.0.1.191:9000: 'dpdk-to-kernel-test-payload #3'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #4'
Received 30 bytes from 10.0.1.191:9000: 'dpdk-to-kernel-test-payload #4'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #5'
Received 30 bytes from 10.0.1.191:9000: 'dpdk-to-kernel-test-payload #5'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #6'
Received 30 bytes from 10.0.1.191:9000: 'dpdk-to-kernel-test-payload #6'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #7'
Received 30 bytes from 10.0.1.191:9000: 'dpdk-to-kernel-test-payload #7'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #8'
Received 30 bytes from 10.0.1.191:9000: 'dpdk-to-kernel-test-payload #8'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #9'
Received 30 bytes from 10.0.1.191:9000: 'dpdk-to-kernel-test-payload #9'
Sent 31 bytes: 'dpdk-to-kernel-test-payload #10'
Received 31 bytes from 10.0.1.191:9000: 'dpdk-to-kernel-test-payload #10'
Test complete
[2026-05-21T14:11:18Z] INFO: our-app-sends: sent 10 packets, received 10 responses
[2026-05-21T14:11:18Z] INFO: our-app-sends: PASS (sent >= 5 packets)
[2026-05-21T14:11:18Z] INFO: JUnit XML written to: /tmp/test-results/tier3-our-app-sends.xml
[2026-05-21T14:11:18Z] INFO: our-app-sends test complete
⚠️ SSM Command Failures (receiver-ssm-failure.log)
=== Polling timeout after 30s ===
Status: InProgress
Instance: i-0bf986f1c581d266f (receiver)
Command ID: a27aa606-2fa6-4adc-adc2-5ca219d422da

=== STDOUT ===


=== STDERR ===


=== Polling timeout after 30s ===
Status: InProgress
Instance: i-0bf986f1c581d266f (receiver)
Command ID: 2c78182c-fad4-4eba-ac01-cd96323684cb

=== STDOUT ===


=== STDERR ===


=== Polling timeout after 30s ===
Status: InProgress
Instance: i-0bf986f1c581d266f (receiver)
Command ID: fb03a83c-2de1-418d-bc11-fcbb3012d7b2

=== STDOUT ===


=== STDERR ===


=== Polling timeout after 30s ===
Status: InProgress
Instance: i-0bf986f1c581d266f (receiver)
Command ID: e7fe4198-dc99-4385-ba44-1a472b35bfc5

=== STDOUT ===


=== STDERR ===


⚠️ SSM Command Failures (sender-ssm-failure.log)
=== Polling timeout after 30s ===
Status: InProgress
Instance: i-0ec225eaeaaa60199 (sender)
Command ID: c5413963-4100-44de-a0f0-1fcbffd17dd8

=== 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:09:33:be:b3:03 brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-0349ee914d02220de
    altname device-number-0.0
    inet 10.0.1.121/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 2353sec preferred_lft 2353sec
    inet6 fe80::9:33ff:febe:b303/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:ed:b1:65:0e:f1 brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-0204890bff97e33ce
    altname device-number-0.0
    inet 10.0.1.155/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 2372sec preferred_lft 2372sec
    inet6 fe80::ed:b1ff:fe65:ef1/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever

receiver-networking-diag-baseline.txt

=== NETWORKING DIAGNOSTICS ===
timestamp: 2026-05-21T14:01:07Z
hostname: ip-10-0-1-121.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:09:33:be:b3:03 brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-0349ee914d02220de
    altname device-number-0.0
    inet 10.0.1.121/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 3325sec preferred_lft 3325sec
    inet6 fe80::9:33ff:febe:b303/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever

=== ARP TABLE ===
10.0.1.224 dev ens5 lladdr 02:03:cc:3a:b0:4b REACHABLE 
10.0.1.1 dev ens5 lladdr 02:8a:c5:24:59:e9 REACHABLE 
10.0.1.144 dev ens5 lladdr 02:c0:37:a8:f9:09 REACHABLE 

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

=== IMDS: ENI INFORMATION ===
ENI MACs found: 02:09:33:be:b3:03/ 02:17:7c:e6:6b:37/ 

--- ENI: 02:09:33:be:b3:03/ ---
  device-number: 0
  local-ipv4s: 10.0.1.121
  subnet-id: subnet-006b3c1ade03b6a00
  subnet-cidr: 10.0.1.0/24

--- ENI: 02:17:7c:e6:6b:37/ ---
  device-number: 1
  local-ipv4s: 10.0.1.191
  subnet-id: subnet-006b3c1ade03b6a00
  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:8a:c5:24:59:e9 REACHABLE 

arping result:
ARPING 10.0.1.1 from 10.0.1.121 ens5
Unicast reply from 10.0.1.1 [02:8A:C5:24:59:E9]  0.532ms
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 14:00 .
drwxr-xr-x. 14 root root     3100 May 21 14:00 ..
crw-------.  1 root root 243,   0 May 21 14:00 noiommu-0
crw-rw-rw-.  1 root root  10, 196 May 21 13:56 vfio

noiommu mode:
Y

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

=== DPDK-RELATED DMESG (last 30 lines) ===
[    0.052062] printk: legacy console [ttyS0] enabled
[    0.053158] x2apic enabled
[    0.057841] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
[    0.057955] x86/fpu: Enabled xstate features 0x2ff, context size is 2568 bytes, using 'compacted' format.
[    0.067533] audit: type=2000 audit(1779371786.354:1): state=initialized audit_enabled=0 res=1
[    0.077691] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.128319] ACPI: Interpreter enabled
[    0.128319] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.146616] pci 0000:00:05.0: enabling Extended Tags
[    0.213819] SGI XFS with ACLs, security attributes, quota, no debug enabled
[    0.219088] ACPI: \_SB_.LNKD: Enabled at IRQ 11
[    0.235087] IPI shorthand broadcast: enabled
[    4.576095] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    4.613526] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    4.670377] VFIO - User Level meta-driver version: 0.3
[    5.045672] ena 0000:00:05.0: Elastic Network Adapter (ENA) v2.16.1g
[    5.055339] ena 0000:00:05.0: ENA device version: 0.10
[    5.056097] ena 0000:00:05.0: ENA controller version: 0.0.1 implementation version 1
[    5.170067] ena 0000:00:05.0: ENA Large LLQ is disabled
[    5.182680] ena 0000:00:05.0: Elastic Network Adapter (ENA) found at mem c0500000, mac addr 02:09:33:be:b3:03
[    5.220595] ena 0000:00:05.0 ens5: renamed from eth0
[  231.056076] pci 0000:00:06.0: enabling Extended Tags
[  231.060135] ena 0000:00:06.0: enabling device (0000 -> 0002)
[  231.072157] ena 0000:00:06.0: ENA device version: 0.10
[  231.072907] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  231.172139] ena 0000:00:06.0: ENA Large LLQ is disabled
[  231.184028] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:17:7c:e6:6b:37
[  231.191223] ena 0000:00:06.0 ens6: renamed from eth0
[  268.166164] vfio-pci 0000:00:06.0: Adding to iommu group 0
[  268.167603] 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-21T14:01:00Z
hostname: ip-10-0-1-155.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:ed:b1:65:0e:f1 brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-0204890bff97e33ce
    altname device-number-0.0
    inet 10.0.1.155/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 3330sec preferred_lft 3330sec
    inet6 fe80::ed:b1ff:fe65:ef1/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever

=== ARP TABLE ===
10.0.1.1 dev ens5 lladdr 02:8a:c5:24:59:e9 REACHABLE 
10.0.1.144 dev ens5 lladdr 02:c0:37:a8:f9:09 STALE 
10.0.1.224 dev ens5 lladdr 02:03:cc:3a:b0:4b REACHABLE 

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

=== IMDS: ENI INFORMATION ===
ENI MACs found: 02:ad:a7:9a:71:35/ 02:ed:b1:65:0e:f1/ 

--- ENI: 02:ad:a7:9a:71:35/ ---
  device-number: 1
  local-ipv4s: 10.0.1.40
  subnet-id: subnet-006b3c1ade03b6a00
  subnet-cidr: 10.0.1.0/24

--- ENI: 02:ed:b1:65:0e:f1/ ---
  device-number: 0
  local-ipv4s: 10.0.1.155
  subnet-id: subnet-006b3c1ade03b6a00
  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:8a:c5:24:59:e9 REACHABLE 

arping result:
ARPING 10.0.1.1 from 10.0.1.155 ens5
Unicast reply from 10.0.1.1 [02:8A:C5:24:59:E9]  0.535ms
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 14:00 .
drwxr-xr-x. 14 root root     3100 May 21 14:00 ..
crw-------.  1 root root 243,   0 May 21 14:00 noiommu-0
crw-rw-rw-.  1 root root  10, 196 May 21 13:56 vfio

noiommu mode:
Y

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

=== DPDK-RELATED DMESG (last 30 lines) ===
[    0.053931] printk: legacy console [ttyS0] enabled
[    0.055037] x2apic enabled
[    0.059723] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
[    0.059837] x86/fpu: Enabled xstate features 0x2ff, context size is 2568 bytes, using 'compacted' format.
[    0.069431] audit: type=2000 audit(1779371784.908:1): state=initialized audit_enabled=0 res=1
[    0.079376] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.139056] ACPI: Interpreter enabled
[    0.139203] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.147160] pci 0000:00:05.0: enabling Extended Tags
[    0.214001] SGI XFS with ACLs, security attributes, quota, no debug enabled
[    0.219287] ACPI: \_SB_.LNKD: Enabled at IRQ 11
[    0.225268] IPI shorthand broadcast: enabled
[    2.735470] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    2.768727] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    2.837502] VFIO - User Level meta-driver version: 0.3
[    3.310985] ena 0000:00:05.0: Elastic Network Adapter (ENA) v2.16.1g
[    3.324365] ena 0000:00:05.0: ENA device version: 0.10
[    3.325193] ena 0000:00:05.0: ENA controller version: 0.0.1 implementation version 1
[    3.426919] ena 0000:00:05.0: ENA Large LLQ is disabled
[    3.438682] ena 0000:00:05.0: Elastic Network Adapter (ENA) found at mem c0500000, mac addr 02:ed:b1:65:0e:f1
[    3.520808] ena 0000:00:05.0 ens5: renamed from eth0
[  231.151730] pci 0000:00:06.0: enabling Extended Tags
[  231.156673] ena 0000:00:06.0: enabling device (0000 -> 0002)
[  231.169383] ena 0000:00:06.0: ENA device version: 0.10
[  231.170149] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  231.271332] ena 0000:00:06.0: ENA Large LLQ is disabled
[  231.284043] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:ad:a7:9a:71:35
[  231.291429] ena 0000:00:06.0 ens6: renamed from eth0
[  262.989985] vfio-pci 0000:00:06.0: Adding to iommu group 0
[  262.991445] 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.066905] pid_max: default: 32768 minimum: 301
[    0.150511] iommu: Default domain type: Translated
[    0.150537] NetLabel:  unlabeled traffic allowed by default
[    0.189000] PCI: CLS 0 bytes, default 64
[    0.248658] nvme nvme0: 2/0/0 default/read/poll queues
[    0.400753] 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.400875] systemd[1]: No hostname configured, using default hostname.
[    0.462920] systemd[1]: Queued start job for default target initrd.target.
[    3.846388] 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)
[  304.454356] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:4370)
[  516.761656] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:4859)
[ 1117.363857] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:6017)

sender-dmesg-crashes.log

[    0.068787] pid_max: default: 32768 minimum: 301
[    0.151073] iommu: Default domain type: Translated
[    0.156574] NetLabel:  unlabeled traffic allowed by default
[    0.192571] PCI: CLS 0 bytes, default 64
[    0.229858] nvme nvme0: 2/0/0 default/read/poll queues
[    0.425546] 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.425639] systemd[1]: No hostname configured, using default hostname.
[    0.479525] systemd[1]: Queued start job for default target initrd.target.
[    1.970421] 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)
[  935.249788] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:5614)
Kernel Console (dmesg)

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

[  304.452823] vfio-pci 0000:00:06.0: reset done
[  304.454356] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:4370)
[  304.455819] vfio-pci 0000:00:06.0: resetting
[  304.672679] vfio-pci 0000:00:06.0: reset done
[  383.946097] vfio-pci 0000:00:06.0: Removing from iommu group 0
[  384.959417] ena 0000:00:06.0: ENA device version: 0.10
[  384.960182] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  385.060143] ena 0000:00:06.0: ENA Large LLQ is disabled
[  385.071923] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:17:7c:e6:6b:37
[  385.080428] ena 0000:00:06.0 ens6: renamed from eth0
[  404.624124] vfio-pci 0000:00:06.0: Adding to iommu group 0
[  404.625372] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[  516.542077] vfio-pci 0000:00:06.0: resetting
[  516.760070] vfio-pci 0000:00:06.0: reset done
[  516.761656] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:4859)
[  516.763122] vfio-pci 0000:00:06.0: resetting
[  516.979968] vfio-pci 0000:00:06.0: reset done
[  590.722442] vfio-pci 0000:00:06.0: Removing from iommu group 0
[  591.735324] ena 0000:00:06.0: ENA device version: 0.10
[  591.736079] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  591.837255] ena 0000:00:06.0: ENA Large LLQ is disabled
[  591.849289] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:17:7c:e6:6b:37
[  591.857418] ena 0000:00:06.0 ens6: renamed from eth0
[ 1032.245490] vfio-pci 0000:00:06.0: Adding to iommu group 0
[ 1032.246925] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[ 1117.151017] vfio-pci 0000:00:06.0: resetting
[ 1117.362276] vfio-pci 0000:00:06.0: reset done
[ 1117.363857] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:6017)
[ 1117.365340] vfio-pci 0000:00:06.0: resetting
[ 1117.582131] vfio-pci 0000:00:06.0: reset done

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

[  935.251265] vfio-pci 0000:00:06.0: resetting
[  935.468042] vfio-pci 0000:00:06.0: reset done
[  996.695838] vfio-pci 0000:00:06.0: Removing from iommu group 0
[  997.706009] ena 0000:00:06.0: ENA device version: 0.10
[  997.706772] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  997.805983] ena 0000:00:06.0: ENA Large LLQ is disabled
[  997.817744] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:ad:a7:9a:71:35
[  997.828686] ena 0000:00:06.0 ens6: renamed from eth0 (while UP)
[ 1027.089445] vfio-pci 0000:00:06.0: Adding to iommu group 0
[ 1027.090883] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[ 1134.445123] vfio-pci 0000:00:06.0: resetting
[ 1134.666356] vfio-pci 0000:00:06.0: reset done
[ 1134.667943] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:6054)
[ 1134.669598] vfio-pci 0000:00:06.0: resetting
[ 1134.886231] vfio-pci 0000:00:06.0: reset done
[ 1135.164350] vfio-pci 0000:00:06.0: resetting
[ 1135.396237] vfio-pci 0000:00:06.0: reset done
[ 1135.397839] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:6074)
[ 1135.399537] vfio-pci 0000:00:06.0: resetting
[ 1135.616180] vfio-pci 0000:00:06.0: reset done
[ 1136.906606] vfio-pci 0000:00:06.0: resetting
[ 1137.126250] vfio-pci 0000:00:06.0: reset done
[ 1137.127849] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:6097)
[ 1137.129543] vfio-pci 0000:00:06.0: resetting
[ 1137.346188] vfio-pci 0000:00:06.0: reset done
[ 1138.626940] vfio-pci 0000:00:06.0: resetting
[ 1138.846226] vfio-pci 0000:00:06.0: reset done
[ 1138.847823] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:6120)
[ 1138.849483] vfio-pci 0000:00:06.0: resetting
[ 1139.066166] vfio-pci 0000:00:06.0: reset done

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