Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef _LINUX_BITOPS_H |
| 3 | #define _LINUX_BITOPS_H |
Andy Shevchenko | aa6159a | 2020-12-15 20:42:48 -0800 | [diff] [blame] | 4 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | #include <asm/types.h> |
Will Deacon | 8bd9cb5 | 2018-06-19 13:53:08 +0100 | [diff] [blame] | 6 | #include <linux/bits.h> |
Kumar Kartikeya Dwivedi | cb0f800 | 2021-07-02 16:48:22 +0530 | [diff] [blame] | 7 | #include <linux/typecheck.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | |
Andy Shevchenko | aa6159a | 2020-12-15 20:42:48 -0800 | [diff] [blame] | 9 | #include <uapi/linux/kernel.h> |
| 10 | |
Aleksa Sarai | f5a1a53 | 2019-10-01 11:10:52 +1000 | [diff] [blame] | 11 | /* Set bits in the first 'n' bytes when loaded from memory */ |
| 12 | #ifdef __LITTLE_ENDIAN |
| 13 | # define aligned_byte_mask(n) ((1UL << 8*(n))-1) |
| 14 | #else |
| 15 | # define aligned_byte_mask(n) (~0xffUL << (BITS_PER_LONG - 8 - 8*(n))) |
| 16 | #endif |
| 17 | |
Yury Norov | 0bddc1b | 2020-02-03 17:37:24 -0800 | [diff] [blame] | 18 | #define BITS_PER_TYPE(type) (sizeof(type) * BITS_PER_BYTE) |
Andy Shevchenko | aa6159a | 2020-12-15 20:42:48 -0800 | [diff] [blame] | 19 | #define BITS_TO_LONGS(nr) __KERNEL_DIV_ROUND_UP(nr, BITS_PER_TYPE(long)) |
| 20 | #define BITS_TO_U64(nr) __KERNEL_DIV_ROUND_UP(nr, BITS_PER_TYPE(u64)) |
| 21 | #define BITS_TO_U32(nr) __KERNEL_DIV_ROUND_UP(nr, BITS_PER_TYPE(u32)) |
| 22 | #define BITS_TO_BYTES(nr) __KERNEL_DIV_ROUND_UP(nr, BITS_PER_TYPE(char)) |
Chen, Gong | 10ef6b0 | 2013-10-18 14:29:07 -0700 | [diff] [blame] | 23 | |
Borislav Petkov | 4677d4a | 2010-05-03 14:57:11 +0200 | [diff] [blame] | 24 | extern unsigned int __sw_hweight8(unsigned int w); |
| 25 | extern unsigned int __sw_hweight16(unsigned int w); |
| 26 | extern unsigned int __sw_hweight32(unsigned int w); |
| 27 | extern unsigned long __sw_hweight64(__u64 w); |
| 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | * Include this here because some architectures need generic_ffs/fls in |
| 31 | * scope |
| 32 | */ |
| 33 | #include <asm/bitops.h> |
| 34 | |
Akinobu Mita | 984b3f5 | 2010-03-05 13:41:37 -0800 | [diff] [blame] | 35 | #define for_each_set_bit(bit, addr, size) \ |
Robert Richter | 1e2ad28 | 2011-11-18 12:35:21 +0100 | [diff] [blame] | 36 | for ((bit) = find_first_bit((addr), (size)); \ |
| 37 | (bit) < (size); \ |
| 38 | (bit) = find_next_bit((addr), (size), (bit) + 1)) |
| 39 | |
| 40 | /* same as for_each_set_bit() but use bit as value to start with */ |
Akinobu Mita | 307b1cd | 2012-03-23 15:02:03 -0700 | [diff] [blame] | 41 | #define for_each_set_bit_from(bit, addr, size) \ |
Robert Richter | 1e2ad28 | 2011-11-18 12:35:21 +0100 | [diff] [blame] | 42 | for ((bit) = find_next_bit((addr), (size), (bit)); \ |
| 43 | (bit) < (size); \ |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 44 | (bit) = find_next_bit((addr), (size), (bit) + 1)) |
| 45 | |
Akinobu Mita | 03f4a82 | 2012-03-23 15:02:04 -0700 | [diff] [blame] | 46 | #define for_each_clear_bit(bit, addr, size) \ |
| 47 | for ((bit) = find_first_zero_bit((addr), (size)); \ |
| 48 | (bit) < (size); \ |
| 49 | (bit) = find_next_zero_bit((addr), (size), (bit) + 1)) |
| 50 | |
| 51 | /* same as for_each_clear_bit() but use bit as value to start with */ |
| 52 | #define for_each_clear_bit_from(bit, addr, size) \ |
| 53 | for ((bit) = find_next_zero_bit((addr), (size), (bit)); \ |
| 54 | (bit) < (size); \ |
| 55 | (bit) = find_next_zero_bit((addr), (size), (bit) + 1)) |
| 56 | |
William Breathitt Gray | 169c474 | 2019-12-04 16:50:57 -0800 | [diff] [blame] | 57 | /** |
| 58 | * for_each_set_clump8 - iterate over bitmap for each 8-bit clump with set bits |
| 59 | * @start: bit offset to start search and to store the current iteration offset |
| 60 | * @clump: location to store copy of current 8-bit clump |
| 61 | * @bits: bitmap address to base the search on |
| 62 | * @size: bitmap size in number of bits |
| 63 | */ |
| 64 | #define for_each_set_clump8(start, clump, bits, size) \ |
| 65 | for ((start) = find_first_clump8(&(clump), (bits), (size)); \ |
| 66 | (start) < (size); \ |
| 67 | (start) = find_next_clump8(&(clump), (bits), (size), (start) + 8)) |
| 68 | |
Denys Vlasenko | 1a1d48a | 2015-08-04 16:15:14 +0200 | [diff] [blame] | 69 | static inline int get_bitmask_order(unsigned int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | { |
| 71 | int order; |
Peter Zijlstra | 9f41699 | 2010-01-22 15:59:29 +0100 | [diff] [blame] | 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | order = fls(count); |
| 74 | return order; /* We could be slightly more clever with -1 here... */ |
| 75 | } |
| 76 | |
Denys Vlasenko | 1a1d48a | 2015-08-04 16:15:14 +0200 | [diff] [blame] | 77 | static __always_inline unsigned long hweight_long(unsigned long w) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | { |
Arnd Bergmann | bd93f00 | 2020-06-04 16:50:30 -0700 | [diff] [blame] | 79 | return sizeof(w) == 4 ? hweight32(w) : hweight64((__u64)w); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Robert P. J. Day | 45f8bde | 2007-01-26 00:57:09 -0800 | [diff] [blame] | 82 | /** |
Alexey Dobriyan | f2ea0f5 | 2012-01-14 21:44:49 +0300 | [diff] [blame] | 83 | * rol64 - rotate a 64-bit value left |
| 84 | * @word: value to rotate |
| 85 | * @shift: bits to roll |
| 86 | */ |
| 87 | static inline __u64 rol64(__u64 word, unsigned int shift) |
| 88 | { |
Rasmus Villemoes | ef4d6f6 | 2019-05-14 15:43:27 -0700 | [diff] [blame] | 89 | return (word << (shift & 63)) | (word >> ((-shift) & 63)); |
Alexey Dobriyan | f2ea0f5 | 2012-01-14 21:44:49 +0300 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | /** |
| 93 | * ror64 - rotate a 64-bit value right |
| 94 | * @word: value to rotate |
| 95 | * @shift: bits to roll |
| 96 | */ |
| 97 | static inline __u64 ror64(__u64 word, unsigned int shift) |
| 98 | { |
Rasmus Villemoes | ef4d6f6 | 2019-05-14 15:43:27 -0700 | [diff] [blame] | 99 | return (word >> (shift & 63)) | (word << ((-shift) & 63)); |
Alexey Dobriyan | f2ea0f5 | 2012-01-14 21:44:49 +0300 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | * rol32 - rotate a 32-bit value left |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | * @word: value to rotate |
| 105 | * @shift: bits to roll |
| 106 | */ |
| 107 | static inline __u32 rol32(__u32 word, unsigned int shift) |
| 108 | { |
Rasmus Villemoes | ef4d6f6 | 2019-05-14 15:43:27 -0700 | [diff] [blame] | 109 | return (word << (shift & 31)) | (word >> ((-shift) & 31)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | } |
| 111 | |
Robert P. J. Day | 45f8bde | 2007-01-26 00:57:09 -0800 | [diff] [blame] | 112 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | * ror32 - rotate a 32-bit value right |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | * @word: value to rotate |
| 115 | * @shift: bits to roll |
| 116 | */ |
| 117 | static inline __u32 ror32(__u32 word, unsigned int shift) |
| 118 | { |
Rasmus Villemoes | ef4d6f6 | 2019-05-14 15:43:27 -0700 | [diff] [blame] | 119 | return (word >> (shift & 31)) | (word << ((-shift) & 31)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | } |
| 121 | |
Harvey Harrison | 3afe392 | 2008-03-28 14:16:01 -0700 | [diff] [blame] | 122 | /** |
| 123 | * rol16 - rotate a 16-bit value left |
| 124 | * @word: value to rotate |
| 125 | * @shift: bits to roll |
| 126 | */ |
| 127 | static inline __u16 rol16(__u16 word, unsigned int shift) |
| 128 | { |
Rasmus Villemoes | ef4d6f6 | 2019-05-14 15:43:27 -0700 | [diff] [blame] | 129 | return (word << (shift & 15)) | (word >> ((-shift) & 15)); |
Harvey Harrison | 3afe392 | 2008-03-28 14:16:01 -0700 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | /** |
| 133 | * ror16 - rotate a 16-bit value right |
| 134 | * @word: value to rotate |
| 135 | * @shift: bits to roll |
| 136 | */ |
| 137 | static inline __u16 ror16(__u16 word, unsigned int shift) |
| 138 | { |
Rasmus Villemoes | ef4d6f6 | 2019-05-14 15:43:27 -0700 | [diff] [blame] | 139 | return (word >> (shift & 15)) | (word << ((-shift) & 15)); |
Harvey Harrison | 3afe392 | 2008-03-28 14:16:01 -0700 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | /** |
| 143 | * rol8 - rotate an 8-bit value left |
| 144 | * @word: value to rotate |
| 145 | * @shift: bits to roll |
| 146 | */ |
| 147 | static inline __u8 rol8(__u8 word, unsigned int shift) |
| 148 | { |
Rasmus Villemoes | ef4d6f6 | 2019-05-14 15:43:27 -0700 | [diff] [blame] | 149 | return (word << (shift & 7)) | (word >> ((-shift) & 7)); |
Harvey Harrison | 3afe392 | 2008-03-28 14:16:01 -0700 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | /** |
| 153 | * ror8 - rotate an 8-bit value right |
| 154 | * @word: value to rotate |
| 155 | * @shift: bits to roll |
| 156 | */ |
| 157 | static inline __u8 ror8(__u8 word, unsigned int shift) |
| 158 | { |
Rasmus Villemoes | ef4d6f6 | 2019-05-14 15:43:27 -0700 | [diff] [blame] | 159 | return (word >> (shift & 7)) | (word << ((-shift) & 7)); |
Harvey Harrison | 3afe392 | 2008-03-28 14:16:01 -0700 | [diff] [blame] | 160 | } |
| 161 | |
Andreas Herrmann | 7919a57 | 2010-08-30 19:04:01 +0000 | [diff] [blame] | 162 | /** |
| 163 | * sign_extend32 - sign extend a 32-bit value using specified bit as sign-bit |
| 164 | * @value: value to sign extend |
| 165 | * @index: 0 based bit index (0<=index<32) to sign bit |
Martin Kepplinger | e2eb53a | 2015-11-06 16:30:58 -0800 | [diff] [blame] | 166 | * |
| 167 | * This is safe to use for 16- and 8-bit types as well. |
Andreas Herrmann | 7919a57 | 2010-08-30 19:04:01 +0000 | [diff] [blame] | 168 | */ |
Josh Poimboeuf | f80ac98 | 2020-04-06 20:09:43 -0700 | [diff] [blame] | 169 | static __always_inline __s32 sign_extend32(__u32 value, int index) |
Andreas Herrmann | 7919a57 | 2010-08-30 19:04:01 +0000 | [diff] [blame] | 170 | { |
| 171 | __u8 shift = 31 - index; |
| 172 | return (__s32)(value << shift) >> shift; |
| 173 | } |
| 174 | |
Martin Kepplinger | 48e203e | 2015-11-06 16:31:02 -0800 | [diff] [blame] | 175 | /** |
| 176 | * sign_extend64 - sign extend a 64-bit value using specified bit as sign-bit |
| 177 | * @value: value to sign extend |
| 178 | * @index: 0 based bit index (0<=index<64) to sign bit |
| 179 | */ |
Josh Poimboeuf | f80ac98 | 2020-04-06 20:09:43 -0700 | [diff] [blame] | 180 | static __always_inline __s64 sign_extend64(__u64 value, int index) |
Martin Kepplinger | 48e203e | 2015-11-06 16:31:02 -0800 | [diff] [blame] | 181 | { |
| 182 | __u8 shift = 63 - index; |
| 183 | return (__s64)(value << shift) >> shift; |
| 184 | } |
| 185 | |
Andrew Morton | 962749a | 2006-03-25 03:08:01 -0800 | [diff] [blame] | 186 | static inline unsigned fls_long(unsigned long l) |
| 187 | { |
| 188 | if (sizeof(l) == 4) |
| 189 | return fls(l); |
| 190 | return fls64(l); |
| 191 | } |
| 192 | |
zijun_hu | 252e5c6 | 2016-10-07 16:57:26 -0700 | [diff] [blame] | 193 | static inline int get_count_order(unsigned int count) |
| 194 | { |
Wei Yang | 004fba1 | 2020-10-15 20:11:46 -0700 | [diff] [blame] | 195 | if (count == 0) |
| 196 | return -1; |
zijun_hu | 252e5c6 | 2016-10-07 16:57:26 -0700 | [diff] [blame] | 197 | |
Wei Yang | 004fba1 | 2020-10-15 20:11:46 -0700 | [diff] [blame] | 198 | return fls(--count); |
zijun_hu | 252e5c6 | 2016-10-07 16:57:26 -0700 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | /** |
| 202 | * get_count_order_long - get order after rounding @l up to power of 2 |
| 203 | * @l: parameter |
| 204 | * |
| 205 | * it is same as get_count_order() but with long type parameter |
| 206 | */ |
| 207 | static inline int get_count_order_long(unsigned long l) |
| 208 | { |
| 209 | if (l == 0UL) |
| 210 | return -1; |
Wei Yang | a9eb637 | 2020-10-15 20:11:41 -0700 | [diff] [blame] | 211 | return (int)fls_long(--l); |
zijun_hu | 252e5c6 | 2016-10-07 16:57:26 -0700 | [diff] [blame] | 212 | } |
| 213 | |
Steven Whitehouse | 952043a | 2009-04-23 08:48:15 +0100 | [diff] [blame] | 214 | /** |
| 215 | * __ffs64 - find first set bit in a 64 bit word |
| 216 | * @word: The 64 bit word |
| 217 | * |
Geert Uytterhoeven | 4945cca | 2021-02-25 17:21:37 -0800 | [diff] [blame] | 218 | * On 64 bit arches this is a synonym for __ffs |
Steven Whitehouse | 952043a | 2009-04-23 08:48:15 +0100 | [diff] [blame] | 219 | * The result is not defined if no bits are set, so check that @word |
| 220 | * is non-zero before calling this. |
| 221 | */ |
| 222 | static inline unsigned long __ffs64(u64 word) |
| 223 | { |
| 224 | #if BITS_PER_LONG == 32 |
| 225 | if (((u32)word) == 0UL) |
| 226 | return __ffs((u32)(word >> 32)) + 32; |
| 227 | #elif BITS_PER_LONG != 64 |
| 228 | #error BITS_PER_LONG not 32 or 64 |
| 229 | #endif |
| 230 | return __ffs((unsigned long)word); |
| 231 | } |
| 232 | |
Lukas Wunner | 5307e2a | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 233 | /** |
| 234 | * assign_bit - Assign value to a bit in memory |
| 235 | * @nr: the bit to set |
| 236 | * @addr: the address to start counting from |
| 237 | * @value: the value to assign |
| 238 | */ |
| 239 | static __always_inline void assign_bit(long nr, volatile unsigned long *addr, |
| 240 | bool value) |
| 241 | { |
| 242 | if (value) |
| 243 | set_bit(nr, addr); |
| 244 | else |
| 245 | clear_bit(nr, addr); |
| 246 | } |
| 247 | |
| 248 | static __always_inline void __assign_bit(long nr, volatile unsigned long *addr, |
| 249 | bool value) |
| 250 | { |
| 251 | if (value) |
| 252 | __set_bit(nr, addr); |
| 253 | else |
| 254 | __clear_bit(nr, addr); |
| 255 | } |
| 256 | |
Kumar Kartikeya Dwivedi | cb0f800 | 2021-07-02 16:48:22 +0530 | [diff] [blame] | 257 | /** |
| 258 | * __ptr_set_bit - Set bit in a pointer's value |
| 259 | * @nr: the bit to set |
| 260 | * @addr: the address of the pointer variable |
| 261 | * |
| 262 | * Example: |
| 263 | * void *p = foo(); |
| 264 | * __ptr_set_bit(bit, &p); |
| 265 | */ |
| 266 | #define __ptr_set_bit(nr, addr) \ |
| 267 | ({ \ |
| 268 | typecheck_pointer(*(addr)); \ |
| 269 | __set_bit(nr, (unsigned long *)(addr)); \ |
| 270 | }) |
| 271 | |
| 272 | /** |
| 273 | * __ptr_clear_bit - Clear bit in a pointer's value |
| 274 | * @nr: the bit to clear |
| 275 | * @addr: the address of the pointer variable |
| 276 | * |
| 277 | * Example: |
| 278 | * void *p = foo(); |
| 279 | * __ptr_clear_bit(bit, &p); |
| 280 | */ |
| 281 | #define __ptr_clear_bit(nr, addr) \ |
| 282 | ({ \ |
| 283 | typecheck_pointer(*(addr)); \ |
| 284 | __clear_bit(nr, (unsigned long *)(addr)); \ |
| 285 | }) |
| 286 | |
| 287 | /** |
| 288 | * __ptr_test_bit - Test bit in a pointer's value |
| 289 | * @nr: the bit to test |
| 290 | * @addr: the address of the pointer variable |
| 291 | * |
| 292 | * Example: |
| 293 | * void *p = foo(); |
| 294 | * if (__ptr_test_bit(bit, &p)) { |
| 295 | * ... |
| 296 | * } else { |
| 297 | * ... |
| 298 | * } |
| 299 | */ |
| 300 | #define __ptr_test_bit(nr, addr) \ |
| 301 | ({ \ |
| 302 | typecheck_pointer(*(addr)); \ |
| 303 | test_bit(nr, (unsigned long *)(addr)); \ |
| 304 | }) |
| 305 | |
Alexander van Heukelum | 64970b6 | 2008-03-11 16:17:19 +0100 | [diff] [blame] | 306 | #ifdef __KERNEL__ |
Alexander van Heukelum | 77b9bd9 | 2008-04-01 11:46:19 +0200 | [diff] [blame] | 307 | |
Theodore Ts'o | 00a1a05 | 2014-03-30 10:20:01 -0400 | [diff] [blame] | 308 | #ifndef set_mask_bits |
Miklos Szeredi | 1812742 | 2018-10-15 15:43:06 +0200 | [diff] [blame] | 309 | #define set_mask_bits(ptr, mask, bits) \ |
Theodore Ts'o | 00a1a05 | 2014-03-30 10:20:01 -0400 | [diff] [blame] | 310 | ({ \ |
Miklos Szeredi | 1812742 | 2018-10-15 15:43:06 +0200 | [diff] [blame] | 311 | const typeof(*(ptr)) mask__ = (mask), bits__ = (bits); \ |
| 312 | typeof(*(ptr)) old__, new__; \ |
Theodore Ts'o | 00a1a05 | 2014-03-30 10:20:01 -0400 | [diff] [blame] | 313 | \ |
| 314 | do { \ |
Miklos Szeredi | 1812742 | 2018-10-15 15:43:06 +0200 | [diff] [blame] | 315 | old__ = READ_ONCE(*(ptr)); \ |
| 316 | new__ = (old__ & ~mask__) | bits__; \ |
| 317 | } while (cmpxchg(ptr, old__, new__) != old__); \ |
Theodore Ts'o | 00a1a05 | 2014-03-30 10:20:01 -0400 | [diff] [blame] | 318 | \ |
Vineet Gupta | 1db604f | 2019-03-07 16:28:14 -0800 | [diff] [blame] | 319 | old__; \ |
Theodore Ts'o | 00a1a05 | 2014-03-30 10:20:01 -0400 | [diff] [blame] | 320 | }) |
| 321 | #endif |
| 322 | |
Guoqing Jiang | 85ad1d1 | 2016-05-03 22:22:13 -0400 | [diff] [blame] | 323 | #ifndef bit_clear_unless |
Miklos Szeredi | edfa872 | 2018-10-15 15:43:06 +0200 | [diff] [blame] | 324 | #define bit_clear_unless(ptr, clear, test) \ |
Guoqing Jiang | 85ad1d1 | 2016-05-03 22:22:13 -0400 | [diff] [blame] | 325 | ({ \ |
Miklos Szeredi | edfa872 | 2018-10-15 15:43:06 +0200 | [diff] [blame] | 326 | const typeof(*(ptr)) clear__ = (clear), test__ = (test);\ |
| 327 | typeof(*(ptr)) old__, new__; \ |
Guoqing Jiang | 85ad1d1 | 2016-05-03 22:22:13 -0400 | [diff] [blame] | 328 | \ |
| 329 | do { \ |
Miklos Szeredi | edfa872 | 2018-10-15 15:43:06 +0200 | [diff] [blame] | 330 | old__ = READ_ONCE(*(ptr)); \ |
| 331 | new__ = old__ & ~clear__; \ |
| 332 | } while (!(old__ & test__) && \ |
| 333 | cmpxchg(ptr, old__, new__) != old__); \ |
Guoqing Jiang | 85ad1d1 | 2016-05-03 22:22:13 -0400 | [diff] [blame] | 334 | \ |
Miklos Szeredi | edfa872 | 2018-10-15 15:43:06 +0200 | [diff] [blame] | 335 | !(old__ & test__); \ |
Guoqing Jiang | 85ad1d1 | 2016-05-03 22:22:13 -0400 | [diff] [blame] | 336 | }) |
| 337 | #endif |
| 338 | |
Alexander van Heukelum | 64970b6 | 2008-03-11 16:17:19 +0100 | [diff] [blame] | 339 | #endif /* __KERNEL__ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | #endif |