diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-08-22 23:46:06 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-08-22 16:18:00 -0700 |
commit | 4a00aa057759d713e1296ecbc614fa560d569977 (patch) | |
tree | 302fa8f14434955ed03cb0838eef931a975b44eb /arch/mips/net | |
parent | 9695fe6f21e3b06a7086f62851c0df16369fc223 (diff) | |
download | linux-4a00aa057759d713e1296ecbc614fa560d569977.tar.bz2 |
MIPS,bpf: fix missing break in switch statement
There is a missing break causing a fall-through and setting
ctx.use_bbit_insns to the wrong value. Fix this by adding the
missing break.
Detected with cppcheck:
"Variable 'ctx.use_bbit_insns' is reassigned a value before the old
one has been used. 'break;' missing?"
Fixes: 8d8d18c3283f ("MIPS,bpf: Fix using smp_processor_id() in preemptible splat.")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: David Daney <david.daney@cavium.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/mips/net')
-rw-r--r-- | arch/mips/net/ebpf_jit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/net/ebpf_jit.c b/arch/mips/net/ebpf_jit.c index 44ddc12cbb0e..7646891c4e9b 100644 --- a/arch/mips/net/ebpf_jit.c +++ b/arch/mips/net/ebpf_jit.c @@ -1892,6 +1892,7 @@ struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *prog) case CPU_CAVIUM_OCTEON2: case CPU_CAVIUM_OCTEON3: ctx.use_bbit_insns = 1; + break; default: ctx.use_bbit_insns = 0; } |