Lines Matching refs:jit_data
95 struct powerpc64_jit_data *jit_data; in bpf_int_jit_compile() local
117 jit_data = fp->aux->jit_data; in bpf_int_jit_compile()
118 if (!jit_data) { in bpf_int_jit_compile()
119 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()
120 if (!jit_data) { in bpf_int_jit_compile()
124 fp->aux->jit_data = jit_data; in bpf_int_jit_compile()
128 addrs = jit_data->addrs; in bpf_int_jit_compile()
130 cgctx = jit_data->ctx; in bpf_int_jit_compile()
131 image = jit_data->image; in bpf_int_jit_compile()
132 bpf_hdr = jit_data->header; in bpf_int_jit_compile()
133 proglen = jit_data->proglen; in bpf_int_jit_compile()
249 kfree(jit_data); in bpf_int_jit_compile()
250 fp->aux->jit_data = NULL; in bpf_int_jit_compile()
252 jit_data->addrs = addrs; in bpf_int_jit_compile()
253 jit_data->ctx = cgctx; in bpf_int_jit_compile()
254 jit_data->proglen = proglen; in bpf_int_jit_compile()
255 jit_data->image = image; in bpf_int_jit_compile()
256 jit_data->header = bpf_hdr; in bpf_int_jit_compile()