From: Luis Chamberlain <mcgrof@kernel.org>
To: Chuck Lever <cel@kernel.org>, Daniel Gomez <da.gomez@kruces.com>,
kdevops@lists.linux.dev
Cc: Luis Chamberlain <mcgrof@kernel.org>
Subject: [PATCH v2 0/9] kdevops: add support for A/B testing
Date: Tue, 29 Jul 2025 23:01:36 -0700 [thread overview]
Message-ID: <20250730060147.182140-1-mcgrof@kernel.org> (raw)
This v2 is rebased on top of the latest changes, and extends support to
be more careful. It also now adds a check to ensure we don't regress
this.
A train of sytling fixes goes with this patchset as we adopt more AI
code, as its the only way to keep them on check on styling. Turns out
its an art on it own.
Luis Chamberlain (9):
roles/guestfs: add missing bootlinux_9p: False
Makefile: suppress Ansible warnings during configuration generation
playbooks: few space cleanups
style: add extensive code formatting checks to make style
Makefile: move styling to scripts/style.Makefile
CLAUDE.md: add instrucitons to verify commit
all: run black
devconfig: add automatic APT mirror fallback for Debian testing
bootlinux: add support for A/B kernel testing
.github/workflows/linux-ab-testing.yml | 217 +++++++++
.github/workflows/linux-ab.yml | 47 ++
CLAUDE.md | 10 +
Makefile | 18 +-
PROMPTS.md | 52 +++
defconfigs/linux-ab-testing | 14 +
defconfigs/linux-ab-testing-9p | 15 +
defconfigs/linux-ab-testing-builder | 15 +
defconfigs/linux-ab-testing-target | 15 +
docs/kdevops-make-linux.md | 158 +++++++
playbooks/mmtests.yml | 2 +-
.../blktests/augment_expunge_list.py | 95 ++--
.../workflows/blktests/gen-expunge-args.py | 46 +-
.../workflows/blktests/gen-results-dir.py | 39 +-
.../blktests/get_new_expunge_files.py | 16 +-
.../dynamic-kconfig/gen-dynamic-pci.py | 89 ++--
.../workflows/fstests/augment_expunge_list.py | 163 +++++--
.../workflows/fstests/bad_files_summary.py | 46 +-
.../fstests/fstests-checktime-distribution.py | 46 +-
.../workflows/fstests/gen_results_summary.py | 132 +++---
.../fstests/get_new_expunge_files.py | 24 +-
playbooks/python/workflows/fstests/lib/git.py | 21 +-
.../workflows/fstests/xunit_merge_all.py | 33 +-
.../sysbench/sysbench-tps-compare.py | 84 +++-
.../workflows/sysbench/sysbench-tps-plot.py | 36 +-
.../sysbench/sysbench-tps-variance.py | 435 +++++++++++++-----
playbooks/roles/bootlinux/defaults/main.yml | 14 +
playbooks/roles/bootlinux/tasks/build/9p.yml | 20 +-
.../install-minimal-deps/debian/main.yml | 2 +-
.../tasks/install-minimal-deps/main.yml | 2 +-
.../install-minimal-deps/redhat/main.yml | 2 +-
.../tasks/install-minimal-deps/suse/main.yml | 2 +-
playbooks/roles/bootlinux/tasks/main.yml | 112 +++++
.../devconfig/tasks/check-apt-mirrors.yml | 63 +++
playbooks/roles/devconfig/tasks/main.yml | 8 +
.../debian-testing-fallback-sources.list | 10 +
.../gen_pcie_passthrough_guestfs_xml.py | 49 +-
playbooks/roles/guestfs/defaults/main.yml | 1 +
.../linux-mirror/python/gen-mirror-files.py | 131 +++---
.../linux-mirror/python/start-mirroring.py | 116 +++--
.../roles/mmtests/tasks/install-deps/main.yml | 2 +-
scripts/check_commit_format.py | 28 +-
.../generation/check_for_atomic_calls.py | 71 +--
.../generation/check_for_sleepy_calls.py | 202 +++++---
scripts/detect_indentation_issues.py | 163 +++++++
scripts/detect_whitespace_issues.py | 38 +-
scripts/ensure_newlines.py | 75 +++
scripts/fix_indentation_issues.py | 152 ++++++
scripts/fix_whitespace_issues.py | 44 +-
scripts/generate_refs.py | 6 +-
scripts/honey-badger.py | 103 +++--
scripts/infer_last_stable_kernel.sh | 35 ++
scripts/linux-ab-testing.Makefile | 51 ++
scripts/spdxcheck.py | 201 ++++----
scripts/style.Makefile | 12 +
scripts/test-linux-ab-config.py | 182 ++++++++
scripts/test-linux-ab.sh | 213 +++++++++
scripts/update_ssh_config_guestfs.py | 49 +-
.../workflows/blktests/blktests_watchdog.py | 75 ++-
scripts/workflows/cxl/gen_qemu_cxl.py | 235 +++++++---
scripts/workflows/fstests/fstests_watchdog.py | 99 ++--
scripts/workflows/generic/crash_report.py | 4 +-
scripts/workflows/generic/crash_watchdog.py | 78 +++-
scripts/workflows/lib/blktests.py | 47 +-
scripts/workflows/lib/crash.py | 12 +-
scripts/workflows/lib/fstests.py | 155 ++++---
scripts/workflows/lib/kssh.py | 178 ++++---
scripts/workflows/lib/systemd_remote.py | 101 ++--
.../workflows/pynfs/check_pynfs_results.py | 17 +-
workflows/linux/Kconfig | 102 +++-
workflows/linux/Makefile | 39 ++
71 files changed, 4049 insertions(+), 1120 deletions(-)
create mode 100644 .github/workflows/linux-ab-testing.yml
create mode 100644 .github/workflows/linux-ab.yml
create mode 100644 defconfigs/linux-ab-testing
create mode 100644 defconfigs/linux-ab-testing-9p
create mode 100644 defconfigs/linux-ab-testing-builder
create mode 100644 defconfigs/linux-ab-testing-target
create mode 100644 playbooks/roles/devconfig/tasks/check-apt-mirrors.yml
create mode 100644 playbooks/roles/devconfig/templates/debian-testing-fallback-sources.list
create mode 100755 scripts/detect_indentation_issues.py
create mode 100755 scripts/ensure_newlines.py
create mode 100755 scripts/fix_indentation_issues.py
create mode 100755 scripts/infer_last_stable_kernel.sh
create mode 100644 scripts/linux-ab-testing.Makefile
create mode 100644 scripts/style.Makefile
create mode 100755 scripts/test-linux-ab-config.py
create mode 100755 scripts/test-linux-ab.sh
--
2.47.2
next reply other threads:[~2025-07-30 6:01 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-30 6:01 Luis Chamberlain [this message]
2025-07-30 6:01 ` [PATCH v2 1/9] roles/guestfs: add missing bootlinux_9p: False Luis Chamberlain
2025-07-30 14:17 ` Chuck Lever
2025-07-30 6:01 ` [PATCH v2 2/9] Makefile: suppress Ansible warnings during configuration generation Luis Chamberlain
2025-07-30 6:22 ` Daniel Gomez
2025-07-30 6:01 ` [PATCH v2 3/9] playbooks: few space cleanups Luis Chamberlain
2025-07-30 6:01 ` [PATCH v2 4/9] style: add extensive code formatting checks to make style Luis Chamberlain
2025-07-30 6:01 ` [PATCH v2 5/9] Makefile: move styling to scripts/style.Makefile Luis Chamberlain
2025-07-30 6:01 ` [PATCH v2 6/9] CLAUDE.md: add instrucitons to verify commit Luis Chamberlain
2025-07-30 6:01 ` [PATCH v2 7/9] all: run black Luis Chamberlain
2025-07-31 12:57 ` Daniel Gomez
2025-08-01 8:12 ` Daniel Gomez
2025-08-01 12:55 ` Chuck Lever
2025-08-01 16:29 ` Daniel Gomez
2025-08-01 16:55 ` Chuck Lever
2025-07-30 6:01 ` [PATCH v2 8/9] devconfig: add automatic APT mirror fallback for Debian testing Luis Chamberlain
2025-07-30 6:41 ` Daniel Gomez
2025-08-01 17:39 ` Luis Chamberlain
2025-07-30 6:01 ` [PATCH v2 9/9] bootlinux: add support for A/B kernel testing Luis Chamberlain
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250730060147.182140-1-mcgrof@kernel.org \
--to=mcgrof@kernel.org \
--cc=cel@kernel.org \
--cc=da.gomez@kruces.com \
--cc=kdevops@lists.linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox