The discovered bit in PGCCSR register indicates if the device has been
[linux-2.6/next.git] / tools / kvm / include / linux / bitops.h
blob56448b71ebbfa0b377211628a98ad8aecde4dd00
1 #ifndef _KVM_LINUX_BITOPS_H_
2 #define _KVM_LINUX_BITOPS_H_
4 #include <linux/kernel.h>
5 #include <linux/compiler.h>
6 #include <asm/hweight.h>
8 #define BITS_PER_LONG __WORDSIZE
9 #define BITS_PER_BYTE 8
10 #define BITS_TO_LONGS(nr) DIV_ROUND_UP(nr, BITS_PER_BYTE * sizeof(long))
12 static inline void set_bit(int nr, unsigned long *addr)
14 addr[nr / BITS_PER_LONG] |= 1UL << (nr % BITS_PER_LONG);
17 static inline void clear_bit(int nr, unsigned long *addr)
19 addr[nr / BITS_PER_LONG] &= ~(1UL << (nr % BITS_PER_LONG));
22 static __always_inline int test_bit(unsigned int nr, const unsigned long *addr)
24 return ((1UL << (nr % BITS_PER_LONG)) &
25 (((unsigned long *)addr)[nr / BITS_PER_LONG])) != 0;
28 static inline unsigned long hweight_long(unsigned long w)
30 return sizeof(w) == 4 ? hweight32(w) : hweight64(w);
33 #endif