Subject: [merged] percpu_refcount-export-symbols.patch removed from -mm tree To: m@xxxxxxxxxxx,tj@xxxxxxxxxx,mm-commits@xxxxxxxxxxxxxxx From: akpm@xxxxxxxxxxxxxxxxxxxx Date: Thu, 17 Oct 2013 11:13:21 -0700 The patch titled Subject: percpu_refcount: export symbols has been removed from the -mm tree. Its filename was percpu_refcount-export-symbols.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Matias Bjorling <m@xxxxxxxxxxx> Subject: percpu_refcount: export symbols Export the interface to be used within modules. Signed-off-by: Matias Bjorling <m@xxxxxxxxxxx> Acked-by: Tejun Heo <tj@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/percpu-refcount.c | 3 +++ 1 file changed, 3 insertions(+) diff -puN lib/percpu-refcount.c~percpu_refcount-export-symbols lib/percpu-refcount.c --- a/lib/percpu-refcount.c~percpu_refcount-export-symbols +++ a/lib/percpu-refcount.c @@ -53,6 +53,7 @@ int percpu_ref_init(struct percpu_ref *r ref->release = release; return 0; } +EXPORT_SYMBOL_GPL(percpu_ref_init); /** * percpu_ref_cancel_init - cancel percpu_ref_init() @@ -84,6 +85,7 @@ void percpu_ref_cancel_init(struct percp free_percpu(ref->pcpu_count); } } +EXPORT_SYMBOL_GPL(percpu_ref_cancel_init); static void percpu_ref_kill_rcu(struct rcu_head *rcu) { @@ -156,3 +158,4 @@ void percpu_ref_kill_and_confirm(struct call_rcu_sched(&ref->rcu, percpu_ref_kill_rcu); } +EXPORT_SYMBOL_GPL(percpu_ref_kill_and_confirm); _ Patches currently in -mm which might be from m@xxxxxxxxxxx are origin.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html