BIT_MASK
#define BIT_MASK(nr) (UL(1) << ((nr) % BITS_PER_LONG))
#define BIT_MASK(nr) (1UL << ((nr) % __BITS_PER_LONG))