Lines Matching refs:jit_data
1483 struct sparc64_jit_data *jit_data; in bpf_int_jit_compile() local
1506 jit_data = prog->aux->jit_data; in bpf_int_jit_compile()
1507 if (!jit_data) { in bpf_int_jit_compile()
1508 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()
1509 if (!jit_data) { in bpf_int_jit_compile()
1513 prog->aux->jit_data = jit_data; in bpf_int_jit_compile()
1515 if (jit_data->ctx.offset) { in bpf_int_jit_compile()
1516 ctx = jit_data->ctx; in bpf_int_jit_compile()
1517 image_ptr = jit_data->image; in bpf_int_jit_compile()
1518 header = jit_data->header; in bpf_int_jit_compile()
1607 jit_data->ctx = ctx; in bpf_int_jit_compile()
1608 jit_data->image = image_ptr; in bpf_int_jit_compile()
1609 jit_data->header = header; in bpf_int_jit_compile()
1620 kfree(jit_data); in bpf_int_jit_compile()
1621 prog->aux->jit_data = NULL; in bpf_int_jit_compile()