Lines Matching refs:jit_data
1765 struct s390_jit_data *jit_data; in bpf_int_jit_compile() local
1786 jit_data = fp->aux->jit_data; in bpf_int_jit_compile()
1787 if (!jit_data) { in bpf_int_jit_compile()
1788 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()
1789 if (!jit_data) { in bpf_int_jit_compile()
1793 fp->aux->jit_data = jit_data; in bpf_int_jit_compile()
1795 if (jit_data->ctx.addrs) { in bpf_int_jit_compile()
1796 jit = jit_data->ctx; in bpf_int_jit_compile()
1797 header = jit_data->header; in bpf_int_jit_compile()
1799 pass = jit_data->pass + 1; in bpf_int_jit_compile()
1841 jit_data->header = header; in bpf_int_jit_compile()
1842 jit_data->ctx = jit; in bpf_int_jit_compile()
1843 jit_data->pass = pass; in bpf_int_jit_compile()
1853 kfree(jit_data); in bpf_int_jit_compile()
1854 fp->aux->jit_data = NULL; in bpf_int_jit_compile()