Lines Matching refs:jit_data
1787 struct s390_jit_data *jit_data; in bpf_int_jit_compile() local
1808 jit_data = fp->aux->jit_data; in bpf_int_jit_compile()
1809 if (!jit_data) { in bpf_int_jit_compile()
1810 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()
1811 if (!jit_data) { in bpf_int_jit_compile()
1815 fp->aux->jit_data = jit_data; in bpf_int_jit_compile()
1817 if (jit_data->ctx.addrs) { in bpf_int_jit_compile()
1818 jit = jit_data->ctx; in bpf_int_jit_compile()
1819 header = jit_data->header; in bpf_int_jit_compile()
1821 pass = jit_data->pass + 1; in bpf_int_jit_compile()
1863 jit_data->header = header; in bpf_int_jit_compile()
1864 jit_data->ctx = jit; in bpf_int_jit_compile()
1865 jit_data->pass = pass; in bpf_int_jit_compile()
1875 kfree(jit_data); in bpf_int_jit_compile()
1876 fp->aux->jit_data = NULL; in bpf_int_jit_compile()