blob: 68b8c1516c5a719b9fd422849e4431bafdaf8065 [file] [log] [blame]
Arnaldo Carvalho de Melocae68d42014-12-15 16:44:26 -03001#ifndef _TOOLS_LINUX_ASM_GENERIC_BITOPS_ATOMIC_H_
2#define _TOOLS_LINUX_ASM_GENERIC_BITOPS_ATOMIC_H_
3
4#include <asm/types.h>
Arnaldo Carvalho de Melobb970702016-07-12 11:12:18 -03005#include <asm/bitsperlong.h>
Arnaldo Carvalho de Melocae68d42014-12-15 16:44:26 -03006
7static inline void set_bit(int nr, unsigned long *addr)
8{
9 addr[nr / __BITS_PER_LONG] |= 1UL << (nr % __BITS_PER_LONG);
10}
11
12static inline void clear_bit(int nr, unsigned long *addr)
13{
14 addr[nr / __BITS_PER_LONG] &= ~(1UL << (nr % __BITS_PER_LONG));
15}
16
17static __always_inline int test_bit(unsigned int nr, const unsigned long *addr)
18{
19 return ((1UL << (nr % __BITS_PER_LONG)) &
20 (((unsigned long *)addr)[nr / __BITS_PER_LONG])) != 0;
21}
22
Matthew Wilcoxc68a2aa2016-12-16 11:52:43 -050023#define __set_bit(nr, addr) set_bit(nr, addr)
24#define __clear_bit(nr, addr) clear_bit(nr, addr)
25
Arnaldo Carvalho de Melocae68d42014-12-15 16:44:26 -030026#endif /* _TOOLS_LINUX_ASM_GENERIC_BITOPS_ATOMIC_H_ */