Lines Matching refs:jit_data
1001 struct arm64_jit_data *jit_data; in bpf_int_jit_compile() local
1022 jit_data = prog->aux->jit_data; in bpf_int_jit_compile()
1023 if (!jit_data) { in bpf_int_jit_compile()
1024 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()
1025 if (!jit_data) { in bpf_int_jit_compile()
1029 prog->aux->jit_data = jit_data; in bpf_int_jit_compile()
1031 if (jit_data->ctx.offset) { in bpf_int_jit_compile()
1032 ctx = jit_data->ctx; in bpf_int_jit_compile()
1033 image_ptr = jit_data->image; in bpf_int_jit_compile()
1034 header = jit_data->header; in bpf_int_jit_compile()
1110 if (extra_pass && ctx.idx != jit_data->ctx.idx) { in bpf_int_jit_compile()
1112 ctx.idx, jit_data->ctx.idx); in bpf_int_jit_compile()
1120 jit_data->ctx = ctx; in bpf_int_jit_compile()
1121 jit_data->image = image_ptr; in bpf_int_jit_compile()
1122 jit_data->header = header; in bpf_int_jit_compile()
1132 kfree(jit_data); in bpf_int_jit_compile()
1133 prog->aux->jit_data = NULL; in bpf_int_jit_compile()