Skip to content

feat(ci): self-contained integration summary comment (real-vs-infra classification)#112

Closed
gspivey wants to merge 1 commit into
developmentfrom
agent/integ-summary-report
Closed

feat(ci): self-contained integration summary comment (real-vs-infra classification)#112
gspivey wants to merge 1 commit into
developmentfrom
agent/integ-summary-report

Conversation

@gspivey

@gspivey gspivey commented Jul 2, 2026

Copy link
Copy Markdown
Owner

You shouldn't need my access / artifact-downloads to analyze a run. Today the PR summary shows only per-tier N tests, M failures; to learn which testcase failed, why, or whether it was a real code failure vs an SSM/ENI infra flake, you have to pull the JUnit artifact or dig through collapsed log <details>.

The data already existed (generate_json_summary parses per-testcase messages into summary.json) — it just never reached a comment. This surfaces it.

After

generate_markdown_summary posts a self-contained summary. On the run that prompted this (#111 Graviton) it would have read:

## Integration Tests — ❌ 1 real failure · ⚠️ 2 infra flakes
774e302 · run · 12 tests: 9 ✅ · 1 ❌ real · 2 ⚠️ infra

| Tier | Test | Result | Time | Reason |
| tier1-tcp-echo | bidir_echo  | ✅ pass  |  6s | |
| tier1-tcp-echo | bidir_multi | ❌ real  | 60s | client exited non-zero |
| tier1-tcp-echo-async | setup | ⚠️ infra |  0s | ENI bind failed on receiver |
...
### ❌ Real failures (1) — <detail excerpt>
### ⚠️ Infra flakes (2) — SSM/ENI setup, not code (task #10)

How

  • Per-tier, per-testcase table (result + time + reason) + Real-failures (with detail) + Infra-flakes sections.
  • Classification by JUnit type: real failures = AssertionError (junit_add_failure); synthetic setup failures = ExecutionError (generate_failure_xml), keyword fallback.
  • Report-only (your call): exit-code behavior unchanged; the green/halt-gate logic stays for task chore: building real rust app, leaving github workflows integ enviornment up to introspect #12, which can key off this same classification.
  • Scripts-only (run-integration-tests.sh) — no workflow YAML change (posts via existing post_pr_comment). Verified locally against sample pass/real-fail/infra-fail XMLs.

🤖 Generated with Claude Code

The PR summary comment previously showed only per-tier 'N tests, M failures' —
to see WHICH testcase failed, WHY, or whether it was a real code issue vs an
SSM/ENI infra flake, you had to download the JUnit artifact or dig through
collapsed log <details>.

generate_markdown_summary now emits a self-contained test-results/summary.md
(posted via the existing post_pr_comment) with:
- a verdict separating REAL failures from INFRA flakes,
- a per-tier per-testcase table (result + time + reason),
- a Real-failures section with detail excerpts,
- an Infra-flakes section (SSM/ENI setup, labeled task #10).

Classification uses the JUnit failure type: real tier failures are
type=AssertionError (junit_add_failure); synthetic setup failures are
type=ExecutionError (generate_failure_xml), with a keyword fallback. Report-only
— exit-code behavior unchanged.

Scripts-only, no workflow change. Verified locally against sample
pass/real-fail/infra-fail XMLs.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@github-actions

github-actions Bot commented Jul 2, 2026

Copy link
Copy Markdown

Synthetic Performance Results (run)

Commit: fe4e43a1

✅ 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 [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::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 [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::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 [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::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 [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::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).

IPv4 Baseline

Test Payload Sync PPS Async PPS Ratio (sync/async) Async ns/op
TX send_to 64B 11.7M 11.2M 1.0x 89
RX recv_from 64B 3.5M 4.7M 0.8x 213
TX send_to 1400B 1.8M 1.8M 1.0x 542
RX recv_from 1400B 1.1M 1.2M 0.9x 828

IPv6

Test Payload Sync PPS Async PPS Ratio (sync/async) Async ns/op
TX send_to (IPv6) 64B 9.1M 8.9M 1.0x 112
RX recv_from (IPv6) 64B 4.1M 5.5M 0.7x 182
TX send_to (IPv6) 1400B 3.1M 3.1M 1.0x 326
RX recv_from (IPv6) 1400B 1.2M 1.3M 0.9x 788

IPv6 vs IPv4 Comparison (sync path)

Test Payload IPv4 PPS IPv6 PPS IPv4/IPv6 Ratio
TX send_to (sync) 64B 11.7M 9.1M 1.29x
RX recv_from (sync) 64B 3.5M 4.1M 0.87x
TX send_to (sync) 1400B 1.8M 3.1M 0.59x
RX recv_from (sync) 1400B 1.1M 1.2M 0.95x

IPv4 avg sync/async ratio: 0.9x, worst: 1.0x | IPv6 vs IPv4 worst ratio: 1.29x (OK)

OK: IPv6 is 28.5% slower than IPv4 — within acceptable threshold (<50%). Expected due to larger headers (40B vs 20B) and mandatory UDP checksum.

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

@github-actions

github-actions Bot commented Jul 2, 2026

Copy link
Copy Markdown

Synthetic Performance Results — Graviton (run)

Commit: fe4e43a1

✅ 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 [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::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 [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::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 [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::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 [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::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).

IPv4 Baseline

Test Payload Sync PPS Async PPS Ratio (sync/async) Async ns/op
TX send_to 64B 10.9M 10.2M 1.1x 97
RX recv_from 64B 3.1M 3.6M 0.9x 277
TX send_to 1400B 1.7M 1.7M 1.0x 604
RX recv_from 1400B 943.1K 990.5K 1.0x 1009

IPv6

Test Payload Sync PPS Async PPS Ratio (sync/async) Async ns/op
TX send_to (IPv6) 64B 8.8M 8.6M 1.0x 115
RX recv_from (IPv6) 64B 3.6M 4.1M 0.9x 245
TX send_to (IPv6) 1400B 2.7M 2.7M 1.0x 371
RX recv_from (IPv6) 1400B 948.3K 978.7K 1.0x 1021

IPv6 vs IPv4 Comparison (sync path)

Test Payload IPv4 PPS IPv6 PPS IPv4/IPv6 Ratio
TX send_to (sync) 64B 10.9M 8.8M 1.23x
RX recv_from (sync) 64B 3.1M 3.6M 0.87x
TX send_to (sync) 1400B 1.7M 2.7M 0.63x
RX recv_from (sync) 1400B 943.1K 948.3K 0.99x

IPv4 avg sync/async ratio: 1.0x, worst: 1.1x | IPv6 vs IPv4 worst ratio: 1.23x (OK)

OK: IPv6 is 22.7% slower than IPv4 — within acceptable threshold (<50%). Expected due to larger headers (40B vs 20B) and mandatory UDP checksum.

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

@github-actions

github-actions Bot commented Jul 2, 2026

Copy link
Copy Markdown

Integration Test Failure — Graviton (Run 28584885170)

Branch: 112/merge | Commit: fe4e43a1a487109a334c6ba23c6a8c735affd987

failure-summary.json

{
  "failed_step": "deploy_infrastructure",
  "error": "Infrastructure deployment failed",
  "exit_code": 2,
  "timestamp": "2026-07-02T11:10:49.498635Z",
  "sender_instance_id": "i-07593469e6a77ec92",
  "receiver_instance_id": "i-015af845d6febe3dc",
  "commit": "fe4e43a1a487109a334c6ba23c6a8c735affd987",
  "run_url": "https://github.com/gspivey/dpdk-stdlib-rust/actions/runs/28584885170"
}```

### receiver-console-output.log (65535 bytes, last 80 lines)

[ 2333.044723] Tainted: G U 6.18.35-68.129.amzn2023.aarch64 #2
[ 2333.045745] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[ 2333.046812] task:bash state:D stack:0 pid:10804 tgid:10804 ppid:10790 task_flags:0x400000 flags:0x00800008
[ 2333.048301] Call trace:
[ 2333.048627] __switch_to+0xf8/0x1c0 (T)
[ 2333.049142] __schedule+0x2f0/0x788
[ 2333.049616] schedule+0x30/0xa8
[ 2333.050036] schedule_preempt_disabled+0x18/0x30
[ 2333.050667] __mutex_lock.constprop.0+0x2fc/0xd10
[ 2333.051300] __mutex_lock_slowpath+0x1c/0x30
[ 2333.051868] mutex_lock+0x50/0x68
[ 2333.052316] device_driver_attach+0x44/0xc0
[ 2333.052890] bind_store+0x80/0xe0
[ 2333.053324] drv_attr_store+0x2c/0x48
[ 2333.053827] sysfs_kf_write+0x60/0x78
[ 2333.054325] kernfs_fop_write_iter+0x144/0x1e0
[ 2333.054923] vfs_write+0x2e0/0x3a8
[ 2333.055379] ksys_write+0x74/0x118
[ 2333.055841] __arm64_sys_write+0x24/0x38
[ 2333.056366] invoke_syscall+0x4c/0xf8
[ 2333.056863] el0_svc_common.constprop.0+0x48/0xf8
[ 2333.057499] do_el0_svc+0x28/0x40
[ 2333.057945] el0_svc+0x40/0x1a0
[ 2333.058360] el0t_64_sync_handler+0xa0/0xe8
[ 2333.058922] el0t_64_sync+0x1b0/0x1b8
[ 2333.059434] INFO: task bash:10804 is blocked on a mutex likely owned by task bash:10561.
[ 2333.060513] task:bash state:S stack:0 pid:10561 tgid:10561 ppid:10548 task_flags:0x400000 flags:0x00800018
[ 2333.062017] Call trace:
[ 2333.062336] __switch_to+0xf8/0x1c0 (T)
[ 2333.062856] __schedule+0x2f0/0x788
[ 2333.063328] schedule+0x30/0xa8
[ 2333.063759] schedule_timeout+0x80/0x120
[ 2333.064276] __wait_for_common+0xe4/0x2b0
[ 2333.064815] wait_for_completion_interruptible_timeout+0x28/0x40
[ 2333.065626] vfio_unregister_group_dev+0xc4/0xf0 [vfio]
[ 2333.066339] vfio_pci_core_unregister_device+0x2c/0x108 [vfio_pci_core]
[ 2333.067233] vfio_pci_remove+0x24/0x48 [vfio_pci]
[ 2333.067874] pci_device_remove+0x4c/0xf8
[ 2333.068405] device_remove+0x54/0x90
[ 2333.068880] device_release_driver_internal+0x1dc/0x240
[ 2333.069587] device_driver_detach+0x20/0x38
[ 2333.070154] unbind_store+0xbc/0xc8
[ 2333.070617] drv_attr_store+0x2c/0x48
[ 2333.071132] sysfs_kf_write+0x60/0x78
[ 2333.071606] kernfs_fop_write_iter+0x144/0x1e0
[ 2333.072208] vfs_write+0x2e0/0x3a8
[ 2333.072673] ksys_write+0x74/0x118
[ 2333.073123] __arm64_sys_write+0x24/0x38
[ 2333.073650] invoke_syscall+0x4c/0xf8
[ 2333.074145] el0_svc_common.constprop.0+0x48/0xf8
[ 2333.074776] do_el0_svc+0x28/0x40
[ 2333.075233] el0_svc+0x40/0x1a0
[ 2333.075646] el0t_64_sync_handler+0xa0/0xe8
[ 2333.076226] el0t_64_sync+0x1b0/0x1b8
[ 2333.076712] Future hung task reports are suppressed, see sysctl kernel.hung_task_warnings
[ 2431.572229] vfio-pci 0000:00:06.0: Relaying device request to user (#90)
[ 2533.973395] vfio-pci 0000:00:06.0: Relaying device request to user (#100)
[ 2636.374574] vfio-pci 0000:00:06.0: Relaying device request to user (#110)
[ 2738.775744] vfio-pci 0000:00:06.0: Relaying device request to user (#120)
[ 2841.176916] vfio-pci 0000:00:06.0: Relaying device request to user (#130)
[ 2943.578074] vfio-pci 0000:00:06.0: Relaying device request to user (#140)
[ 3045.979253] vfio-pci 0000:00:06.0: Relaying device request to user (#150)
[ 3148.380423] vfio-pci 0000:00:06.0: Relaying device request to user (#160)
[ 3250.781592] vfio-pci 0000:00:06.0: Relaying device request to user (#170)
[ 3353.182767] vfio-pci 0000:00:06.0: Relaying device request to user (#180)
[ 3455.583930] vfio-pci 0000:00:06.0: Relaying device request to user (#190)
[ 3557.985103] vfio-pci 0000:00:06.0: Relaying device request to user (#200)
[ 3660.386271] vfio-pci 0000:00:06.0: Relaying device request to user (#210)
[ 3762.787447] vfio-pci 0000:00:06.0: Relaying device request to user (#220)
[ 3865.188619] vfio-pci 0000:00:06.0: Relaying device request to user (#230)
2026/07/02 10:55:20Z: SSM Agent unable to acquire credentials: unexpected error getting instance profile role credentials or calling UpdateInstanceInformation. Skipping default host management fallback: retrieved credentials failed to report to ssm. Error: RequestError: send request failed
caused by: Post "https://ssm.us-east-1.amazonaws.com/": dial tcp 13.220.36.112:443: i/o timeout
[ 3967.589797] vfio-pci 0000:00:06.0: Relaying device request to user (#240)
[ 4069.990961] vfio-pci 0000:00:06.0: Relaying device request to user (#250)
[ 4172.392143] vfio-pci 0000:00:06.0: Relaying device request to user (#260)
[ 4274.793320] vfio-pci 0000:00:06.0: Relaying device request to user (#270)
[ 4377.194492] vfio-pci 0000:00:06.0: Relaying device request to user (#280)
[ 4479.595670] vfio-pci 0000:00:06.0: Relaying device request to user (#290)
[ 4581.996849] vfio-pci 0000:00:06.0: Relaying device request to user (#300)
[ 4684.398019] vfio-pci 0000:00:06.0: Relaying device request to user (#310)


### sender-console-output.log (53711 bytes, last 80 lines)

[ 1276.809427] vfio-pci 0000:00:06.0: reset done
[ 1276.810290] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:10154)
[ 1276.811535] vfio-pci 0000:00:06.0: resetting
[ 1277.029340] vfio-pci 0000:00:06.0: reset done
[ 1278.306766] vfio-pci 0000:00:06.0: resetting
[ 1278.519444] vfio-pci 0000:00:06.0: reset done
[ 1278.520284] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:10177)
[ 1278.521531] vfio-pci 0000:00:06.0: resetting
[ 1278.739408] vfio-pci 0000:00:06.0: reset done
[ 1321.778144] vfio-pci 0000:00:06.0: Removing from iommu group 0
[ 1322.788692] ena 0000:00:06.0: ENA device version: 0.10
[ 1322.789289] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[ 1322.888534] ena 0000:00:06.0: Forcing large headers and decreasing maximum TX queue size to 512
[ 1322.889588] ena 0000:00:06.0: ENA Large LLQ is enabled
[ 1322.900089] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem 8004a000, mac addr 02:c4:f2:0f:6b:d9
[ 1322.903871] ena 0000:00:06.0 ens6: renamed from eth0
[ 1323.058500] zram_generator::config[10339]: zram0: system has too much memory (3806MB), limit is 800MB, ignoring.
[ 1351.085154] zram_generator::config[10518]: zram0: system has too much memory (3806MB), limit is 800MB, ignoring.
[ 1351.972704] vfio-pci 0000:00:06.0: Adding to iommu group 0
[ 1351.973645] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[ 1395.979447] vfio-pci 0000:00:06.0: resetting
[ 1396.190461] vfio-pci 0000:00:06.0: reset done
[ 1396.191311] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tcp-test-client:10572)
[ 1396.192550] vfio-pci 0000:00:06.0: resetting
[ 1396.410370] vfio-pci 0000:00:06.0: reset done
[ 1396.676180] vfio-pci 0000:00:06.0: resetting
[ 1396.890470] vfio-pci 0000:00:06.0: reset done
[ 1396.891335] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tcp-test-client:10592)
[ 1396.892567] vfio-pci 0000:00:06.0: resetting
[ 1397.110364] vfio-pci 0000:00:06.0: reset done
[ 1501.484709] vfio-pci 0000:00:06.0: Removing from iommu group 0
[ 1502.497404] ena 0000:00:06.0: ENA device version: 0.10
[ 1502.497998] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[ 1502.599181] ena 0000:00:06.0: Forcing large headers and decreasing maximum TX queue size to 512
[ 1502.600239] ena 0000:00:06.0: ENA Large LLQ is enabled
[ 1502.611622] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem 8004a000, mac addr 02:c4:f2:0f:6b:d9
[ 1502.616015] ena 0000:00:06.0 ens6: renamed from eth0
[ 1502.821863] zram_generator::config[10806]: zram0: system has too much memory (3806MB), limit is 800MB, ignoring.
[ 1663.732624] zram_generator::config[11135]: zram0: system has too much memory (3806MB), limit is 800MB, ignoring.
[ 1664.635124] vfio-pci 0000:00:06.0: Adding to iommu group 0
[ 1664.636074] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[ 1818.739878] vfio-pci 0000:00:06.0: Removing from iommu group 0
[ 1819.752597] ena 0000:00:06.0: ENA device version: 0.10
[ 1819.753191] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[ 1819.852731] ena 0000:00:06.0: Forcing large headers and decreasing maximum TX queue size to 512
[ 1819.853815] ena 0000:00:06.0: ENA Large LLQ is enabled
[ 1819.864767] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem 8004a000, mac addr 02:c4:f2:0f:6b:d9
[ 1819.868290] ena 0000:00:06.0 ens6: renamed from eth0
[ 1820.019801] zram_generator::config[11341]: zram0: system has too much memory (3806MB), limit is 800MB, ignoring.
[ 2469.317093] zram_generator::config[12351]: zram0: system has too much memory (3806MB), limit is 800MB, ignoring.
[ 2488.699303] kauditd_printk_skb: 119 callbacks suppressed
[ 2488.699307] audit: type=1305 audit(1782988327.708:663): op=set audit_pid=0 old=1718 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1
[ 2488.702659] audit: type=1131 audit(1782988327.708:664): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 2488.705399] audit: type=1131 audit(1782988327.708:665): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 2488.708672] audit: type=1334 audit(1782988327.718:666): prog-id=227 op=UNLOAD
[ 2488.725255] audit: type=1131 audit(1782988327.728:667): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 2488.728146] audit: type=1131 audit(1782988327.728:668): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 2488.731144] audit: type=1131 audit(1782988327.728:669): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 2488.734170] audit: type=1130 audit(1782988327.728:670): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-poweroff comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 2488.737140] audit: type=1131 audit(1782988327.728:671): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-poweroff comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 2488.740094] audit: type=1334 audit(1782988327.728:672): prog-id=219 op=UNLOAD
[ 2488.871362] systemd-shutdown[1]: Syncing filesystems and block devices.
[ 2488.879547] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
[ 2488.882456] systemd-journald[1195]: Received SIGTERM from PID 1 (systemd-shutdow).
[ 2488.887986] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[ 2488.890355] systemd-shutdown[1]: Unmounting file systems.
[ 2488.891572] (sd-remount)[12391]: Remounting '/' read-only with options 'seclabel,inode64,logbufs=8,logbsize=32k,sunit=1024,swidth=1024,noquota'.
[ 2488.913622] systemd-shutdown[1]: All filesystems unmounted.
[ 2488.914277] systemd-shutdown[1]: Deactivating swaps.
[ 2488.914996] systemd-shutdown[1]: All swaps deactivated.
[ 2488.915653] systemd-shutdown[1]: Detaching loop devices.
[ 2488.916709] systemd-shutdown[1]: All loop devices detached.
[ 2488.917339] systemd-shutdown[1]: Stopping MD devices.
[ 2488.918073] systemd-shutdown[1]: All MD devices stopped.
[ 2488.918822] systemd-shutdown[1]: Detaching DM devices.
[ 2488.919470] systemd-shutdown[1]: All DM devices detached.
[ 2488.920164] systemd-shutdown[1]: All filesystems, swaps, loop devices, MD devices and DM devices detached.
[ 2488.922406] systemd-shutdown[1]: Syncing filesystems and block devices.
[ 2488.923192] systemd-shutdown[1]: Powering off.
[ 2489.028856] reboot: Power down


@github-actions

github-actions Bot commented Jul 2, 2026

Copy link
Copy Markdown

❌ Integration Tests Failed — Graviton (run)

Branch: 112/merge | Commit: fe4e43a1

Test Results

Application Logs (last 20 lines)

@github-actions

github-actions Bot commented Jul 2, 2026

Copy link
Copy Markdown

Integration Test Failure (Run 28584885171)

Branch: 112/merge | Commit: fe4e43a1a487109a334c6ba23c6a8c735affd987

failure-summary.json

{
  "failed_step": "deploy_infrastructure",
  "error": "Infrastructure deployment failed",
  "exit_code": 2,
  "timestamp": "2026-07-02T11:10:31.851420Z",
  "sender_instance_id": "i-0a2119f94e88164d4",
  "receiver_instance_id": "i-0f7c72af934d08f8c",
  "commit": "fe4e43a1a487109a334c6ba23c6a8c735affd987",
  "run_url": "https://github.com/gspivey/dpdk-stdlib-rust/actions/runs/28584885171"
}```

### receiver-console-output.log (65535 bytes, last 80 lines)

[ 2332.706117] Tainted: G U 6.18.35-68.129.amzn2023.x86_64 #2
[ 2332.707137] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[ 2332.708211] task:bash state:D stack:0 pid:10802 tgid:10802 ppid:10788 task_flags:0x400000 flags:0x00080001
[ 2332.709693] Call Trace:
[ 2332.710039]
[ 2332.710336] __schedule+0x2da/0x6d0
[ 2332.710802] schedule+0x23/0x80
[ 2332.711231] schedule_preempt_disabled+0x11/0x20
[ 2332.711846] __mutex_lock.constprop.0+0x3a2/0x9d0
[ 2332.712476] ? klist_put+0x1f/0xb0
[ 2332.712936] device_driver_attach+0x36/0xb0
[ 2332.713497] bind_store+0x75/0xc0
[ 2332.713957] kernfs_fop_write_iter+0x138/0x1d0
[ 2332.714554] vfs_write+0x301/0x410
[ 2332.715036] ksys_write+0x61/0xe0
[ 2332.715493] do_syscall_64+0x5d/0x9b0
[ 2332.715980] entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 2332.716642] RIP: 0033:0x7f3edd2ff897
[ 2332.717135] RSP: 002b:00007ffca5900088 EFLAGS: 00000246 ORIG_RAX: 0000000000000001
[ 2332.718154] RAX: ffffffffffffffda RBX: 00007f3edd3fd780 RCX: 00007f3edd2ff897
[ 2332.719118] RDX: 000000000000000d RSI: 0000556264672e90 RDI: 0000000000000001
[ 2332.720088] RBP: 000000000000000d R08: 0000000000000000 R09: 00007f3edd3b2d20
[ 2332.721059] R10: 00007f3edd3b2c20 R11: 0000000000000246 R12: 000000000000000d
[ 2332.722036] R13: 0000556264672e90 R14: 000000000000000d R15: 00007f3edd3f89c0
[ 2332.723002]
[ 2332.723331] INFO: task bash:10802 is blocked on a mutex likely owned by task bash:10556.
[ 2332.724387] task:bash state:S stack:0 pid:10556 tgid:10556 ppid:10544 task_flags:0x400000 flags:0x00080001
[ 2332.725886] Call Trace:
[ 2332.726241]
[ 2332.726540] __schedule+0x2da/0x6d0
[ 2332.727006] schedule+0x23/0x80
[ 2332.727446] schedule_timeout+0x72/0x100
[ 2332.727957] ? __pfx_process_timeout+0x10/0x10
[ 2332.728557] __wait_for_common+0x99/0x1c0
[ 2332.729086] ? __pfx_schedule_timeout+0x10/0x10
[ 2332.729693] vfio_unregister_group_dev+0x94/0xc0 [vfio]
[ 2332.730398] vfio_pci_core_unregister_device+0x18/0x80 [vfio_pci_core]
[ 2332.731287] vfio_pci_remove+0x15/0x20 [vfio_pci]
[ 2332.731920] pci_device_remove+0x3e/0xb0
[ 2332.732455] device_release_driver_internal+0x193/0x200
[ 2332.733161] unbind_store+0x9d/0xb0
[ 2332.733626] kernfs_fop_write_iter+0x138/0x1d0
[ 2332.734242] vfs_write+0x301/0x410
[ 2332.734700] ksys_write+0x61/0xe0
[ 2332.735171] do_syscall_64+0x5d/0x9b0
[ 2332.735659] entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 2332.736324] RIP: 0033:0x7f77bc6ff897
[ 2332.736806] RSP: 002b:00007ffe35fc1618 EFLAGS: 00000246 ORIG_RAX: 0000000000000001
[ 2332.737835] RAX: ffffffffffffffda RBX: 00007f77bc7fd780 RCX: 00007f77bc6ff897
[ 2332.738818] RDX: 000000000000000d RSI: 000056298b4afe90 RDI: 0000000000000001
[ 2332.739768] RBP: 000000000000000d R08: 0000000000000000 R09: 00007f77bc7b2d20
[ 2332.740740] R10: 00007f77bc7b2c20 R11: 0000000000000246 R12: 000000000000000d
[ 2332.741717] R13: 000056298b4afe90 R14: 000000000000000d R15: 00007f77bc7f89c0
[ 2332.742674]
[ 2332.742981] Future hung task reports are suppressed, see sysctl kernel.hung_task_warnings
[ 2431.865749] vfio-pci 0000:00:06.0: Relaying device request to user (#90)
[ 2534.264110] vfio-pci 0000:00:06.0: Relaying device request to user (#100)
[ 2636.662522] vfio-pci 0000:00:06.0: Relaying device request to user (#110)
[ 2739.060982] vfio-pci 0000:00:06.0: Relaying device request to user (#120)
[ 2841.469364] vfio-pci 0000:00:06.0: Relaying device request to user (#130)
[ 2943.857745] vfio-pci 0000:00:06.0: Relaying device request to user (#140)
[ 3046.256110] vfio-pci 0000:00:06.0: Relaying device request to user (#150)
[ 3148.654451] vfio-pci 0000:00:06.0: Relaying device request to user (#160)
[ 3251.052906] vfio-pci 0000:00:06.0: Relaying device request to user (#170)
[ 3353.451366] vfio-pci 0000:00:06.0: Relaying device request to user (#180)
[ 3455.849736] vfio-pci 0000:00:06.0: Relaying device request to user (#190)
[ 3558.248134] vfio-pci 0000:00:06.0: Relaying device request to user (#200)
[ 3660.646619] vfio-pci 0000:00:06.0: Relaying device request to user (#210)
[ 3763.045054] vfio-pci 0000:00:06.0: Relaying device request to user (#220)
[ 3865.443415] vfio-pci 0000:00:06.0: Relaying device request to user (#230)
2026/07/02 10:55:27Z: SSM Agent unable to acquire credentials: unexpected error getting instance profile role credentials or calling UpdateInstanceInformation. Skipping default host management fallback: retrieved credentials failed to report to ssm. Error: RequestError: send request failed
caused by: Post "https://ssm.us-east-1.amazonaws.com/": dial tcp 44.213.79.0:443: i/o timeout
[ 3967.841852] vfio-pci 0000:00:06.0: Relaying device request to user (#240)
[ 4070.250286] vfio-pci 0000:00:06.0: Relaying device request to user (#250)
[ 4172.638712] vfio-pci 0000:00:06.0: Relaying device request to user (#260)
[ 4275.037080] vfio-pci 0000:00:06.0: Relaying device request to user (#270)
[ 4377.435420] vfio-pci 0000:00:06.0: Relaying device request to user (#280)
[ 4479.833801] vfio-pci 0000:00:06.0: Relaying device request to user (#290)
[ 4582.232164] vfio-pci 0000:00:06.0: Relaying device request to user (#300)
[ 4684.630526] vfio-pci 0000:00:06.0: Relaying device request to user (#310)


### sender-console-output.log (52282 bytes, last 80 lines)

[ 1277.560705] vfio-pci 0000:00:06.0: reset done
[ 1278.850920] vfio-pci 0000:00:06.0: resetting
[ 1279.070746] vfio-pci 0000:00:06.0: reset done
[ 1279.072291] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:10026)
[ 1279.073842] vfio-pci 0000:00:06.0: resetting
[ 1279.290702] vfio-pci 0000:00:06.0: reset done
[ 1280.580938] vfio-pci 0000:00:06.0: resetting
[ 1280.810732] vfio-pci 0000:00:06.0: reset done
[ 1280.812300] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:10049)
[ 1280.813883] vfio-pci 0000:00:06.0: resetting
[ 1281.030669] vfio-pci 0000:00:06.0: reset done
[ 1323.813429] vfio-pci 0000:00:06.0: Removing from iommu group 0
[ 1324.826374] ena 0000:00:06.0: ENA device version: 0.10
[ 1324.827133] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[ 1324.928301] ena 0000:00:06.0: ENA Large LLQ is disabled
[ 1324.940617] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:e7:e6:92:ea:d3
[ 1324.948220] ena 0000:00:06.0 ens6: renamed from eth0
[ 1325.050304] zram_generator::config[10211]: zram0: system has too much memory (5023MB), limit is 800MB, ignoring.
[ 1352.730488] zram_generator::config[10443]: zram0: system has too much memory (5023MB), limit is 800MB, ignoring.
[ 1353.591843] vfio-pci 0000:00:06.0: Adding to iommu group 0
[ 1353.593240] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[ 1396.960476] vfio-pci 0000:00:06.0: resetting
[ 1397.179420] vfio-pci 0000:00:06.0: reset done
[ 1397.180956] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tcp-test-client:10493)
[ 1397.182512] vfio-pci 0000:00:06.0: resetting
[ 1397.399291] vfio-pci 0000:00:06.0: reset done
[ 1397.697991] vfio-pci 0000:00:06.0: resetting
[ 1397.929302] vfio-pci 0000:00:06.0: reset done
[ 1397.930852] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tcp-test-client:10513)
[ 1397.932444] vfio-pci 0000:00:06.0: resetting
[ 1398.149255] vfio-pci 0000:00:06.0: reset done
[ 1501.537408] vfio-pci 0000:00:06.0: Removing from iommu group 0
[ 1502.546486] ena 0000:00:06.0: ENA device version: 0.10
[ 1502.547252] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[ 1502.646462] ena 0000:00:06.0: ENA Large LLQ is disabled
[ 1502.659221] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:e7:e6:92:ea:d3
[ 1502.665420] ena 0000:00:06.0 ens6: renamed from eth0
[ 1502.800578] zram_generator::config[10681]: zram0: system has too much memory (5023MB), limit is 800MB, ignoring.
[ 1662.716250] zram_generator::config[11057]: zram0: system has too much memory (5023MB), limit is 800MB, ignoring.
[ 1663.570943] vfio-pci 0000:00:06.0: Adding to iommu group 0
[ 1663.572337] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[ 1816.113283] vfio-pci 0000:00:06.0: Removing from iommu group 0
[ 1817.122697] ena 0000:00:06.0: ENA device version: 0.10
[ 1817.123446] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[ 1817.222667] ena 0000:00:06.0: ENA Large LLQ is disabled
[ 1817.234919] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:e7:e6:92:ea:d3
[ 1817.242386] ena 0000:00:06.0 ens6: renamed from eth0
[ 1817.434109] zram_generator::config[11263]: zram0: system has too much memory (5023MB), limit is 800MB, ignoring.
[ 2458.703286] zram_generator::config[12197]: zram0: system has too much memory (5023MB), limit is 800MB, ignoring.
[ 2473.326991] kauditd_printk_skb: 124 callbacks suppressed
[ 2473.326994] audit: type=1305 audit(1782988312.065:669): op=set audit_pid=0 old=1661 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1
[ 2473.330490] audit: type=1131 audit(1782988312.065:670): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 2473.333385] audit: type=1131 audit(1782988312.065:671): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 2473.383712] audit: type=1131 audit(1782988312.115:672): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 2473.386641] audit: type=1131 audit(1782988312.125:673): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 2473.389601] audit: type=1131 audit(1782988312.125:674): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 2473.393202] audit: type=1130 audit(1782988312.125:675): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-poweroff comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 2473.396092] audit: type=1131 audit(1782988312.125:676): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-poweroff comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 2473.399032] audit: type=1334 audit(1782988312.135:677): prog-id=220 op=UNLOAD
[ 2473.400003] audit: type=1334 audit(1782988312.135:678): prog-id=219 op=UNLOAD
[ 2473.698480] systemd-shutdown[1]: Syncing filesystems and block devices.
[ 2473.718716] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
[ 2473.721760] systemd-journald[1146]: Received SIGTERM from PID 1 (systemd-shutdow).
[ 2473.766297] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[ 2473.768730] systemd-shutdown[1]: Unmounting file systems.
[ 2473.770057] (sd-remount)[12235]: Remounting '/' read-only with options 'seclabel,inode64,logbufs=8,logbsize=32k,sunit=1024,swidth=1024,noquota'.
[ 2473.796088] systemd-shutdown[1]: All filesystems unmounted.
[ 2473.796930] systemd-shutdown[1]: Deactivating swaps.
[ 2473.797692] systemd-shutdown[1]: All swaps deactivated.
[ 2473.798443] systemd-shutdown[1]: Detaching loop devices.
[ 2473.799581] systemd-shutdown[1]: All loop devices detached.
[ 2473.800360] systemd-shutdown[1]: Stopping MD devices.
[ 2473.801122] systemd-shutdown[1]: All MD devices stopped.
[ 2473.801879] systemd-shutdown[1]: Detaching DM devices.
[ 2473.802625] systemd-shutdown[1]: All DM devices detached.
[ 2473.803388] systemd-shutdown[1]: All filesystems, swaps, loop devices, MD devices and DM devices detached.
[ 2473.807098] systemd-shutdown[1]: Syncing filesystems and block devices.
[ 2473.808425] systemd-shutdown[1]: Powering off.
[ 2473.935409] ACPI: PM: Preparing to enter system sleep state S5
[ 2473.936306] reboot: Power down


### All instance-logs files

total 132
drwxr-xr-x 2 runner runner 4096 Jul 2 11:10 .
drwxr-xr-x 21 runner runner 4096 Jul 2 11:10 ..
-rw-r--r-- 1 runner runner 392 Jul 2 11:10 failure-summary.json
-rw-r--r-- 1 runner runner 65535 Jul 2 11:10 receiver-console-output.log
-rw-r--r-- 1 runner runner 334 Jul 2 11:10 receiver-ssm-failure.log
-rw-r--r-- 1 runner runner 52282 Jul 2 11:10 sender-console-output.log

@github-actions

github-actions Bot commented Jul 2, 2026

Copy link
Copy Markdown

❌ Integration Tests Failed (Run 28584885171)

Branch: 112/merge | Commit: fe4e43a1

Test Results

Application Logs (last 20 lines)

Full Application Logs (last 200 lines each)
⚠️ SSM Command Failures (receiver-ssm-failure.log)
=== SSM Command Failed ===
Status: Failed
Instance: i-0f7c72af934d08f8c (receiver)
Command ID: f3f7c5f4-1b76-4f4c-9725-239101074274

=== STDOUT ===


=== STDERR ===


=== SSM Command Failed ===
Status: Failed
Instance: i-0f7c72af934d08f8c (receiver)
Command ID: d8ee7b93-d67c-48e0-b73a-49c05e1426de

=== STDOUT ===


=== STDERR ===


Network & PCI State
Kernel Console (dmesg)

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

[ 2329.467383] vfio-pci 0000:00:06.0: Relaying device request to user (#80)
[ 2332.691991]  vfio_unregister_group_dev+0x94/0xc0 [vfio]
[ 2332.692696]  vfio_pci_core_unregister_device+0x18/0x80 [vfio_pci_core]
[ 2332.693566]  vfio_pci_remove+0x15/0x20 [vfio_pci]
[ 2332.729693]  vfio_unregister_group_dev+0x94/0xc0 [vfio]
[ 2332.730398]  vfio_pci_core_unregister_device+0x18/0x80 [vfio_pci_core]
[ 2332.731287]  vfio_pci_remove+0x15/0x20 [vfio_pci]
[ 2431.865749] vfio-pci 0000:00:06.0: Relaying device request to user (#90)
[ 2534.264110] vfio-pci 0000:00:06.0: Relaying device request to user (#100)
[ 2636.662522] vfio-pci 0000:00:06.0: Relaying device request to user (#110)
[ 2739.060982] vfio-pci 0000:00:06.0: Relaying device request to user (#120)
[ 2841.469364] vfio-pci 0000:00:06.0: Relaying device request to user (#130)
[ 2943.857745] vfio-pci 0000:00:06.0: Relaying device request to user (#140)
[ 3046.256110] vfio-pci 0000:00:06.0: Relaying device request to user (#150)
[ 3148.654451] vfio-pci 0000:00:06.0: Relaying device request to user (#160)
[ 3251.052906] vfio-pci 0000:00:06.0: Relaying device request to user (#170)
[ 3353.451366] vfio-pci 0000:00:06.0: Relaying device request to user (#180)
[ 3455.849736] vfio-pci 0000:00:06.0: Relaying device request to user (#190)
[ 3558.248134] vfio-pci 0000:00:06.0: Relaying device request to user (#200)
[ 3660.646619] vfio-pci 0000:00:06.0: Relaying device request to user (#210)
[ 3763.045054] vfio-pci 0000:00:06.0: Relaying device request to user (#220)
[ 3865.443415] vfio-pci 0000:00:06.0: Relaying device request to user (#230)
[ 3967.841852] vfio-pci 0000:00:06.0: Relaying device request to user (#240)
[ 4070.250286] vfio-pci 0000:00:06.0: Relaying device request to user (#250)
[ 4172.638712] vfio-pci 0000:00:06.0: Relaying device request to user (#260)
[ 4275.037080] vfio-pci 0000:00:06.0: Relaying device request to user (#270)
[ 4377.435420] vfio-pci 0000:00:06.0: Relaying device request to user (#280)
[ 4479.833801] vfio-pci 0000:00:06.0: Relaying device request to user (#290)
[ 4582.232164] vfio-pci 0000:00:06.0: Relaying device request to user (#300)
[ 4684.630526] vfio-pci 0000:00:06.0: Relaying device request to user (#310)

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

[ 1324.827133] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[ 1324.928301] ena 0000:00:06.0: ENA Large LLQ is disabled
[ 1324.940617] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:e7:e6:92:ea:d3
[ 1324.948220] ena 0000:00:06.0 ens6: renamed from eth0
[ 1353.591843] vfio-pci 0000:00:06.0: Adding to iommu group 0
[ 1353.593240] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[ 1396.960476] vfio-pci 0000:00:06.0: resetting
[ 1397.179420] vfio-pci 0000:00:06.0: reset done
[ 1397.180956] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tcp-test-client:10493)
[ 1397.182512] vfio-pci 0000:00:06.0: resetting
[ 1397.399291] vfio-pci 0000:00:06.0: reset done
[ 1397.697991] vfio-pci 0000:00:06.0: resetting
[ 1397.929302] vfio-pci 0000:00:06.0: reset done
[ 1397.930852] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tcp-test-client:10513)
[ 1397.932444] vfio-pci 0000:00:06.0: resetting
[ 1398.149255] vfio-pci 0000:00:06.0: reset done
[ 1501.537408] vfio-pci 0000:00:06.0: Removing from iommu group 0
[ 1502.546486] ena 0000:00:06.0: ENA device version: 0.10
[ 1502.547252] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[ 1502.646462] ena 0000:00:06.0: ENA Large LLQ is disabled
[ 1502.659221] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:e7:e6:92:ea:d3
[ 1502.665420] ena 0000:00:06.0 ens6: renamed from eth0
[ 1663.570943] vfio-pci 0000:00:06.0: Adding to iommu group 0
[ 1663.572337] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[ 1816.113283] vfio-pci 0000:00:06.0: Removing from iommu group 0
[ 1817.122697] ena 0000:00:06.0: ENA device version: 0.10
[ 1817.123446] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[ 1817.222667] ena 0000:00:06.0: ENA Large LLQ is disabled
[ 1817.234919] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:e7:e6:92:ea:d3
[ 1817.242386] ena 0000:00:06.0 ens6: renamed from eth0

@gspivey

gspivey commented Jul 2, 2026

Copy link
Copy Markdown
Owner Author

Consolidated into #111 (same squash-to-development). Folded the summary-report commit onto agent/tcp-smoke-tiers to avoid parallel open PRs.

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