Home
last modified time | relevance | path

Searched refs:jit_data (Results 1 – 5 of 5) sorted by relevance

/Linux-v4.19/arch/x86/net/
Dbpf_jit_comp.c1067 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()
[all …]
/Linux-v4.19/arch/powerpc/net/
Dbpf_jit_comp64.c890 struct powerpc64_jit_data *jit_data; in bpf_int_jit_compile() local
912 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 …]
/Linux-v4.19/arch/arm64/net/
Dbpf_jit_comp.c810 struct arm64_jit_data *jit_data; in bpf_int_jit_compile() local
832 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 …]
/Linux-v4.19/arch/sparc/net/
Dbpf_jit_comp_64.c1426 struct sparc64_jit_data *jit_data; in bpf_int_jit_compile() local
1449 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 …]
/Linux-v4.19/include/linux/
Dbpf.h283 void *jit_data; /* JIT specific data. arch dependent */ member