diff options
Diffstat (limited to 'include/vdso/math64.h')
-rw-r--r-- | include/vdso/math64.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/include/vdso/math64.h b/include/vdso/math64.h new file mode 100644 index 000000000..7da703ee5 --- /dev/null +++ b/include/vdso/math64.h @@ -0,0 +1,24 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +#ifndef __VDSO_MATH64_H +#define __VDSO_MATH64_H + +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 /* __VDSO_MATH64_H */ |