summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2023-12-30 22:54:04 -0500
committerKent Overstreet <kent.overstreet@linux.dev>2024-01-03 20:31:37 -0500
commit1f79cf3825e94fcb146d417b6dda9b94c93c7a53 (patch)
tree152d89dcb9217e1dbe18594d038a077e0d6f822c /include
parent3054e5debba5ccf842346bd202921f08e43d1e84 (diff)
Update bcachefs sources to 2a6125decb43 bcachefs: bch_sb_field_downgrade
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'include')
-rw-r--r--include/linux/bitops.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/bitops.h b/include/linux/bitops.h
index 62a3f404..758476b1 100644
--- a/include/linux/bitops.h
+++ b/include/linux/bitops.h
@@ -16,6 +16,7 @@
#define BIT_MASK(nr) (1UL << ((nr) % BITS_PER_LONG))
#define BIT_WORD(nr) ((nr) / BITS_PER_LONG)
+#define BITS_PER_TYPE(type) (sizeof(type) * BITS_PER_BYTE)
#define BITS_PER_BYTE 8
#define BITS_TO_LONGS(nr) DIV_ROUND_UP(nr, BITS_PER_BYTE * sizeof(long))
#define BITS_TO_U64(nr) DIV_ROUND_UP(nr, BITS_PER_BYTE * sizeof(u64))