Skip to content

Commit

Permalink
net/mac80211,rcu: convert call_rcu(work_free_rcu) to kfree_rcu()
Browse files Browse the repository at this point in the history
The rcu callback work_free_rcu() just calls a kfree(),
so we use kfree_rcu() instead of the call_rcu(work_free_rcu).

Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
Acked-by: "John W. Linville" <linville@tuxdriver.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
  • Loading branch information
Lai Jiangshan authored and Paul E. McKenney committed May 8, 2011
1 parent 6184522 commit a74ce14
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions net/mac80211/work.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,9 @@ static void run_again(struct ieee80211_local *local,
mod_timer(&local->work_timer, timeout);
}

static void work_free_rcu(struct rcu_head *head)
{
struct ieee80211_work *wk =
container_of(head, struct ieee80211_work, rcu_head);

kfree(wk);
}

void free_work(struct ieee80211_work *wk)
{
call_rcu(&wk->rcu_head, work_free_rcu);
kfree_rcu(wk, rcu_head);
}

static int ieee80211_compatible_rates(const u8 *supp_rates, int supp_rates_len,
Expand Down

0 comments on commit a74ce14

Please sign in to comment.