net: bpf: arm64: minor fix of type in jited

Commit 286aad3c4014 ("net: bpf: be friendly to kmemcheck") changed the
type of jited from a bitfield into a bool. As this commmit wasn't available
at the time when arm64 eBPF JIT was merged, fix it up now as net is merged
into mainline.

Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Cc: Zi Shen Lim <zlim.lnx@gmail.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>

authored by Daniel Borkmann and committed by Catalin Marinas 74c3deac 30d3d94c

+1 -1
+1 -1
arch/arm64/net/bpf_jit_comp.c
··· 722 723 set_memory_ro((unsigned long)header, header->pages); 724 prog->bpf_func = (void *)ctx.image; 725 - prog->jited = 1; 726 out: 727 kfree(ctx.offset); 728 }
··· 722 723 set_memory_ro((unsigned long)header, header->pages); 724 prog->bpf_func = (void *)ctx.image; 725 + prog->jited = true; 726 out: 727 kfree(ctx.offset); 728 }