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

Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux

Pull arm64 fix from Catalin Marinas:
"Avoid compiler uninitialised warning introduced by recent arm64 futex
fix"

* tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux:
arm64: futex: Restore oldval initialization to work around buggy compilers

+1 -1
+1 -1
arch/arm64/include/asm/futex.h
··· 50 50 static inline int 51 51 arch_futex_atomic_op_inuser(int op, int oparg, int *oval, u32 __user *_uaddr) 52 52 { 53 - int oldval, ret, tmp; 53 + int oldval = 0, ret, tmp; 54 54 u32 __user *uaddr = __uaccess_mask_ptr(_uaddr); 55 55 56 56 pagefault_disable();