diff options
author | Nathan Chancellor <natechancellor@gmail.com> | 2018-09-25 15:44:59 -0400 |
---|---|---|
committer | Dennis Zhou <dennis@kernel.org> | 2018-09-25 16:26:48 -0400 |
commit | b5bb425871186303e6936fa2581521bdd1964a58 (patch) | |
tree | 6a2b59d177f62dbbcf56f10fc4e3f6722a739539 | |
parent | 0b59c25f91002c1dec0d0d848e5aaefa5f213c85 (diff) |
arm64: percpu: Initialize ret in the default case
Clang warns that if the default case is taken, ret will be
uninitialized.
./arch/arm64/include/asm/percpu.h:196:2: warning: variable 'ret' is used
uninitialized whenever switch default is taken
[-Wsometimes-uninitialized]
default:
^~~~~~~
./arch/arm64/include/asm/percpu.h:200:9: note: uninitialized use occurs
here
return ret;
^~~
./arch/arm64/include/asm/percpu.h:157:19: note: initialize the variable
'ret' to silence this warning
unsigned long ret, loop;
^
= 0
This warning appears several times while building the erofs filesystem.
While it's not strictly wrong, the BUILD_BUG will prevent this from
becoming a true problem. Initialize ret to 0 in the default case right
before the BUILD_BUG to silence all of these warnings.
Reported-by: Prasad Sodagudi <psodagud@codeaurora.org>
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Signed-off-by: Dennis Zhou <dennis@kernel.org>
-rw-r--r-- | arch/arm64/include/asm/percpu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm64/include/asm/percpu.h b/arch/arm64/include/asm/percpu.h index 9234013e759e..21a81b59a0cc 100644 --- a/arch/arm64/include/asm/percpu.h +++ b/arch/arm64/include/asm/percpu.h | |||
@@ -96,6 +96,7 @@ static inline unsigned long __percpu_##op(void *ptr, \ | |||
96 | : [val] "Ir" (val)); \ | 96 | : [val] "Ir" (val)); \ |
97 | break; \ | 97 | break; \ |
98 | default: \ | 98 | default: \ |
99 | ret = 0; \ | ||
99 | BUILD_BUG(); \ | 100 | BUILD_BUG(); \ |
100 | } \ | 101 | } \ |
101 | \ | 102 | \ |
@@ -125,6 +126,7 @@ static inline unsigned long __percpu_read(void *ptr, int size) | |||
125 | ret = READ_ONCE(*(u64 *)ptr); | 126 | ret = READ_ONCE(*(u64 *)ptr); |
126 | break; | 127 | break; |
127 | default: | 128 | default: |
129 | ret = 0; | ||
128 | BUILD_BUG(); | 130 | BUILD_BUG(); |
129 | } | 131 | } |
130 | 132 | ||
@@ -194,6 +196,7 @@ static inline unsigned long __percpu_xchg(void *ptr, unsigned long val, | |||
194 | : [val] "r" (val)); | 196 | : [val] "r" (val)); |
195 | break; | 197 | break; |
196 | default: | 198 | default: |
199 | ret = 0; | ||
197 | BUILD_BUG(); | 200 | BUILD_BUG(); |
198 | } | 201 | } |
199 | 202 | ||