diff options
author | Lai Jiangshan <laijs@cn.fujitsu.com> | 2011-03-18 00:11:44 -0400 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2011-07-20 17:10:16 -0400 |
commit | d4ee9aa33db94120532601a22566e989efc3e70c (patch) | |
tree | 7e138ea977cc405ea188be5dd7bf98fee324114d /ipc | |
parent | 693a8b6eecce1a0cfe91a469e85c56016dc1cc53 (diff) |
ipc,rcu: Convert call_rcu(ipc_immediate_free) to kfree_rcu()
The rcu callback ipc_immediate_free() just calls a kfree(),
so we use kfree_rcu() instead of the call_rcu(ipc_immediate_free).
Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/util.c | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/ipc/util.c b/ipc/util.c index 5c0d28921ba8..75261a31d48d 100644 --- a/ipc/util.c +++ b/ipc/util.c | |||
@@ -579,19 +579,6 @@ static void ipc_schedule_free(struct rcu_head *head) | |||
579 | schedule_work(&sched->work); | 579 | schedule_work(&sched->work); |
580 | } | 580 | } |
581 | 581 | ||
582 | /** | ||
583 | * ipc_immediate_free - free ipc + rcu space | ||
584 | * @head: RCU callback structure that contains pointer to be freed | ||
585 | * | ||
586 | * Free from the RCU callback context. | ||
587 | */ | ||
588 | static void ipc_immediate_free(struct rcu_head *head) | ||
589 | { | ||
590 | struct ipc_rcu_grace *free = | ||
591 | container_of(head, struct ipc_rcu_grace, rcu); | ||
592 | kfree(free); | ||
593 | } | ||
594 | |||
595 | void ipc_rcu_putref(void *ptr) | 582 | void ipc_rcu_putref(void *ptr) |
596 | { | 583 | { |
597 | if (--container_of(ptr, struct ipc_rcu_hdr, data)->refcount > 0) | 584 | if (--container_of(ptr, struct ipc_rcu_hdr, data)->refcount > 0) |
@@ -601,8 +588,7 @@ void ipc_rcu_putref(void *ptr) | |||
601 | call_rcu(&container_of(ptr, struct ipc_rcu_grace, data)->rcu, | 588 | call_rcu(&container_of(ptr, struct ipc_rcu_grace, data)->rcu, |
602 | ipc_schedule_free); | 589 | ipc_schedule_free); |
603 | } else { | 590 | } else { |
604 | call_rcu(&container_of(ptr, struct ipc_rcu_grace, data)->rcu, | 591 | kfree_rcu(container_of(ptr, struct ipc_rcu_grace, data), rcu); |
605 | ipc_immediate_free); | ||
606 | } | 592 | } |
607 | } | 593 | } |
608 | 594 | ||