Lines Matching refs:newts
378 struct lwtunnel_state *newts; in bpf_build_state() local
393 newts = lwtunnel_state_alloc(sizeof(*bpf)); in bpf_build_state()
394 if (!newts) in bpf_build_state()
397 newts->type = LWTUNNEL_ENCAP_BPF; in bpf_build_state()
398 bpf = bpf_lwt_lwtunnel(newts); in bpf_build_state()
401 newts->flags |= LWTUNNEL_STATE_INPUT_REDIRECT; in bpf_build_state()
409 newts->flags |= LWTUNNEL_STATE_OUTPUT_REDIRECT; in bpf_build_state()
417 newts->flags |= LWTUNNEL_STATE_XMIT_REDIRECT; in bpf_build_state()
432 newts->headroom = headroom; in bpf_build_state()
436 *ts = newts; in bpf_build_state()
441 bpf_destroy_state(newts); in bpf_build_state()
442 kfree(newts); in bpf_build_state()