Lines Matching refs:jit_data
1067 struct x64_jit_data *jit_data; in bpf_int_jit_compile() local
1092 jit_data = prog->aux->jit_data; in bpf_int_jit_compile()
1093 if (!jit_data) { in bpf_int_jit_compile()
1094 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()
1095 if (!jit_data) { in bpf_int_jit_compile()
1099 prog->aux->jit_data = jit_data; in bpf_int_jit_compile()
1101 addrs = jit_data->addrs; in bpf_int_jit_compile()
1103 ctx = jit_data->ctx; in bpf_int_jit_compile()
1104 oldproglen = jit_data->proglen; in bpf_int_jit_compile()
1105 image = jit_data->image; in bpf_int_jit_compile()
1106 header = jit_data->header; in bpf_int_jit_compile()
1170 jit_data->addrs = addrs; in bpf_int_jit_compile()
1171 jit_data->ctx = ctx; in bpf_int_jit_compile()
1172 jit_data->proglen = proglen; in bpf_int_jit_compile()
1173 jit_data->image = image; in bpf_int_jit_compile()
1174 jit_data->header = header; in bpf_int_jit_compile()
1186 kfree(jit_data); in bpf_int_jit_compile()
1187 prog->aux->jit_data = NULL; in bpf_int_jit_compile()