~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/lib/test_bitops.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-only
  2 /*
  3  * Copyright (C) 2020 Intel Corporation
  4  */
  5 
  6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  7 
  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>
 13 
 14 /* a tiny module only meant to test
 15  *
 16  *   set/clear_bit
 17  *   get_count_order/long
 18  */
 19 
 20 /* use an enum because that's the most common BITMAP usage */
 21 enum bitops_fun {
 22         BITOPS_4 = 4,
 23         BITOPS_7 = 7,
 24         BITOPS_11 = 11,
 25         BITOPS_31 = 31,
 26         BITOPS_88 = 88,
 27         BITOPS_LAST = 255,
 28         BITOPS_LENGTH = 256
 29 };
 30 
 31 static DECLARE_BITMAP(g_bitmap, BITOPS_LENGTH);
 32 
 33 static unsigned int order_comb[][2] = {
 34         {0x00000003,  2},
 35         {0x00000004,  2},
 36         {0x00001fff, 13},
 37         {0x00002000, 13},
 38         {0x50000000, 31},
 39         {0x80000000, 31},
 40         {0x80003000, 32},
 41 };
 42 
 43 #ifdef CONFIG_64BIT
 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},
 52 };
 53 #endif
 54 
 55 static int __init test_fns(void)
 56 {
 57         static volatile __always_used unsigned long tmp __initdata;
 58         unsigned long *buf __free(kfree) = NULL;
 59         unsigned int i, n;
 60         ktime_t time;
 61 
 62         buf = kmalloc_array(10000, sizeof(unsigned long), GFP_KERNEL);
 63         if (!buf)
 64                 return -ENOMEM;
 65 
 66         get_random_bytes(buf, 10000 * sizeof(unsigned long));
 67         time = ktime_get();
 68 
 69         for (n = 0; n < BITS_PER_LONG; n++)
 70                 for (i = 0; i < 10000; i++)
 71                         tmp = fns(buf[i], n);
 72 
 73         time = ktime_get() - time;
 74         pr_err("fns:  %18llu ns\n", time);
 75 
 76         return 0;
 77 }
 78 
 79 static int __init test_bitops_startup(void)
 80 {
 81         int i, bit_set;
 82 
 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);
 89 
 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",
 93                                        order_comb[i][0]);
 94         }
 95 
 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",
 99                                        order_comb[i][0]);
100         }
101 
102 #ifdef CONFIG_64BIT
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]);
108         }
109 #endif
110 
111         barrier();
112 
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);
118 
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);
122 
123         test_fns();
124 
125         pr_info("Completed bitops test\n");
126 
127         return 0;
128 }
129 
130 static void __exit test_bitops_unstartup(void)
131 {
132 }
133 
134 module_init(test_bitops_startup);
135 module_exit(test_bitops_unstartup);
136 
137 MODULE_AUTHOR("Jesse Brandeburg <jesse.brandeburg@intel.com>, Wei Yang <richard.weiyang@gmail.com>");
138 MODULE_LICENSE("GPL");
139 MODULE_DESCRIPTION("Bit testing module");
140 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php