Lines Matching defs:existing
2727 struct bpf_prog_array_item *existing, *new;
2731 /* Figure out how many existing progs we need to carry over to
2735 existing = old_array->items;
2736 for (; existing->prog; existing++) {
2737 if (existing->prog == exclude_prog) {
2741 if (existing->prog != &dummy_bpf_prog.prog)
2743 if (existing->prog == include_prog)
2770 existing = old_array->items;
2771 for (; existing->prog; existing++) {
2772 if (existing->prog == exclude_prog ||
2773 existing->prog == &dummy_bpf_prog.prog)
2776 new->prog = existing->prog;
2777 new->bpf_cookie = existing->bpf_cookie;