Lines Matching refs:jit_data
810 struct arm64_jit_data *jit_data; in bpf_int_jit_compile() local
832 jit_data = prog->aux->jit_data; in bpf_int_jit_compile()
833 if (!jit_data) { in bpf_int_jit_compile()
834 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()
835 if (!jit_data) { in bpf_int_jit_compile()
839 prog->aux->jit_data = jit_data; in bpf_int_jit_compile()
841 if (jit_data->ctx.offset) { in bpf_int_jit_compile()
842 ctx = jit_data->ctx; in bpf_int_jit_compile()
843 image_ptr = jit_data->image; in bpf_int_jit_compile()
844 header = jit_data->header; in bpf_int_jit_compile()
913 if (extra_pass && ctx.idx != jit_data->ctx.idx) { in bpf_int_jit_compile()
915 ctx.idx, jit_data->ctx.idx); in bpf_int_jit_compile()
923 jit_data->ctx = ctx; in bpf_int_jit_compile()
924 jit_data->image = image_ptr; in bpf_int_jit_compile()
925 jit_data->header = header; in bpf_int_jit_compile()
934 kfree(jit_data); in bpf_int_jit_compile()
935 prog->aux->jit_data = NULL; in bpf_int_jit_compile()