diff options
author | Yury Norov <yury.norov@gmail.com> | 2024-05-02 19:56:33 +0300 |
---|---|---|
committer | Yury Norov <yury.norov@gmail.com> | 2024-05-09 19:25:08 +0300 |
commit | 77db1920a88103e8ef9ee58130df7c970aea3d17 (patch) | |
tree | c1a6394762ea735bbedbf60c6e77f79213b8696e /lib | |
parent | 1c2aa5619348f7573d6f2269e04fd1dac8eddc47 (diff) | |
download | linux-77db1920a88103e8ef9ee58130df7c970aea3d17.tar.xz |
lib: make test_bitops compilable into the kernel image
The test now is limited to be compiled as a module. There's no technical
reason for it. Now that the test bears some performance benchmarks, it
would be reasonable to run it at kernel load time, before userspace
starts, to reduce possible jitter.
Reviewed-by: Kuan-Wei Chiu <visitorckw@gmail.com>
Signed-off-by: Yury Norov <yury.norov@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig.debug | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index c63a5fbf1f1c..fc8fe1ea5b49 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -2436,7 +2436,6 @@ config TEST_LKM config TEST_BITOPS tristate "Test module for compilation of bitops operations" - depends on m help This builds the "test_bitops" module that is much like the TEST_LKM module except that it does a basic exercise of the |