Lines Matching refs:addrs
121 u32 *addrs; member
138 u32 *addrs; in bpf_int_jit_compile() local
177 addrs = jit_data->addrs; in bpf_int_jit_compile()
178 if (addrs) { in bpf_int_jit_compile()
196 addrs = kcalloc(flen + 1, sizeof(*addrs), GFP_KERNEL); in bpf_int_jit_compile()
197 if (addrs == NULL) { in bpf_int_jit_compile()
209 if (bpf_jit_build_body(fp, NULL, NULL, &cgctx, addrs, 0, false)) { in bpf_int_jit_compile()
224 if (bpf_jit_build_body(fp, NULL, NULL, &cgctx, addrs, 0, false)) { in bpf_int_jit_compile()
237 addrs[fp->len] = cgctx.idx * 4; in bpf_int_jit_compile()
266 if (bpf_jit_build_body(fp, code_base, fcode_base, &cgctx, addrs, pass, in bpf_int_jit_compile()
302 bpf_prog_fill_jited_linfo(fp, addrs); in bpf_int_jit_compile()
304 kfree(addrs); in bpf_int_jit_compile()
308 jit_data->addrs = addrs; in bpf_int_jit_compile()
422 kvfree(jit_data->addrs); in bpf_jit_free()