projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e8278d4
)
powerpc/bpf ppc32: Do not emit zero extend instruction for 64-bit BPF_END
author
Naveen N. Rao
<naveen.n.rao@linux.vnet.ibm.com>
Tue, 5 Oct 2021 20:25:28 +0000
(
01:55
+0530)
committer
Michael Ellerman
<mpe@ellerman.id.au>
Thu, 7 Oct 2021 08:52:59 +0000
(19:52 +1100)
Suppress emitting zero extend instruction for 64-bit BPF_END_FROM_[L|B]E
operation.
Fixes: 51c66ad849a703 ("powerpc/bpf: Implement extended BPF on PPC32")
Signed-off-by: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
Reviewed-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link:
https://lore.kernel.org/r/b4e3c3546121315a8e2059b19a1bda84971816e4.1633464148.git.naveen.n.rao@linux.vnet.ibm.com
arch/powerpc/net/bpf_jit_comp32.c
patch
|
blob
|
history
diff --git
a/arch/powerpc/net/bpf_jit_comp32.c
b/arch/powerpc/net/bpf_jit_comp32.c
index 7c65de9ed4fa641a2d3dc9753be2b354370a41c5..68dc8a8231de0453d72e624feec426e261d24409 100644
(file)
--- a/
arch/powerpc/net/bpf_jit_comp32.c
+++ b/
arch/powerpc/net/bpf_jit_comp32.c
@@
-1107,7
+1107,7
@@
cond_branch:
return -EOPNOTSUPP;
}
if (BPF_CLASS(code) == BPF_ALU && !fp->aux->verifier_zext &&
- !insn_is_zext(&insn[i + 1]))
+ !insn_is_zext(&insn[i + 1])
&& !(BPF_OP(code) == BPF_END && imm == 64)
)
EMIT(PPC_RAW_LI(dst_reg_h, 0));
}