We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4ef55f commit 5cc19c2Copy full SHA for 5cc19c2
tools/testing/selftests/bpf/verifier/basic_instr.c
@@ -176,19 +176,19 @@
176
.retval = 1,
177
},
178
{
179
- "invalid 64-bit BPF_END",
+ "invalid 64-bit BPF_END with BPF_TO_BE",
180
.insns = {
181
BPF_MOV32_IMM(BPF_REG_0, 0),
182
183
- .code = BPF_ALU64 | BPF_END | BPF_TO_LE,
+ .code = BPF_ALU64 | BPF_END | BPF_TO_BE,
184
.dst_reg = BPF_REG_0,
185
.src_reg = 0,
186
.off = 0,
187
.imm = 32,
188
189
BPF_EXIT_INSN(),
190
191
- .errstr = "unknown opcode d7",
+ .errstr = "unknown opcode df",
192
.result = REJECT,
193
194
0 commit comments