Yury Norov | 4441fca | 2017-11-17 15:28:31 -0800 | [diff] [blame] | 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 | |
| 37 | static 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 | */ |
| 43 | static int __init test_find_first_bit(void *bitmap, unsigned long len) |
| 44 | { |
| 45 | unsigned long i, cnt; |
Yury Norov | 15ff67b | 2018-02-06 15:38:31 -0800 | [diff] [blame^] | 46 | ktime_t time; |
Yury Norov | 4441fca | 2017-11-17 15:28:31 -0800 | [diff] [blame] | 47 | |
Yury Norov | 15ff67b | 2018-02-06 15:38:31 -0800 | [diff] [blame^] | 48 | time = ktime_get(); |
Yury Norov | 4441fca | 2017-11-17 15:28:31 -0800 | [diff] [blame] | 49 | for (cnt = i = 0; i < len; cnt++) { |
| 50 | i = find_first_bit(bitmap, len); |
| 51 | __clear_bit(i, bitmap); |
| 52 | } |
Yury Norov | 15ff67b | 2018-02-06 15:38:31 -0800 | [diff] [blame^] | 53 | time = ktime_get() - time; |
| 54 | pr_err("find_first_bit: %18llu ns, %6ld iterations\n", time, cnt); |
Yury Norov | 4441fca | 2017-11-17 15:28:31 -0800 | [diff] [blame] | 55 | |
| 56 | return 0; |
| 57 | } |
| 58 | |
| 59 | static int __init test_find_next_bit(const void *bitmap, unsigned long len) |
| 60 | { |
| 61 | unsigned long i, cnt; |
Yury Norov | 15ff67b | 2018-02-06 15:38:31 -0800 | [diff] [blame^] | 62 | ktime_t time; |
Yury Norov | 4441fca | 2017-11-17 15:28:31 -0800 | [diff] [blame] | 63 | |
Yury Norov | 15ff67b | 2018-02-06 15:38:31 -0800 | [diff] [blame^] | 64 | time = ktime_get(); |
Yury Norov | 4441fca | 2017-11-17 15:28:31 -0800 | [diff] [blame] | 65 | for (cnt = i = 0; i < BITMAP_LEN; cnt++) |
| 66 | i = find_next_bit(bitmap, BITMAP_LEN, i) + 1; |
Yury Norov | 15ff67b | 2018-02-06 15:38:31 -0800 | [diff] [blame^] | 67 | time = ktime_get() - time; |
| 68 | pr_err("find_next_bit: %18llu ns, %6ld iterations\n", time, cnt); |
Yury Norov | 4441fca | 2017-11-17 15:28:31 -0800 | [diff] [blame] | 69 | |
| 70 | return 0; |
| 71 | } |
| 72 | |
| 73 | static int __init test_find_next_zero_bit(const void *bitmap, unsigned long len) |
| 74 | { |
| 75 | unsigned long i, cnt; |
Yury Norov | 15ff67b | 2018-02-06 15:38:31 -0800 | [diff] [blame^] | 76 | ktime_t time; |
Yury Norov | 4441fca | 2017-11-17 15:28:31 -0800 | [diff] [blame] | 77 | |
Yury Norov | 15ff67b | 2018-02-06 15:38:31 -0800 | [diff] [blame^] | 78 | time = ktime_get(); |
Yury Norov | 4441fca | 2017-11-17 15:28:31 -0800 | [diff] [blame] | 79 | for (cnt = i = 0; i < BITMAP_LEN; cnt++) |
| 80 | i = find_next_zero_bit(bitmap, len, i) + 1; |
Yury Norov | 15ff67b | 2018-02-06 15:38:31 -0800 | [diff] [blame^] | 81 | time = ktime_get() - time; |
| 82 | pr_err("find_next_zero_bit: %18llu ns, %6ld iterations\n", time, cnt); |
Yury Norov | 4441fca | 2017-11-17 15:28:31 -0800 | [diff] [blame] | 83 | |
| 84 | return 0; |
| 85 | } |
| 86 | |
| 87 | static int __init test_find_last_bit(const void *bitmap, unsigned long len) |
| 88 | { |
| 89 | unsigned long l, cnt = 0; |
Yury Norov | 15ff67b | 2018-02-06 15:38:31 -0800 | [diff] [blame^] | 90 | ktime_t time; |
Yury Norov | 4441fca | 2017-11-17 15:28:31 -0800 | [diff] [blame] | 91 | |
Yury Norov | 15ff67b | 2018-02-06 15:38:31 -0800 | [diff] [blame^] | 92 | time = ktime_get(); |
Yury Norov | 4441fca | 2017-11-17 15:28:31 -0800 | [diff] [blame] | 93 | do { |
| 94 | cnt++; |
| 95 | l = find_last_bit(bitmap, len); |
| 96 | if (l >= len) |
| 97 | break; |
| 98 | len = l; |
| 99 | } while (len); |
Yury Norov | 15ff67b | 2018-02-06 15:38:31 -0800 | [diff] [blame^] | 100 | time = ktime_get() - time; |
| 101 | pr_err("find_last_bit: %18llu ns, %6ld iterations\n", time, cnt); |
Yury Norov | 4441fca | 2017-11-17 15:28:31 -0800 | [diff] [blame] | 102 | |
| 103 | return 0; |
| 104 | } |
| 105 | |
| 106 | static 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 | |
Yury Norov | 15ff67b | 2018-02-06 15:38:31 -0800 | [diff] [blame^] | 131 | /* |
| 132 | * Everything is OK. Return error just to let user run benchmark |
| 133 | * again without annoying rmmod. |
| 134 | */ |
| 135 | return -EINVAL; |
Yury Norov | 4441fca | 2017-11-17 15:28:31 -0800 | [diff] [blame] | 136 | } |
| 137 | module_init(find_bit_test); |
| 138 | |
Yury Norov | 4441fca | 2017-11-17 15:28:31 -0800 | [diff] [blame] | 139 | MODULE_LICENSE("GPL"); |