Whamcloud - gitweb
LU-10171 lmv: avoid gratuitous 64-bit modulus
[fs/lustre-release.git] / lustre / include / lprocfs_status.h
index acf1bc0..3da912c 100644 (file)
@@ -58,7 +58,7 @@ struct lprocfs_vars {
        mode_t                           proc_mode;
 };
 
-static inline u32 pct(s64 a, s64 b)
+static inline unsigned int pct(unsigned long a, unsigned long b)
 {
        return b ? a * 100 / b : 0;
 }