@@ -1390,6 +1390,7 @@ struct lu_qos {
int lqos_add_tgt(struct lu_qos *qos, struct lu_tgt_desc *ltd);
int lqos_del_tgt(struct lu_qos *qos, struct lu_tgt_desc *ltd);
+u64 lu_prandom_u64_max(u64 ep_ro);
/** @} lu */
#endif /* __LUSTRE_LU_OBJECT_H */
@@ -370,31 +370,7 @@ struct lu_tgt_desc *lmv_locate_tgt_qos(struct lmv_obd *lmv, u32 *mdt)
total_weight += tgt->ltd_qos.ltq_weight;
}
- if (total_weight) {
-#if BITS_PER_LONG == 32
- /*
- * If total_weight > 32-bit, first generate the high
- * 32 bits of the random number, then add in the low
- * 32 bits (truncated to the upper limit, if needed)
- */
- if (total_weight > 0xffffffffULL)
- rand = (u64)(prandom_u32_max(
- (unsigned int)(total_weight >> 32)) << 32;
- else
- rand = 0;
-
- if (rand == (total_weight & 0xffffffff00000000ULL))
- rand |= prandom_u32_max((unsigned int)total_weight);
- else
- rand |= prandom_u32();
-
-#else
- rand = ((u64)prandom_u32() << 32 | prandom_u32()) %
- total_weight;
-#endif
- } else {
- rand = 0;
- }
+ rand = lu_prandom_u64_max(total_weight);
for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
tgt = lmv->tgts[i];
@@ -35,6 +35,7 @@
#include <linux/module.h>
#include <linux/list.h>
+#include <linux/random.h>
#include <obd_class.h>
#include <obd_support.h>
#include <lustre_disk.h>
@@ -164,3 +165,38 @@ int lqos_del_tgt(struct lu_qos *qos, struct lu_tgt_desc *ltd)
return rc;
}
EXPORT_SYMBOL(lqos_del_tgt);
+
+/**
+ * lu_prandom_u64_max - returns a pseudo-random u64 number in interval
+ * [0, ep_ro)
+ *
+ * #ep_ro right open interval endpoint
+ *
+ * Return: a pseudo-random 64-bit number that is in interval [0, ep_ro).
+ */
+u64 lu_prandom_u64_max(u64 ep_ro)
+{
+ u64 rand = 0;
+
+ if (ep_ro) {
+#if BITS_PER_LONG == 32
+ /*
+ * If ep_ro > 32-bit, first generate the high
+ * 32 bits of the random number, then add in the low
+ * 32 bits (truncated to the upper limit, if needed)
+ */
+ if (ep_ro > 0xffffffffULL)
+ rand = prandom_u32_max((u32)(ep_ro >> 32)) << 32;
+
+ if (rand == (ep_ro & 0xffffffff00000000ULL))
+ rand |= prandom_u32_max((u32)ep_ro);
+ else
+ rand |= prandom_u32();
+#else
+ rand = ((u64)prandom_u32() << 32 | prandom_u32()) % ep_ro;
+#endif
+ }
+
+ return rand;
+}
+EXPORT_SYMBOL(lu_prandom_u64_max);