Lines Matching refs:jit_data
1084 struct powerpc64_jit_data *jit_data; in bpf_int_jit_compile() local
1106 jit_data = fp->aux->jit_data; in bpf_int_jit_compile()
1107 if (!jit_data) { in bpf_int_jit_compile()
1108 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()
1109 if (!jit_data) { in bpf_int_jit_compile()
1113 fp->aux->jit_data = jit_data; in bpf_int_jit_compile()
1117 addrs = jit_data->addrs; in bpf_int_jit_compile()
1119 cgctx = jit_data->ctx; in bpf_int_jit_compile()
1120 image = jit_data->image; in bpf_int_jit_compile()
1121 bpf_hdr = jit_data->header; in bpf_int_jit_compile()
1122 proglen = jit_data->proglen; in bpf_int_jit_compile()
1232 kfree(jit_data); in bpf_int_jit_compile()
1233 fp->aux->jit_data = NULL; in bpf_int_jit_compile()
1235 jit_data->addrs = addrs; in bpf_int_jit_compile()
1236 jit_data->ctx = cgctx; in bpf_int_jit_compile()
1237 jit_data->proglen = proglen; in bpf_int_jit_compile()
1238 jit_data->image = image; in bpf_int_jit_compile()
1239 jit_data->header = bpf_hdr; in bpf_int_jit_compile()