Lines Matching refs:orig_node
1177 * Return: an orig_node matching the multicast address provided by ethhdr
1192 * Return: an orig_node which has the BATADV_MCAST_WANT_ALL_IPV4 flag set and
1198 struct batadv_orig_node *tmp_orig_node, *orig_node = NULL;
1207 orig_node = tmp_orig_node;
1212 return orig_node;
1219 * Return: an orig_node which has the BATADV_MCAST_WANT_ALL_IPV6 flag set
1225 struct batadv_orig_node *tmp_orig_node, *orig_node = NULL;
1234 orig_node = tmp_orig_node;
1239 return orig_node;
1247 * Return: an orig_node which has the BATADV_MCAST_WANT_ALL_IPV4 or
1270 * Return: an orig_node which has the BATADV_MCAST_WANT_ALL_UNSNOOPABLES flag
1276 struct batadv_orig_node *tmp_orig_node, *orig_node = NULL;
1285 orig_node = tmp_orig_node;
1290 return orig_node;
1297 * Return: an orig_node which has the BATADV_MCAST_WANT_NO_RTR4 flag unset and
1303 struct batadv_orig_node *tmp_orig_node, *orig_node = NULL;
1312 orig_node = tmp_orig_node;
1317 return orig_node;
1324 * Return: an orig_node which has the BATADV_MCAST_WANT_NO_RTR6 flag unset
1330 struct batadv_orig_node *tmp_orig_node, *orig_node = NULL;
1339 orig_node = tmp_orig_node;
1344 return orig_node;
1352 * Return: an orig_node which has no BATADV_MCAST_WANT_NO_RTR4 or
1443 * @orig_node: the originator to send the packet to
1450 struct batadv_orig_node *orig_node)
1458 if (batadv_bla_is_backbone_gw_orig(bat_priv, orig_node->orig, vid)) {
1464 orig_node, vid);
1505 orig_entry->orig_node);
1532 struct batadv_orig_node *orig_node;
1537 hlist_for_each_entry_rcu(orig_node,
1546 batadv_mcast_forw_send_orig(bat_priv, newskb, vid, orig_node);
1569 struct batadv_orig_node *orig_node;
1574 hlist_for_each_entry_rcu(orig_node,
1583 batadv_mcast_forw_send_orig(bat_priv, newskb, vid, orig_node);
1635 struct batadv_orig_node *orig_node;
1640 hlist_for_each_entry_rcu(orig_node,
1649 batadv_mcast_forw_send_orig(bat_priv, newskb, vid, orig_node);
1672 struct batadv_orig_node *orig_node;
1677 hlist_for_each_entry_rcu(orig_node,
1686 batadv_mcast_forw_send_orig(bat_priv, newskb, vid, orig_node);
1772 * @orig: the orig_node which multicast state might have changed of
1818 * @orig: the orig_node which multicast state might have changed of
1863 * @orig: the orig_node which multicast state might have changed of
1908 * @orig: the orig_node which multicast state might have changed of
1953 * @orig: the orig_node which multicast state might have changed of
2029 * @orig: the orig_node of the ogm
2143 struct batadv_orig_node *orig_node;
2158 hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
2160 &orig_node->capa_initialized))
2164 &orig_node->capabilities)) {
2165 seq_printf(seq, "%pM -\n", orig_node->orig);
2169 flags = orig_node->mcast_flags;
2171 seq_printf(seq, "%pM [%c%c%c%s%s]\n", orig_node->orig,
2231 * @orig_node: originator to dump the multicast flags of
2238 struct batadv_orig_node *orig_node)
2251 orig_node->orig)) {
2257 &orig_node->capabilities)) {
2259 orig_node->mcast_flags)) {
2287 struct batadv_orig_node *orig_node;
2293 hlist_for_each_entry(orig_node, &hash->table[bucket], hash_entry) {
2295 &orig_node->capa_initialized))
2301 if (batadv_mcast_flags_dump_entry(msg, portid, cb, orig_node)) {