This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 93ed07a23fd0 Merge tag 'asm-generic-6.1' of git://git.kernel.org/pub/sc [...] new 0e29bc0ebaab selftests/vm: use top_srcdir instead of recomputing relati [...] new f1375ec1df09 cpufreq: amd-pstate: Expose struct amd_cpudata new 14eb1c96e3a3 cpufreq: amd-pstate: Add test module for amd-pstate driver new e1083a03c553 selftests: amd-pstate: Add test trigger for amd-pstate driver new 7fe3629729ce Documentation: amd-pstate: Add unit test introduction new ce29a148f34f cpufreq: amd-pstate: modify type in argument 2 for filp_open new 2354edd07b23 selftests/cpu-hotplug: Correct log info new 972cf4ce51ef selftests/cpu-hotplug: Use return instead of exit new 195d74be717a selftests/cpu-hotplug: Delete fault injection related code new 51d4c851465c selftests/cpu-hotplug: Reserve one cpu online at least new 96788ac53dba selftests/cpu-hotplug: Add log info when test success new bf6430f8512d cpufreq: amd-pstate: Add explanation for X86_AMD_PSTATE_UT new 83e14a57d59f docs:kselftest: fix kselftest_module.h path of example module new dd42d9c3f461 Merge tag 'linux-kselftest-next-6.1-rc1' of git://git.kern [...] new a15cfa39e8cf kunit: tool: make --raw_output=kunit (aka --raw_output) pr [...] new d20a6ba5e3be kunit: add kunit.enable to enable/disable KUnit test new 7d97635b7281 kunit: no longer call module_info(test, "Y") for kunit modules new 7e2d619411cb Documentation: kunit: fix trivial typo new 8ae4826363ce Documentation: Kunit: Fix inconsistent titles new 43ca52a910d1 Documentation: KUnit: Fix non-uml anchor new 3920c725cbff Documentation: Kunit: Add ref for other kinds of tests new 2327f7e956ba Documentation: KUnit: remove duplicated docs for kunit_tool new 5ceb9a255859 Documentation: KUnit: avoid repeating "kunit.py run" in start.rst new c5b6c4ecbd95 Documentation: KUnit: add note about mrproper in start.rst new 7a79b7df4e51 Documentation: KUnit: Reword start guide for selecting tests new deff8d2955aa Documentation: KUnit: add intro to the getting-started page new 79c18e37c4e6 Documentation: KUnit: update links in the index page new 0f3f1123ac6e lib: overflow: update reference to kunit-tool new 4bba2a04ef98 lib: stackinit: update reference to kunit-tool new cb8a7d5340a3 kunit: tool: remove UML specific options from all_tests_um [...] new 980ac3ad0512 kunit: tool: rename all_test_uml.config, use it for --alltests new 4e37057387cc Documentation: Kunit: Use full path to .kunitconfig new ffb39098bf87 Merge tag 'linux-kselftest-kunit-6.1-rc1' of git://git.ker [...]
The 33 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: Documentation/admin-guide/kernel-parameters.txt | 6 + Documentation/admin-guide/pm/amd-pstate.rst | 76 ++++++ Documentation/dev-tools/kselftest.rst | 2 +- Documentation/dev-tools/kunit/architecture.rst | 4 +- Documentation/dev-tools/kunit/faq.rst | 8 +- Documentation/dev-tools/kunit/index.rst | 18 +- Documentation/dev-tools/kunit/kunit-tool.rst | 232 ---------------- Documentation/dev-tools/kunit/run_wrapper.rst | 38 +-- Documentation/dev-tools/kunit/start.rst | 138 ++++++---- Documentation/dev-tools/kunit/usage.rst | 4 +- MAINTAINERS | 1 + drivers/cpufreq/Kconfig.x86 | 15 ++ drivers/cpufreq/Makefile | 1 + drivers/cpufreq/amd-pstate-ut.c | 293 +++++++++++++++++++++ drivers/cpufreq/amd-pstate.c | 60 +---- include/kunit/test.h | 3 +- include/linux/amd-pstate.h | 77 ++++++ lib/kunit/Kconfig | 11 + lib/kunit/executor.c | 4 + lib/kunit/test.c | 24 ++ lib/overflow_kunit.c | 2 +- lib/stackinit_kunit.c | 2 +- .../{all_tests_uml.config => all_tests.config} | 2 - tools/testing/kunit/configs/broken_on_uml.config | 44 ---- tools/testing/kunit/kunit.py | 26 +- tools/testing/kunit/kunit_kernel.py | 30 +-- tools/testing/kunit/kunit_parser.py | 10 +- tools/testing/kunit/kunit_tool_test.py | 26 +- tools/testing/selftests/Makefile | 1 + tools/testing/selftests/amd-pstate/Makefile | 9 + .../testing/selftests/amd-pstate/amd-pstate-ut.sh | 56 ++++ tools/testing/selftests/amd-pstate/config | 1 + tools/testing/selftests/cpu-hotplug/Makefile | 2 +- tools/testing/selftests/cpu-hotplug/config | 1 - .../selftests/cpu-hotplug/cpu-on-off-test.sh | 140 +++------- tools/testing/selftests/vm/Makefile | 2 +- tools/testing/selftests/vm/gup_test.c | 2 +- tools/testing/selftests/vm/hmm-tests.c | 4 +- tools/testing/selftests/vm/ksm_tests.c | 2 +- 39 files changed, 794 insertions(+), 583 deletions(-) delete mode 100644 Documentation/dev-tools/kunit/kunit-tool.rst create mode 100644 drivers/cpufreq/amd-pstate-ut.c create mode 100644 include/linux/amd-pstate.h rename tools/testing/kunit/configs/{all_tests_uml.config => all_tests.config} (93%) delete mode 100644 tools/testing/kunit/configs/broken_on_uml.config create mode 100644 tools/testing/selftests/amd-pstate/Makefile create mode 100755 tools/testing/selftests/amd-pstate/amd-pstate-ut.sh create mode 100644 tools/testing/selftests/amd-pstate/config delete mode 100644 tools/testing/selftests/cpu-hotplug/config