Lines Matching refs:jit_data
1426 struct sparc64_jit_data *jit_data; in bpf_int_jit_compile() local
1449 jit_data = prog->aux->jit_data; in bpf_int_jit_compile()
1450 if (!jit_data) { in bpf_int_jit_compile()
1451 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()
1452 if (!jit_data) { in bpf_int_jit_compile()
1456 prog->aux->jit_data = jit_data; in bpf_int_jit_compile()
1458 if (jit_data->ctx.offset) { in bpf_int_jit_compile()
1459 ctx = jit_data->ctx; in bpf_int_jit_compile()
1460 image_ptr = jit_data->image; in bpf_int_jit_compile()
1461 header = jit_data->header; in bpf_int_jit_compile()
1529 jit_data->ctx = ctx; in bpf_int_jit_compile()
1530 jit_data->image = image_ptr; in bpf_int_jit_compile()
1531 jit_data->header = header; in bpf_int_jit_compile()
1541 kfree(jit_data); in bpf_int_jit_compile()
1542 prog->aux->jit_data = NULL; in bpf_int_jit_compile()