Lines Matching defs:new
15 * Alan Cox : new skbuff lists, look ma no backlogs!
23 * Alan Cox : Use new kernel side addressing
1573 static void __fanout_set_data_bpf(struct packet_fanout *f, struct bpf_prog *new)
1579 rcu_assign_pointer(f->bpf_prog, new);
1591 struct bpf_prog *new;
1602 ret = bpf_prog_create_from_user(&new, &fprog, NULL, false);
1606 __fanout_set_data_bpf(po->fanout, new);
1613 struct bpf_prog *new;
1623 new = bpf_prog_get_type(fd, BPF_PROG_TYPE_SOCKET_FILTER);
1624 if (IS_ERR(new))
1625 return PTR_ERR(new);
1627 __fanout_set_data_bpf(po->fanout, new);
3700 /* Free the new element ... */