Searched refs:jit_data (Results 1 – 5 of 5) sorted by relevance
1067 struct x64_jit_data *jit_data; in bpf_int_jit_compile() local1092 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()[all …]
890 struct powerpc64_jit_data *jit_data; in bpf_int_jit_compile() local912 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()[all …]
810 struct arm64_jit_data *jit_data; in bpf_int_jit_compile() local832 jit_data = prog->aux->jit_data; in bpf_int_jit_compile()833 if (!jit_data) { in bpf_int_jit_compile()834 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()835 if (!jit_data) { in bpf_int_jit_compile()839 prog->aux->jit_data = jit_data; in bpf_int_jit_compile()841 if (jit_data->ctx.offset) { in bpf_int_jit_compile()842 ctx = jit_data->ctx; in bpf_int_jit_compile()843 image_ptr = jit_data->image; in bpf_int_jit_compile()844 header = jit_data->header; in bpf_int_jit_compile()[all …]
1426 struct sparc64_jit_data *jit_data; in bpf_int_jit_compile() local1449 jit_data = prog->aux->jit_data; in bpf_int_jit_compile()1450 if (!jit_data) { in bpf_int_jit_compile()1451 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()1452 if (!jit_data) { in bpf_int_jit_compile()1456 prog->aux->jit_data = jit_data; in bpf_int_jit_compile()1458 if (jit_data->ctx.offset) { in bpf_int_jit_compile()1459 ctx = jit_data->ctx; in bpf_int_jit_compile()1460 image_ptr = jit_data->image; in bpf_int_jit_compile()1461 header = jit_data->header; in bpf_int_jit_compile()[all …]
283 void *jit_data; /* JIT specific data. arch dependent */ member