Lines Matching refs:jit_data
1979 struct x64_jit_data *jit_data; in bpf_int_jit_compile() local
2004 jit_data = prog->aux->jit_data; in bpf_int_jit_compile()
2005 if (!jit_data) { in bpf_int_jit_compile()
2006 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL); in bpf_int_jit_compile()
2007 if (!jit_data) { in bpf_int_jit_compile()
2011 prog->aux->jit_data = jit_data; in bpf_int_jit_compile()
2013 addrs = jit_data->addrs; in bpf_int_jit_compile()
2015 ctx = jit_data->ctx; in bpf_int_jit_compile()
2016 oldproglen = jit_data->proglen; in bpf_int_jit_compile()
2017 image = jit_data->image; in bpf_int_jit_compile()
2018 header = jit_data->header; in bpf_int_jit_compile()
2095 jit_data->addrs = addrs; in bpf_int_jit_compile()
2096 jit_data->ctx = ctx; in bpf_int_jit_compile()
2097 jit_data->proglen = proglen; in bpf_int_jit_compile()
2098 jit_data->image = image; in bpf_int_jit_compile()
2099 jit_data->header = header; in bpf_int_jit_compile()
2113 kfree(jit_data); in bpf_int_jit_compile()
2114 prog->aux->jit_data = NULL; in bpf_int_jit_compile()