Lines Matching refs:jit_data
1469 struct sparc64_jit_data *jit_data; in bpf_int_jit_compile() local
1492 jit_data = prog->aux->jit_data; in bpf_int_jit_compile()
1493 if (!jit_data) { in bpf_int_jit_compile()
1494 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()
1495 if (!jit_data) { in bpf_int_jit_compile()
1499 prog->aux->jit_data = jit_data; in bpf_int_jit_compile()
1501 if (jit_data->ctx.offset) { in bpf_int_jit_compile()
1502 ctx = jit_data->ctx; in bpf_int_jit_compile()
1503 image_ptr = jit_data->image; in bpf_int_jit_compile()
1504 header = jit_data->header; in bpf_int_jit_compile()
1593 jit_data->ctx = ctx; in bpf_int_jit_compile()
1594 jit_data->image = image_ptr; in bpf_int_jit_compile()
1595 jit_data->header = header; in bpf_int_jit_compile()
1606 kfree(jit_data); in bpf_int_jit_compile()
1607 prog->aux->jit_data = NULL; in bpf_int_jit_compile()