Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'x86-build-2025-12-01' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull x86 math-emu fix from Ingo Molnar:
"A single fix for an ancient prototype in the math-emu code, by Arnd
Bergmann"

* tag 'x86-build-2025-12-01' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/math-emu: Fix div_Xsig() prototype

+1 -1
+1 -1
arch/x86/math-emu/poly.h
··· 39 39 asmlinkage void shr_Xsig(Xsig *, const int n); 40 40 asmlinkage int round_Xsig(Xsig *); 41 41 asmlinkage int norm_Xsig(Xsig *); 42 - asmlinkage void div_Xsig(Xsig *x1, const Xsig *x2, const Xsig *dest); 42 + asmlinkage void div_Xsig(Xsig *x1, const Xsig *x2, Xsig *dest); 43 43 44 44 /* Macro to extract the most significant 32 bits from a long long */ 45 45 #define LL_MSW(x) (((unsigned long *)&x)[1])