On Wed, Apr 25, 2012 at 4:15 AM, Peter Zijlstra <a.p.zijlstra@xxxxxxxxx> wrote: > Cc: Ingo Molnar <mingo@xxxxxxxxxx> > Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> > Cc: H. Peter Anvin <hpa@xxxxxxxxx> > Cc: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> > Cc: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx> > Signed-off-by: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx> > --- > arch/x86/include/asm/Kbuild | 1 - > arch/x86/include/asm/math128.h | 39 +++++++++++++++++++++++++++++++++++++++ > 2 files changed, 39 insertions(+), 1 deletion(-) > --- /dev/null > +++ b/arch/x86/include/asm/math128.h > @@ -0,0 +1,39 @@ > +#ifndef _ASM_MATH128_H > +#define _ASM_MATH128_H > + > +#ifdef CONFIG_X86_64 > + > +#ifdef __SIZEOF_INT128__ > +#define ARCH_HAS_INT128 > +#endif > + > +#ifndef ARCH_HAS_INT128 > + > +static inline mul_u64_u64(u64 a, u64 b) I think you're missing a return type and a 't'. > +{ > + u128 res; > + > + asm("mulq %2" > + : "=a" (res.lo), "=d" (res.hi) > + : "rm" (b), "0" (a)); > + > + return res; > +} > +#define mult_u64_u64 mult_u64_u64 > + > +static inline add_u128(u128 a, u128 b) Return type here, too. --Andy -- To unsubscribe from this list: send the line "unsubscribe linux-arch" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html