Skip to content

Commit

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

Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
Acked-by: David S. Miller <davem@davemloft.net>
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 217f186 commit 1e54775
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions net/decnet/dn_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -332,14 +332,9 @@ static struct dn_ifaddr *dn_dev_alloc_ifa(void)
return ifa;
}

static void dn_dev_free_ifa_rcu(struct rcu_head *head)
{
kfree(container_of(head, struct dn_ifaddr, rcu));
}

static void dn_dev_free_ifa(struct dn_ifaddr *ifa)
{
call_rcu(&ifa->rcu, dn_dev_free_ifa_rcu);
kfree_rcu(ifa, rcu);
}

static void dn_dev_del_ifa(struct dn_dev *dn_db, struct dn_ifaddr __rcu **ifap, int destroy)
Expand Down

0 comments on commit 1e54775

Please sign in to comment.