Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 290409
b: refs/heads/master
c: 5ad20dd
h: refs/heads/master
i:
  290407: a7ad769
v: v3
  • Loading branch information
Luis R. Rodriguez authored and John W. Linville committed Feb 8, 2012
1 parent 74b4e9a commit e7609b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7f66c2f93e5779625c10d262c84537427a2673ca
refs/heads/master: 5ad20dd1480dc557afcec19ac7fae5581264dd59
6 changes: 3 additions & 3 deletions trunk/net/mac80211/mesh_pathtbl.c
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ static void mesh_path_move_to_queue(struct mesh_path *gate_mpath,
}


static struct mesh_path *path_lookup(struct mesh_table *tbl, u8 *dst,
static struct mesh_path *mpath_lookup(struct mesh_table *tbl, u8 *dst,
struct ieee80211_sub_if_data *sdata)
{
struct mesh_path *mpath;
Expand Down Expand Up @@ -371,12 +371,12 @@ static struct mesh_path *path_lookup(struct mesh_table *tbl, u8 *dst,
*/
struct mesh_path *mesh_path_lookup(u8 *dst, struct ieee80211_sub_if_data *sdata)
{
return path_lookup(rcu_dereference(mesh_paths), dst, sdata);
return mpath_lookup(rcu_dereference(mesh_paths), dst, sdata);
}

struct mesh_path *mpp_path_lookup(u8 *dst, struct ieee80211_sub_if_data *sdata)
{
return path_lookup(rcu_dereference(mpp_paths), dst, sdata);
return mpath_lookup(rcu_dereference(mpp_paths), dst, sdata);
}


Expand Down

0 comments on commit e7609b4

Please sign in to comment.