Lines Matching defs:dst
30 .key_offset = offsetof(struct mesh_path, dst),
184 prepare_for_gate(skb, gate_mpath->dst, gate_mpath);
195 gate_mpath->dst, skb_queue_len(&gate_mpath->frame_queue));
206 static struct mesh_path *mpath_lookup(struct mesh_table *tbl, const u8 *dst,
211 mpath = rhashtable_lookup(&tbl->rhead, dst, mesh_rht_params);
224 * @dst: hardware address (ETH_ALEN length) of destination
231 mesh_path_lookup(struct ieee80211_sub_if_data *sdata, const u8 *dst)
233 return mpath_lookup(&sdata->u.mesh.mesh_paths, dst, sdata);
237 mpp_path_lookup(struct ieee80211_sub_if_data *sdata, const u8 *dst)
239 return mpath_lookup(&sdata->u.mesh.mpp_paths, dst, sdata);
323 mpath->dst, mpath->sdata->u.mesh.num_gates);
349 mpath->dst, mpath->sdata->u.mesh.num_gates);
363 const u8 *dst, gfp_t gfp_flags)
371 memcpy(new_mpath->dst, dst, ETH_ALEN);
386 * @dst: destination address of the path (ETH_ALEN length)
394 const u8 *dst)
399 if (ether_addr_equal(dst, sdata->vif.addr))
403 if (is_multicast_ether_addr(dst))
409 new_mpath = mesh_path_new(sdata, dst, GFP_ATOMIC);
436 const u8 *dst, const u8 *mpp)
442 if (ether_addr_equal(dst, sdata->vif.addr))
446 if (is_multicast_ether_addr(dst))
449 new_mpath = mesh_path_new(sdata, dst, GFP_ATOMIC);
499 mpath->dst, mpath->sn,
601 * @addr: dst address (ETH_ALEN length)
627 * @addr: dst address (ETH_ALEN length)
682 mpath_dbg(sdata, "Forwarding to %pM\n", gate->dst);
689 gate->dst, gate->flags);
694 mpath_dbg(sdata, "Sending to %pM\n", gate->dst);
736 if (ether_addr_equal(mpath->dst, preq->dst)) {