瀏覽代碼

tools: introduce test_and_clear_bit

We have test_and_set_bit but not test_and_clear_bit.  Add it.

Signed-off-by: Peter Xu <peterx@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Peter Xu 7 年之前
父節點
當前提交
07a262cc7c
共有 1 個文件被更改,包括 17 次插入0 次删除
  1. 17 0
      tools/include/linux/bitmap.h

+ 17 - 0
tools/include/linux/bitmap.h

@@ -96,6 +96,23 @@ static inline int test_and_set_bit(int nr, unsigned long *addr)
 	return (old & mask) != 0;
 	return (old & mask) != 0;
 }
 }
 
 
+/**
+ * test_and_clear_bit - Clear a bit and return its old value
+ * @nr: Bit to clear
+ * @addr: Address to count from
+ */
+static inline int test_and_clear_bit(int nr, unsigned long *addr)
+{
+	unsigned long mask = BIT_MASK(nr);
+	unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
+	unsigned long old;
+
+	old = *p;
+	*p = old & ~mask;
+
+	return (old & mask) != 0;
+}
+
 /**
 /**
  * bitmap_alloc - Allocate bitmap
  * bitmap_alloc - Allocate bitmap
  * @nbits: Number of bits
  * @nbits: Number of bits