bitmap_counter_t 91 include/linux/raid/bitmap.h #define NEEDED_MASK ((bitmap_counter_t) (1 << (COUNTER_BITS - 1))) bitmap_counter_t 92 include/linux/raid/bitmap.h #define RESYNC_MASK ((bitmap_counter_t) (1 << (COUNTER_BITS - 2))) bitmap_counter_t 93 include/linux/raid/bitmap.h #define COUNTER_MAX ((bitmap_counter_t) RESYNC_MASK - 1) bitmap_counter_t 94 include/linux/raid/bitmap.h #define NEEDED(x) (((bitmap_counter_t) x) & NEEDED_MASK) bitmap_counter_t 95 include/linux/raid/bitmap.h #define RESYNC(x) (((bitmap_counter_t) x) & RESYNC_MASK) bitmap_counter_t 96 include/linux/raid/bitmap.h #define COUNTER(x) (((bitmap_counter_t) x) & COUNTER_MAX)