Lines Matching refs:addrs
44 u32 *addrs; member
61 u32 *addrs; in bpf_int_jit_compile() local
97 addrs = jit_data->addrs; in bpf_int_jit_compile()
98 if (addrs) { in bpf_int_jit_compile()
107 addrs = kcalloc(flen + 1, sizeof(*addrs), GFP_KERNEL); in bpf_int_jit_compile()
108 if (addrs == NULL) { in bpf_int_jit_compile()
120 if (bpf_jit_build_body(fp, 0, &cgctx, addrs, 0, false)) { in bpf_int_jit_compile()
135 if (bpf_jit_build_body(fp, 0, &cgctx, addrs, 0, false)) { in bpf_int_jit_compile()
148 addrs[fp->len] = cgctx.idx * 4; in bpf_int_jit_compile()
175 if (bpf_jit_build_body(fp, code_base, &cgctx, addrs, pass, extra_pass)) { in bpf_int_jit_compile()
207 bpf_prog_fill_jited_linfo(fp, addrs); in bpf_int_jit_compile()
209 kfree(addrs); in bpf_int_jit_compile()
213 jit_data->addrs = addrs; in bpf_int_jit_compile()