Lines Matching refs:jit_data
1104 struct jit_data *jit_data; in bpf_int_jit_compile() local
1129 jit_data = prog->aux->jit_data; in bpf_int_jit_compile()
1130 if (!jit_data) { in bpf_int_jit_compile()
1131 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()
1132 if (!jit_data) { in bpf_int_jit_compile()
1136 prog->aux->jit_data = jit_data; in bpf_int_jit_compile()
1138 if (jit_data->ctx.offset) { in bpf_int_jit_compile()
1139 ctx = jit_data->ctx; in bpf_int_jit_compile()
1140 image_ptr = jit_data->image; in bpf_int_jit_compile()
1141 header = jit_data->header; in bpf_int_jit_compile()
1214 if (extra_pass && ctx.idx != jit_data->ctx.idx) { in bpf_int_jit_compile()
1216 ctx.idx, jit_data->ctx.idx); in bpf_int_jit_compile()
1225 jit_data->ctx = ctx; in bpf_int_jit_compile()
1226 jit_data->image = image_ptr; in bpf_int_jit_compile()
1227 jit_data->header = header; in bpf_int_jit_compile()
1243 kfree(jit_data); in bpf_int_jit_compile()
1244 prog->aux->jit_data = NULL; in bpf_int_jit_compile()