]> git.ipfire.org Git - thirdparty/linux.git/blame - lib/find_bit_benchmark.c
lib/find_bit_benchmark.c: improvements
[thirdparty/linux.git] / lib / find_bit_benchmark.c
CommitLineData
4441fca0
YN
1/*
2 * Test for find_*_bit functions.
3 *
4 * Copyright (c) 2017 Cavium.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 */
15
16/*
17 * find_bit functions are widely used in kernel, so the successful boot
18 * is good enough test for correctness.
19 *
20 * This test is focused on performance of traversing bitmaps. Two typical
21 * scenarios are reproduced:
22 * - randomly filled bitmap with approximately equal number of set and
23 * cleared bits;
24 * - sparse bitmap with few set bits at random positions.
25 */
26
27#include <linux/bitops.h>
28#include <linux/kernel.h>
29#include <linux/list.h>
30#include <linux/module.h>
31#include <linux/printk.h>
32#include <linux/random.h>
33
34#define BITMAP_LEN (4096UL * 8 * 10)
35#define SPARSE 500
36
37static DECLARE_BITMAP(bitmap, BITMAP_LEN) __initdata;
38
39/*
40 * This is Schlemiel the Painter's algorithm. It should be called after
41 * all other tests for the same bitmap because it sets all bits of bitmap to 1.
42 */
43static int __init test_find_first_bit(void *bitmap, unsigned long len)
44{
45 unsigned long i, cnt;
15ff67bf 46 ktime_t time;
4441fca0 47
15ff67bf 48 time = ktime_get();
4441fca0
YN
49 for (cnt = i = 0; i < len; cnt++) {
50 i = find_first_bit(bitmap, len);
51 __clear_bit(i, bitmap);
52 }
15ff67bf
YN
53 time = ktime_get() - time;
54 pr_err("find_first_bit: %18llu ns, %6ld iterations\n", time, cnt);
4441fca0
YN
55
56 return 0;
57}
58
59static int __init test_find_next_bit(const void *bitmap, unsigned long len)
60{
61 unsigned long i, cnt;
15ff67bf 62 ktime_t time;
4441fca0 63
15ff67bf 64 time = ktime_get();
4441fca0
YN
65 for (cnt = i = 0; i < BITMAP_LEN; cnt++)
66 i = find_next_bit(bitmap, BITMAP_LEN, i) + 1;
15ff67bf
YN
67 time = ktime_get() - time;
68 pr_err("find_next_bit: %18llu ns, %6ld iterations\n", time, cnt);
4441fca0
YN
69
70 return 0;
71}
72
73static int __init test_find_next_zero_bit(const void *bitmap, unsigned long len)
74{
75 unsigned long i, cnt;
15ff67bf 76 ktime_t time;
4441fca0 77
15ff67bf 78 time = ktime_get();
4441fca0
YN
79 for (cnt = i = 0; i < BITMAP_LEN; cnt++)
80 i = find_next_zero_bit(bitmap, len, i) + 1;
15ff67bf
YN
81 time = ktime_get() - time;
82 pr_err("find_next_zero_bit: %18llu ns, %6ld iterations\n", time, cnt);
4441fca0
YN
83
84 return 0;
85}
86
87static int __init test_find_last_bit(const void *bitmap, unsigned long len)
88{
89 unsigned long l, cnt = 0;
15ff67bf 90 ktime_t time;
4441fca0 91
15ff67bf 92 time = ktime_get();
4441fca0
YN
93 do {
94 cnt++;
95 l = find_last_bit(bitmap, len);
96 if (l >= len)
97 break;
98 len = l;
99 } while (len);
15ff67bf
YN
100 time = ktime_get() - time;
101 pr_err("find_last_bit: %18llu ns, %6ld iterations\n", time, cnt);
4441fca0
YN
102
103 return 0;
104}
105
106static int __init find_bit_test(void)
107{
108 unsigned long nbits = BITMAP_LEN / SPARSE;
109
110 pr_err("\nStart testing find_bit() with random-filled bitmap\n");
111
112 get_random_bytes(bitmap, sizeof(bitmap));
113
114 test_find_next_bit(bitmap, BITMAP_LEN);
115 test_find_next_zero_bit(bitmap, BITMAP_LEN);
116 test_find_last_bit(bitmap, BITMAP_LEN);
117 test_find_first_bit(bitmap, BITMAP_LEN);
118
119 pr_err("\nStart testing find_bit() with sparse bitmap\n");
120
121 bitmap_zero(bitmap, BITMAP_LEN);
122
123 while (nbits--)
124 __set_bit(prandom_u32() % BITMAP_LEN, bitmap);
125
126 test_find_next_bit(bitmap, BITMAP_LEN);
127 test_find_next_zero_bit(bitmap, BITMAP_LEN);
128 test_find_last_bit(bitmap, BITMAP_LEN);
129 test_find_first_bit(bitmap, BITMAP_LEN);
130
15ff67bf
YN
131 /*
132 * Everything is OK. Return error just to let user run benchmark
133 * again without annoying rmmod.
134 */
135 return -EINVAL;
4441fca0
YN
136}
137module_init(find_bit_test);
138
4441fca0 139MODULE_LICENSE("GPL");