Lines Matching refs:br_dst
113 struct br_ip br_dst; in br_mdb_ip4_get() local
115 memset(&br_dst, 0, sizeof(br_dst)); in br_mdb_ip4_get()
116 br_dst.dst.ip4 = dst; in br_mdb_ip4_get()
117 br_dst.proto = htons(ETH_P_IP); in br_mdb_ip4_get()
118 br_dst.vid = vid; in br_mdb_ip4_get()
120 return br_mdb_ip_get(br, &br_dst); in br_mdb_ip4_get()
128 struct br_ip br_dst; in br_mdb_ip6_get() local
130 memset(&br_dst, 0, sizeof(br_dst)); in br_mdb_ip6_get()
131 br_dst.dst.ip6 = *dst; in br_mdb_ip6_get()
132 br_dst.proto = htons(ETH_P_IPV6); in br_mdb_ip6_get()
133 br_dst.vid = vid; in br_mdb_ip6_get()
135 return br_mdb_ip_get(br, &br_dst); in br_mdb_ip6_get()