Skip to content

Commit

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

Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Acked-by: James Morris <jmorris@namei.org>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
  • Loading branch information
Lai Jiangshan authored and Paul E. McKenney committed Jul 20, 2011
1 parent b119cba commit 6034f7e
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions security/device_cgroup.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,14 +125,6 @@ static int dev_whitelist_add(struct dev_cgroup *dev_cgroup,
return 0;
}

static void whitelist_item_free(struct rcu_head *rcu)
{
struct dev_whitelist_item *item;

item = container_of(rcu, struct dev_whitelist_item, rcu);
kfree(item);
}

/*
* called under devcgroup_mutex
*/
Expand All @@ -155,7 +147,7 @@ static void dev_whitelist_rm(struct dev_cgroup *dev_cgroup,
walk->access &= ~wh->access;
if (!walk->access) {
list_del_rcu(&walk->list);
call_rcu(&walk->rcu, whitelist_item_free);
kfree_rcu(walk, rcu);
}
}
}
Expand Down

0 comments on commit 6034f7e

Please sign in to comment.