Skip to content

Commit d8dc09a

Browse files
JuliaLawallborkmann
authored andcommitted
bpf, arm: Fix various typos in comments
Various spelling mistakes in comments. Detected with the help of Coccinelle. Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Link: https://lore.kernel.org/bpf/20220318103729.157574-9-Julia.Lawall@inria.fr
1 parent d0f325c commit d8dc09a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/arm/net/bpf_jit_32.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1864,7 +1864,7 @@ static int build_body(struct jit_ctx *ctx)
18641864
if (ctx->target == NULL)
18651865
ctx->offsets[i] = ctx->idx;
18661866

1867-
/* If unsuccesfull, return with error code */
1867+
/* If unsuccesful, return with error code */
18681868
if (ret)
18691869
return ret;
18701870
}
@@ -1973,7 +1973,7 @@ struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *prog)
19731973
* for jit, although it can decrease the size of the image.
19741974
*
19751975
* As each arm instruction is of length 32bit, we are translating
1976-
* number of JITed intructions into the size required to store these
1976+
* number of JITed instructions into the size required to store these
19771977
* JITed code.
19781978
*/
19791979
image_size = sizeof(u32) * ctx.idx;

0 commit comments

Comments
 (0)