Lines Matching refs:jit_data
2250 struct x64_jit_data *jit_data; in bpf_int_jit_compile() local
2276 jit_data = prog->aux->jit_data; in bpf_int_jit_compile()
2277 if (!jit_data) { in bpf_int_jit_compile()
2278 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()
2279 if (!jit_data) { in bpf_int_jit_compile()
2283 prog->aux->jit_data = jit_data; in bpf_int_jit_compile()
2285 addrs = jit_data->addrs; in bpf_int_jit_compile()
2287 ctx = jit_data->ctx; in bpf_int_jit_compile()
2288 oldproglen = jit_data->proglen; in bpf_int_jit_compile()
2289 image = jit_data->image; in bpf_int_jit_compile()
2290 header = jit_data->header; in bpf_int_jit_compile()
2370 jit_data->addrs = addrs; in bpf_int_jit_compile()
2371 jit_data->ctx = ctx; in bpf_int_jit_compile()
2372 jit_data->proglen = proglen; in bpf_int_jit_compile()
2373 jit_data->image = image; in bpf_int_jit_compile()
2374 jit_data->header = header; in bpf_int_jit_compile()
2388 kfree(jit_data); in bpf_int_jit_compile()
2389 prog->aux->jit_data = NULL; in bpf_int_jit_compile()