blob: 5637c5711db94e6ab7409fa5f16523ae0d03b064 [file] [log] [blame]
Thomas Gleixner5b497af2019-05-29 07:18:09 -07001// SPDX-License-Identifier: GPL-2.0-only
Yury Norov4441fca2017-11-17 15:28:31 -08002/*
3 * Test for find_*_bit functions.
4 *
5 * Copyright (c) 2017 Cavium.
Yury Norov4441fca2017-11-17 15:28:31 -08006 */
7
8/*
9 * find_bit functions are widely used in kernel, so the successful boot
10 * is good enough test for correctness.
11 *
12 * This test is focused on performance of traversing bitmaps. Two typical
13 * scenarios are reproduced:
14 * - randomly filled bitmap with approximately equal number of set and
15 * cleared bits;
16 * - sparse bitmap with few set bits at random positions.
17 */
18
19#include <linux/bitops.h>
20#include <linux/kernel.h>
21#include <linux/list.h>
22#include <linux/module.h>
23#include <linux/printk.h>
24#include <linux/random.h>
25
26#define BITMAP_LEN (4096UL * 8 * 10)
27#define SPARSE 500
28
29static DECLARE_BITMAP(bitmap, BITMAP_LEN) __initdata;
Clement Courbet0ade34c2018-02-06 15:38:34 -080030static DECLARE_BITMAP(bitmap2, BITMAP_LEN) __initdata;
Yury Norov4441fca2017-11-17 15:28:31 -080031
32/*
33 * This is Schlemiel the Painter's algorithm. It should be called after
34 * all other tests for the same bitmap because it sets all bits of bitmap to 1.
35 */
36static int __init test_find_first_bit(void *bitmap, unsigned long len)
37{
38 unsigned long i, cnt;
Yury Norov15ff67b2018-02-06 15:38:31 -080039 ktime_t time;
Yury Norov4441fca2017-11-17 15:28:31 -080040
Yury Norov15ff67b2018-02-06 15:38:31 -080041 time = ktime_get();
Yury Norov4441fca2017-11-17 15:28:31 -080042 for (cnt = i = 0; i < len; cnt++) {
43 i = find_first_bit(bitmap, len);
44 __clear_bit(i, bitmap);
45 }
Yury Norov15ff67b2018-02-06 15:38:31 -080046 time = ktime_get() - time;
47 pr_err("find_first_bit: %18llu ns, %6ld iterations\n", time, cnt);
Yury Norov4441fca2017-11-17 15:28:31 -080048
49 return 0;
50}
51
52static int __init test_find_next_bit(const void *bitmap, unsigned long len)
53{
54 unsigned long i, cnt;
Yury Norov15ff67b2018-02-06 15:38:31 -080055 ktime_t time;
Yury Norov4441fca2017-11-17 15:28:31 -080056
Yury Norov15ff67b2018-02-06 15:38:31 -080057 time = ktime_get();
Yury Norov4441fca2017-11-17 15:28:31 -080058 for (cnt = i = 0; i < BITMAP_LEN; cnt++)
59 i = find_next_bit(bitmap, BITMAP_LEN, i) + 1;
Yury Norov15ff67b2018-02-06 15:38:31 -080060 time = ktime_get() - time;
61 pr_err("find_next_bit: %18llu ns, %6ld iterations\n", time, cnt);
Yury Norov4441fca2017-11-17 15:28:31 -080062
63 return 0;
64}
65
66static int __init test_find_next_zero_bit(const void *bitmap, unsigned long len)
67{
68 unsigned long i, cnt;
Yury Norov15ff67b2018-02-06 15:38:31 -080069 ktime_t time;
Yury Norov4441fca2017-11-17 15:28:31 -080070
Yury Norov15ff67b2018-02-06 15:38:31 -080071 time = ktime_get();
Yury Norov4441fca2017-11-17 15:28:31 -080072 for (cnt = i = 0; i < BITMAP_LEN; cnt++)
73 i = find_next_zero_bit(bitmap, len, i) + 1;
Yury Norov15ff67b2018-02-06 15:38:31 -080074 time = ktime_get() - time;
75 pr_err("find_next_zero_bit: %18llu ns, %6ld iterations\n", time, cnt);
Yury Norov4441fca2017-11-17 15:28:31 -080076
77 return 0;
78}
79
80static int __init test_find_last_bit(const void *bitmap, unsigned long len)
81{
82 unsigned long l, cnt = 0;
Yury Norov15ff67b2018-02-06 15:38:31 -080083 ktime_t time;
Yury Norov4441fca2017-11-17 15:28:31 -080084
Yury Norov15ff67b2018-02-06 15:38:31 -080085 time = ktime_get();
Yury Norov4441fca2017-11-17 15:28:31 -080086 do {
87 cnt++;
88 l = find_last_bit(bitmap, len);
89 if (l >= len)
90 break;
91 len = l;
92 } while (len);
Yury Norov15ff67b2018-02-06 15:38:31 -080093 time = ktime_get() - time;
94 pr_err("find_last_bit: %18llu ns, %6ld iterations\n", time, cnt);
Yury Norov4441fca2017-11-17 15:28:31 -080095
96 return 0;
97}
98
Clement Courbet0ade34c2018-02-06 15:38:34 -080099static int __init test_find_next_and_bit(const void *bitmap,
100 const void *bitmap2, unsigned long len)
101{
102 unsigned long i, cnt;
Yury Norov439e00b2019-01-03 15:26:48 -0800103 ktime_t time;
Clement Courbet0ade34c2018-02-06 15:38:34 -0800104
Yury Norov439e00b2019-01-03 15:26:48 -0800105 time = ktime_get();
Clement Courbet0ade34c2018-02-06 15:38:34 -0800106 for (cnt = i = 0; i < BITMAP_LEN; cnt++)
Yury Norov439e00b2019-01-03 15:26:48 -0800107 i = find_next_and_bit(bitmap, bitmap2, BITMAP_LEN, i + 1);
108 time = ktime_get() - time;
109 pr_err("find_next_and_bit: %18llu ns, %6ld iterations\n", time, cnt);
Clement Courbet0ade34c2018-02-06 15:38:34 -0800110
111 return 0;
112}
113
Yury Norov4441fca2017-11-17 15:28:31 -0800114static int __init find_bit_test(void)
115{
116 unsigned long nbits = BITMAP_LEN / SPARSE;
117
118 pr_err("\nStart testing find_bit() with random-filled bitmap\n");
119
120 get_random_bytes(bitmap, sizeof(bitmap));
Clement Courbet0ade34c2018-02-06 15:38:34 -0800121 get_random_bytes(bitmap2, sizeof(bitmap2));
Yury Norov4441fca2017-11-17 15:28:31 -0800122
123 test_find_next_bit(bitmap, BITMAP_LEN);
124 test_find_next_zero_bit(bitmap, BITMAP_LEN);
125 test_find_last_bit(bitmap, BITMAP_LEN);
Yury Norov4ba281d2018-05-11 16:01:39 -0700126
127 /*
128 * test_find_first_bit() may take some time, so
129 * traverse only part of bitmap to avoid soft lockup.
130 */
131 test_find_first_bit(bitmap, BITMAP_LEN / 10);
Clement Courbet0ade34c2018-02-06 15:38:34 -0800132 test_find_next_and_bit(bitmap, bitmap2, BITMAP_LEN);
Yury Norov4441fca2017-11-17 15:28:31 -0800133
134 pr_err("\nStart testing find_bit() with sparse bitmap\n");
135
136 bitmap_zero(bitmap, BITMAP_LEN);
Clement Courbet0ade34c2018-02-06 15:38:34 -0800137 bitmap_zero(bitmap2, BITMAP_LEN);
Yury Norov4441fca2017-11-17 15:28:31 -0800138
Clement Courbet0ade34c2018-02-06 15:38:34 -0800139 while (nbits--) {
Yury Norov4441fca2017-11-17 15:28:31 -0800140 __set_bit(prandom_u32() % BITMAP_LEN, bitmap);
Clement Courbet0ade34c2018-02-06 15:38:34 -0800141 __set_bit(prandom_u32() % BITMAP_LEN, bitmap2);
142 }
Yury Norov4441fca2017-11-17 15:28:31 -0800143
144 test_find_next_bit(bitmap, BITMAP_LEN);
145 test_find_next_zero_bit(bitmap, BITMAP_LEN);
146 test_find_last_bit(bitmap, BITMAP_LEN);
147 test_find_first_bit(bitmap, BITMAP_LEN);
Clement Courbet0ade34c2018-02-06 15:38:34 -0800148 test_find_next_and_bit(bitmap, bitmap2, BITMAP_LEN);
Yury Norov4441fca2017-11-17 15:28:31 -0800149
Yury Norov15ff67b2018-02-06 15:38:31 -0800150 /*
151 * Everything is OK. Return error just to let user run benchmark
152 * again without annoying rmmod.
153 */
154 return -EINVAL;
Yury Norov4441fca2017-11-17 15:28:31 -0800155}
156module_init(find_bit_test);
157
Yury Norov4441fca2017-11-17 15:28:31 -0800158MODULE_LICENSE("GPL");