Lines Matching refs:jit_data
890 struct powerpc64_jit_data *jit_data; in bpf_int_jit_compile() local
912 jit_data = fp->aux->jit_data; in bpf_int_jit_compile()
913 if (!jit_data) { in bpf_int_jit_compile()
914 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()
915 if (!jit_data) { in bpf_int_jit_compile()
919 fp->aux->jit_data = jit_data; in bpf_int_jit_compile()
923 addrs = jit_data->addrs; in bpf_int_jit_compile()
925 cgctx = jit_data->ctx; in bpf_int_jit_compile()
926 image = jit_data->image; in bpf_int_jit_compile()
927 bpf_hdr = jit_data->header; in bpf_int_jit_compile()
928 proglen = jit_data->proglen; in bpf_int_jit_compile()
1007 kfree(jit_data); in bpf_int_jit_compile()
1008 fp->aux->jit_data = NULL; in bpf_int_jit_compile()
1010 jit_data->addrs = addrs; in bpf_int_jit_compile()
1011 jit_data->ctx = cgctx; in bpf_int_jit_compile()
1012 jit_data->proglen = proglen; in bpf_int_jit_compile()
1013 jit_data->image = image; in bpf_int_jit_compile()
1014 jit_data->header = bpf_hdr; in bpf_int_jit_compile()