thin-provisioning-tools/math_utils.h

17 lines
348 B
C
Raw Normal View History

2011-07-22 20:39:56 +05:30
#ifndef THINP_MATH_H
#define THINP_MATH_H
//----------------------------------------------------------------
namespace base {
// Only works for integral types
template <typename T>
T div_up(T const &v, T const &divisor) {
return (v + (divisor - 1)) / divisor;
}
}
//----------------------------------------------------------------
#endif