summaryrefslogtreecommitdiff
path: root/fs/bcachefs/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/bcachefs/util.h')
-rw-r--r--fs/bcachefs/util.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/bcachefs/util.h b/fs/bcachefs/util.h
index 4318c2c7bf14..a35959cbf137 100644
--- a/fs/bcachefs/util.h
+++ b/fs/bcachefs/util.h
@@ -759,4 +759,9 @@ static inline int copy_from_user_errcode(void *to, const void __user *from, unsi
#endif
+static inline void __set_bit_le64(size_t bit, __le64 *addr)
+{
+ addr[bit / 64] |= cpu_to_le64(BIT_ULL(bit % 64));
+}
+
#endif /* _BCACHEFS_UTIL_H */