Lines Matching refs:newts
376 struct lwtunnel_state *newts; in bpf_build_state() local
391 newts = lwtunnel_state_alloc(sizeof(*bpf)); in bpf_build_state()
392 if (!newts) in bpf_build_state()
395 newts->type = LWTUNNEL_ENCAP_BPF; in bpf_build_state()
396 bpf = bpf_lwt_lwtunnel(newts); in bpf_build_state()
399 newts->flags |= LWTUNNEL_STATE_INPUT_REDIRECT; in bpf_build_state()
407 newts->flags |= LWTUNNEL_STATE_OUTPUT_REDIRECT; in bpf_build_state()
415 newts->flags |= LWTUNNEL_STATE_XMIT_REDIRECT; in bpf_build_state()
430 newts->headroom = headroom; in bpf_build_state()
434 *ts = newts; in bpf_build_state()
439 bpf_destroy_state(newts); in bpf_build_state()
440 kfree(newts); in bpf_build_state()