summaryrefslogtreecommitdiff
path: root/arch/powerpc/kernel/head_32.S
diff options
context:
space:
mode:
authorChristophe Leroy <christophe.leroy@c-s.fr>2019-08-14 12:25:52 +0300
committerMichael Ellerman <mpe@ellerman.id.au>2019-08-20 14:22:12 +0300
commit38a0d0cdb46d3f91534e5b9839ec2d67be14c59d (patch)
tree6dfb7e46f2079b44b395fcbf46f6cadda79c7b88 /arch/powerpc/kernel/head_32.S
parent663c0c9496a69f80011205ba3194049bcafd681d (diff)
downloadlinux-38a0d0cdb46d3f91534e5b9839ec2d67be14c59d.tar.xz
powerpc/futex: Fix warning: 'oldval' may be used uninitialized in this function
We see warnings such as: kernel/futex.c: In function 'do_futex': kernel/futex.c:1676:17: warning: 'oldval' may be used uninitialized in this function [-Wmaybe-uninitialized] return oldval == cmparg; ^ kernel/futex.c:1651:6: note: 'oldval' was declared here int oldval, ret; ^ This is because arch_futex_atomic_op_inuser() only sets *oval if ret is 0 and GCC doesn't see that it will only use it when ret is 0. Anyway, the non-zero ret path is an error path that won't suffer from setting *oval, and as *oval is a local var in futex_atomic_op_inuser() it will have no impact. Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr> [mpe: reword change log slightly] Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/86b72f0c134367b214910b27b9a6dd3321af93bb.1565774657.git.christophe.leroy@c-s.fr
Diffstat (limited to 'arch/powerpc/kernel/head_32.S')
0 files changed, 0 insertions, 0 deletions