diff options
| author | Timur Tabi <[email protected]> | 2021-02-14 16:13:46 +0000 |
|---|---|---|
| committer | Petr Mladek <[email protected]> | 2021-02-15 10:01:42 +0000 |
| commit | 4e89a78779647ca7ee2967551c599633fe9d3647 (patch) | |
| tree | c676aab8387e1fca00f5c5980f84de7420f2c8c2 /lib/test_bitmap.c | |
| parent | Merge branch 'printk-rework' into for-linus (diff) | |
| download | kernel-4e89a78779647ca7ee2967551c599633fe9d3647.tar.gz kernel-4e89a78779647ca7ee2967551c599633fe9d3647.zip | |
lib: use KSTM_MODULE_GLOBALS macro in kselftest drivers
Instead of defining the total/failed test counters manually,
test drivers that are clients of kselftest should use the
macro created for this purpose.
Signed-off-by: Timur Tabi <[email protected]>
Reviewed-by: Petr Mladek <[email protected]>
Acked-by: Marco Elver <[email protected]>
Signed-off-by: Petr Mladek <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'lib/test_bitmap.c')
| -rw-r--r-- | lib/test_bitmap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/test_bitmap.c b/lib/test_bitmap.c index 4425a1dd4ef1..0ea0e8258f14 100644 --- a/lib/test_bitmap.c +++ b/lib/test_bitmap.c @@ -16,8 +16,7 @@ #include "../tools/testing/selftests/kselftest_module.h" -static unsigned total_tests __initdata; -static unsigned failed_tests __initdata; +KSTM_MODULE_GLOBALS(); static char pbl_buffer[PAGE_SIZE] __initdata; |
