diff options
author | Markos Chandras <[email protected]> | 2014-06-23 10:38:54 +0100 |
---|---|---|
committer | Ralf Baechle <[email protected]> | 2014-06-26 10:48:21 +0100 |
commit | 78b95b662c4c633206c997fe2bd25a9c680e047a (patch) | |
tree | cc75ad0cfb0b1fb7f59a13e436e47c050473ce15 | |
parent | 91a41d7f972b1d78b4bcbb61ada4a33c9d7ba8a3 (diff) |
MIPS: bpf: Use pr_debug instead of pr_warn for unhandled opcodes
We should prevent spamming the logs during normal execution of bpf-jit.
Signed-off-by: Markos Chandras <[email protected]>
Suggested-by: Alexei Starovoitov <[email protected]>
Cc: David S. Miller <[email protected]>
Cc: Daniel Borkmann <[email protected]>
Cc: Alexei Starovoitov <[email protected]>
Cc: [email protected]
Cc: [email protected]
Patchwork: https://patchwork.linux-mips.org/patch/7129/
Signed-off-by: Ralf Baechle <[email protected]>
-rw-r--r-- | arch/mips/net/bpf_jit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/net/bpf_jit.c b/arch/mips/net/bpf_jit.c index d852bb6d3fe3..1d228d27d759 100644 --- a/arch/mips/net/bpf_jit.c +++ b/arch/mips/net/bpf_jit.c @@ -1345,8 +1345,8 @@ jmp_cmp: emit_half_load(r_A, r_skb, off, ctx); break; default: - pr_warn("%s: Unhandled opcode: 0x%02x\n", __FILE__, - inst->code); + pr_debug("%s: Unhandled opcode: 0x%02x\n", __FILE__, + inst->code); return -1; } } |