Lines Matching refs:jit_data
2237 struct x64_jit_data *jit_data; in bpf_int_jit_compile() local
2263 jit_data = prog->aux->jit_data; in bpf_int_jit_compile()
2264 if (!jit_data) { in bpf_int_jit_compile()
2265 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()
2266 if (!jit_data) { in bpf_int_jit_compile()
2270 prog->aux->jit_data = jit_data; in bpf_int_jit_compile()
2272 addrs = jit_data->addrs; in bpf_int_jit_compile()
2274 ctx = jit_data->ctx; in bpf_int_jit_compile()
2275 oldproglen = jit_data->proglen; in bpf_int_jit_compile()
2276 image = jit_data->image; in bpf_int_jit_compile()
2277 header = jit_data->header; in bpf_int_jit_compile()
2357 jit_data->addrs = addrs; in bpf_int_jit_compile()
2358 jit_data->ctx = ctx; in bpf_int_jit_compile()
2359 jit_data->proglen = proglen; in bpf_int_jit_compile()
2360 jit_data->image = image; in bpf_int_jit_compile()
2361 jit_data->header = header; in bpf_int_jit_compile()
2375 kfree(jit_data); in bpf_int_jit_compile()
2376 prog->aux->jit_data = NULL; in bpf_int_jit_compile()