Lines Matching refs:jit_data
1725 struct s390_jit_data *jit_data; in bpf_int_jit_compile() local
1746 jit_data = fp->aux->jit_data; in bpf_int_jit_compile()
1747 if (!jit_data) { in bpf_int_jit_compile()
1748 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()
1749 if (!jit_data) { in bpf_int_jit_compile()
1753 fp->aux->jit_data = jit_data; in bpf_int_jit_compile()
1755 if (jit_data->ctx.addrs) { in bpf_int_jit_compile()
1756 jit = jit_data->ctx; in bpf_int_jit_compile()
1757 header = jit_data->header; in bpf_int_jit_compile()
1759 pass = jit_data->pass + 1; in bpf_int_jit_compile()
1801 jit_data->header = header; in bpf_int_jit_compile()
1802 jit_data->ctx = jit; in bpf_int_jit_compile()
1803 jit_data->pass = pass; in bpf_int_jit_compile()
1813 kfree(jit_data); in bpf_int_jit_compile()
1814 fp->aux->jit_data = NULL; in bpf_int_jit_compile()