diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-06-12 07:47:44 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-06-12 07:47:44 -0700 |
commit | dc10885d68ae5893038e009f82cbb14a05aa9dd0 (patch) | |
tree | 873929ff5bbb9263d1a325abd0f6a4c8fe26d208 /include/linux/math64.h | |
parent | 631025b4d87d5a9d7e04a1ed652d247191e223d4 (diff) | |
parent | 9412e28649d0272df5e4af57bb378926fd4df580 (diff) | |
download | talos-op-linux-dc10885d68ae5893038e009f82cbb14a05aa9dd0.tar.gz talos-op-linux-dc10885d68ae5893038e009f82cbb14a05aa9dd0.zip |
Merge branch 'core/iter-div' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'core/iter-div' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
always_inline timespec_add_ns
add an inlined version of iter_div_u64_rem
common implementation of iterative div/mod
Diffstat (limited to 'include/linux/math64.h')
-rw-r--r-- | include/linux/math64.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/linux/math64.h b/include/linux/math64.h index c1a5f81501ff..c87f1528703a 100644 --- a/include/linux/math64.h +++ b/include/linux/math64.h @@ -81,4 +81,25 @@ static inline s64 div_s64(s64 dividend, s32 divisor) } #endif +u32 iter_div_u64_rem(u64 dividend, u32 divisor, u64 *remainder); + +static __always_inline u32 +__iter_div_u64_rem(u64 dividend, u32 divisor, u64 *remainder) +{ + u32 ret = 0; + + while (dividend >= divisor) { + /* The following asm() prevents the compiler from + optimising this loop into a modulo operation. */ + asm("" : "+rm"(dividend)); + + dividend -= divisor; + ret++; + } + + *remainder = dividend; + + return ret; +} + #endif /* _LINUX_MATH64_H */ |