Skip to content

Commit de04e40

Browse files
hbathinimpe
authored andcommitted
powerpc/bpf: rename powerpc64_jit_data to powerpc_jit_data
powerpc64_jit_data is a misnomer as it is meant for both ppc32 and ppc64. Rename it to powerpc_jit_data. Signed-off-by: Hari Bathini <hbathini@linux.ibm.com> Acked-by: Song Liu <song@kernel.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://msgid.link/20231020141358.643575-5-hbathini@linux.ibm.com
1 parent 033ffaf commit de04e40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/powerpc/net/bpf_jit_comp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ int bpf_jit_emit_exit_insn(u32 *image, struct codegen_context *ctx, int tmp_reg,
4343
return 0;
4444
}
4545

46-
struct powerpc64_jit_data {
46+
struct powerpc_jit_data {
4747
struct bpf_binary_header *header;
4848
u32 *addrs;
4949
u8 *image;
@@ -63,7 +63,7 @@ struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *fp)
6363
u8 *image = NULL;
6464
u32 *code_base;
6565
u32 *addrs;
66-
struct powerpc64_jit_data *jit_data;
66+
struct powerpc_jit_data *jit_data;
6767
struct codegen_context cgctx;
6868
int pass;
6969
int flen;

0 commit comments

Comments
 (0)