spinlock_t lock;
 };
 
+#define MMU_NOTIFIER_RANGE_BLOCKABLE (1 << 0)
+
 struct mmu_notifier_range {
        struct mm_struct *mm;
        unsigned long start;
        unsigned long end;
-       bool blockable;
+       unsigned flags;
 };
 
 struct mmu_notifier_ops {
 static inline bool
 mmu_notifier_range_blockable(const struct mmu_notifier_range *range)
 {
-       return range->blockable;
+       return (range->flags & MMU_NOTIFIER_RANGE_BLOCKABLE);
 }
 
 static inline void mmu_notifier_release(struct mm_struct *mm)
 mmu_notifier_invalidate_range_start(struct mmu_notifier_range *range)
 {
        if (mm_has_notifiers(range->mm)) {
-               range->blockable = true;
+               range->flags |= MMU_NOTIFIER_RANGE_BLOCKABLE;
                __mmu_notifier_invalidate_range_start(range);
        }
 }
 mmu_notifier_invalidate_range_start_nonblock(struct mmu_notifier_range *range)
 {
        if (mm_has_notifiers(range->mm)) {
-               range->blockable = false;
+               range->flags &= ~MMU_NOTIFIER_RANGE_BLOCKABLE;
                return __mmu_notifier_invalidate_range_start(range);
        }
        return 0;
        range->mm = mm;
        range->start = start;
        range->end = end;
+       range->flags = 0;
 }
 
 #define ptep_clear_flush_young_notify(__vma, __address, __ptep)                \