Lines Matching refs:jit_data
2291 struct s390_jit_data *jit_data; in bpf_int_jit_compile() local
2312 jit_data = fp->aux->jit_data; in bpf_int_jit_compile()
2313 if (!jit_data) { in bpf_int_jit_compile()
2314 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()
2315 if (!jit_data) { in bpf_int_jit_compile()
2319 fp->aux->jit_data = jit_data; in bpf_int_jit_compile()
2321 if (jit_data->ctx.addrs) { in bpf_int_jit_compile()
2322 jit = jit_data->ctx; in bpf_int_jit_compile()
2323 header = jit_data->header; in bpf_int_jit_compile()
2325 pass = jit_data->pass + 1; in bpf_int_jit_compile()
2371 jit_data->header = header; in bpf_int_jit_compile()
2372 jit_data->ctx = jit; in bpf_int_jit_compile()
2373 jit_data->pass = pass; in bpf_int_jit_compile()
2383 kfree(jit_data); in bpf_int_jit_compile()
2384 fp->aux->jit_data = NULL; in bpf_int_jit_compile()