bpf: Fix spelling mistake "arithmatic" -> "arithmetic" in test_verifier
There are a couple of spelling mistakes in two literal strings, fix them. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Link: https://lore.kernel.org/bpf/20200331100030.41372-1-colin.king@canonical.com
This commit is contained in:
parent
7d32e69310
commit
250e778fe1
|
@ -501,7 +501,7 @@
|
||||||
.result = REJECT
|
.result = REJECT
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bounds check mixed 32bit and 64bit arithmatic. test1",
|
"bounds check mixed 32bit and 64bit arithmetic. test1",
|
||||||
.insns = {
|
.insns = {
|
||||||
BPF_MOV64_IMM(BPF_REG_0, 0),
|
BPF_MOV64_IMM(BPF_REG_0, 0),
|
||||||
BPF_MOV64_IMM(BPF_REG_1, -1),
|
BPF_MOV64_IMM(BPF_REG_1, -1),
|
||||||
|
@ -520,7 +520,7 @@
|
||||||
.result = ACCEPT
|
.result = ACCEPT
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bounds check mixed 32bit and 64bit arithmatic. test2",
|
"bounds check mixed 32bit and 64bit arithmetic. test2",
|
||||||
.insns = {
|
.insns = {
|
||||||
BPF_MOV64_IMM(BPF_REG_0, 0),
|
BPF_MOV64_IMM(BPF_REG_0, 0),
|
||||||
BPF_MOV64_IMM(BPF_REG_1, -1),
|
BPF_MOV64_IMM(BPF_REG_1, -1),
|
||||||
|
|
Loading…
Reference in New Issue