summaryrefslogtreecommitdiff
path: root/libbcachefs/util.h
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2023-08-17 17:08:33 -0400
committerKent Overstreet <kent.overstreet@linux.dev>2023-08-17 17:11:27 -0400
commit505c326cbe091b105dbdfbe66dae4ad6ee424906 (patch)
treea7bf3a8ebac5ef648d48489eb87964e79bb2e261 /libbcachefs/util.h
parent4d04fe42623a2f2b91a75cfa3d3503ab88e48acc (diff)
Update bcachefs sources to a8115093df bcachefs: Fix divide by zero in rebalance_work()
Diffstat (limited to 'libbcachefs/util.h')
-rw-r--r--libbcachefs/util.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libbcachefs/util.h b/libbcachefs/util.h
index 5b98ece3..d06671a0 100644
--- a/libbcachefs/util.h
+++ b/libbcachefs/util.h
@@ -845,6 +845,11 @@ static inline int u8_cmp(u8 l, u8 r)
return cmp_int(l, r);
}
+static inline int cmp_le32(__le32 l, __le32 r)
+{
+ return cmp_int(le32_to_cpu(l), le32_to_cpu(r));
+}
+
#include <linux/uuid.h>
#endif /* _BCACHEFS_UTIL_H */