1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2020 Intel Corporation
6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8 #include <linux/cleanup.h>
9 #include <linux/init.h>
10 #include <linux/module.h>
11 #include <linux/printk.h>
12 #include <linux/slab.h>
14 /* a tiny module only meant to test
17 * get_count_order/long
20 /* use an enum because that's the most common BITMAP usage */
31 static DECLARE_BITMAP(g_bitmap, BITOPS_LENGTH);
33 static unsigned int order_comb[][2] = {
44 static unsigned long order_comb_long[][2] = {
45 {0x0000000300000000, 34},
46 {0x0000000400000000, 34},
47 {0x00001fff00000000, 45},
48 {0x0000200000000000, 45},
49 {0x5000000000000000, 63},
50 {0x8000000000000000, 63},
51 {0x8000300000000000, 64},
55 static int __init test_fns(void)
57 static volatile __always_used unsigned long tmp __initdata;
58 unsigned long *buf __free(kfree) = NULL;
62 buf = kmalloc_array(10000, sizeof(unsigned long), GFP_KERNEL);
66 get_random_bytes(buf, 10000 * sizeof(unsigned long));
69 for (n = 0; n < BITS_PER_LONG; n++)
70 for (i = 0; i < 10000; i++)
73 time = ktime_get() - time;
74 pr_err("fns: %18llu ns\n", time);
79 static int __init test_bitops_startup(void)
83 pr_info("Starting bitops test\n");
84 set_bit(BITOPS_4, g_bitmap);
85 set_bit(BITOPS_7, g_bitmap);
86 set_bit(BITOPS_11, g_bitmap);
87 set_bit(BITOPS_31, g_bitmap);
88 set_bit(BITOPS_88, g_bitmap);
90 for (i = 0; i < ARRAY_SIZE(order_comb); i++) {
91 if (order_comb[i][1] != get_count_order(order_comb[i][0]))
92 pr_warn("get_count_order wrong for %x\n",
96 for (i = 0; i < ARRAY_SIZE(order_comb); i++) {
97 if (order_comb[i][1] != get_count_order_long(order_comb[i][0]))
98 pr_warn("get_count_order_long wrong for %x\n",
103 for (i = 0; i < ARRAY_SIZE(order_comb_long); i++) {
104 if (order_comb_long[i][1] !=
105 get_count_order_long(order_comb_long[i][0]))
106 pr_warn("get_count_order_long wrong for %lx\n",
107 order_comb_long[i][0]);
113 clear_bit(BITOPS_4, g_bitmap);
114 clear_bit(BITOPS_7, g_bitmap);
115 clear_bit(BITOPS_11, g_bitmap);
116 clear_bit(BITOPS_31, g_bitmap);
117 clear_bit(BITOPS_88, g_bitmap);
119 bit_set = find_first_bit(g_bitmap, BITOPS_LAST);
120 if (bit_set != BITOPS_LAST)
121 pr_err("ERROR: FOUND SET BIT %d\n", bit_set);
125 pr_info("Completed bitops test\n");
130 static void __exit test_bitops_unstartup(void)
134 module_init(test_bitops_startup);
135 module_exit(test_bitops_unstartup);
138 MODULE_LICENSE("GPL");
139 MODULE_DESCRIPTION("Bit testing module");