Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 278249
b: refs/heads/master
c: 30be52e
h: refs/heads/master
i:
  278247: 03b781c
v: v3
  • Loading branch information
Johannes Berg authored and John W. Linville committed Nov 21, 2011
1 parent 5dbc120 commit fc814ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 23 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: 11a2a357a9d8e058db032883ffd535bf4ad6a899
refs/heads/master: 30be52e44fd4276d768efffb55d424fb682e6505
27 changes: 5 additions & 22 deletions trunk/net/mac80211/mesh_pathtbl.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@ static inline struct mesh_table *resize_dereference_mpp_paths(void)
lockdep_is_held(&pathtbl_resize_lock));
}

static int mesh_gate_add(struct mesh_table *tbl, struct mesh_path *mpath);

/*
* CAREFUL -- "tbl" must not be an expression,
* in particular not an rcu_dereference(), since
Expand Down Expand Up @@ -420,21 +418,18 @@ static void mesh_gate_node_reclaim(struct rcu_head *rp)
}

/**
* mesh_gate_add - mark mpath as path to a mesh gate and add to known_gates
* @mesh_tbl: table which contains known_gates list
* @mpath: mpath to known mesh gate
*
* Returns: 0 on success
*
* mesh_path_add_gate - add the given mpath to a mesh gate to our path table
* @mpath: gate path to add to table
*/
static int mesh_gate_add(struct mesh_table *tbl, struct mesh_path *mpath)
int mesh_path_add_gate(struct mesh_path *mpath)
{
struct mesh_table *tbl;
struct mpath_node *gate, *new_gate;
struct hlist_node *n;
int err;

rcu_read_lock();
tbl = rcu_dereference(tbl);
tbl = rcu_dereference(mesh_paths);

hlist_for_each_entry_rcu(gate, n, tbl->known_gates, list)
if (gate->mpath == mpath) {
Expand Down Expand Up @@ -478,8 +473,6 @@ static int mesh_gate_del(struct mesh_table *tbl, struct mesh_path *mpath)
struct mpath_node *gate;
struct hlist_node *p, *q;

tbl = rcu_dereference(tbl);

hlist_for_each_entry_safe(gate, p, q, tbl->known_gates, list)
if (gate->mpath == mpath) {
spin_lock_bh(&tbl->gates_lock);
Expand All @@ -497,16 +490,6 @@ static int mesh_gate_del(struct mesh_table *tbl, struct mesh_path *mpath)
return 0;
}

/**
*
* mesh_path_add_gate - add the given mpath to a mesh gate to our path table
* @mpath: gate path to add to table
*/
int mesh_path_add_gate(struct mesh_path *mpath)
{
return mesh_gate_add(mesh_paths, mpath);
}

/**
* mesh_gate_num - number of gates known to this interface
* @sdata: subif data
Expand Down

0 comments on commit fc814ae

Please sign in to comment.