• Home
  • Raw
  • Download

Lines Matching refs:b

687 static int cmp_nla_srh(struct seg6_local_lwt *a, struct seg6_local_lwt *b)  in cmp_nla_srh()  argument
691 if (len != ((b->srh->hdrlen + 1) << 3)) in cmp_nla_srh()
694 return memcmp(a->srh, b->srh, len); in cmp_nla_srh()
712 static int cmp_nla_table(struct seg6_local_lwt *a, struct seg6_local_lwt *b) in cmp_nla_table() argument
714 if (a->table != b->table) in cmp_nla_table()
741 static int cmp_nla_nh4(struct seg6_local_lwt *a, struct seg6_local_lwt *b) in cmp_nla_nh4() argument
743 return memcmp(&a->nh4, &b->nh4, sizeof(struct in_addr)); in cmp_nla_nh4()
767 static int cmp_nla_nh6(struct seg6_local_lwt *a, struct seg6_local_lwt *b) in cmp_nla_nh6() argument
769 return memcmp(&a->nh6, &b->nh6, sizeof(struct in6_addr)); in cmp_nla_nh6()
787 static int cmp_nla_iif(struct seg6_local_lwt *a, struct seg6_local_lwt *b) in cmp_nla_iif() argument
789 if (a->iif != b->iif) in cmp_nla_iif()
810 static int cmp_nla_oif(struct seg6_local_lwt *a, struct seg6_local_lwt *b) in cmp_nla_oif() argument
812 if (a->oif != b->oif) in cmp_nla_oif()
877 static int cmp_nla_bpf(struct seg6_local_lwt *a, struct seg6_local_lwt *b) in cmp_nla_bpf() argument
879 if (!a->bpf.name && !b->bpf.name) in cmp_nla_bpf()
882 if (!a->bpf.name || !b->bpf.name) in cmp_nla_bpf()
885 return strcmp(a->bpf.name, b->bpf.name); in cmp_nla_bpf()
891 int (*cmp)(struct seg6_local_lwt *a, struct seg6_local_lwt *b);
1076 struct lwtunnel_state *b) in seg6_local_cmp_encap() argument
1083 slwt_b = seg6_local_lwtunnel(b); in seg6_local_cmp_encap()