Subject: + percpu_refcount-export-symbols.patch added to -mm tree To: m@xxxxxxxxxxx,tj@xxxxxxxxxx From: akpm@xxxxxxxxxxxxxxxxxxxx Date: Mon, 14 Oct 2013 11:23:20 -0700 The patch titled Subject: percpu_refcount: export symbols has been added to the -mm tree. Its filename is percpu_refcount-export-symbols.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/percpu_refcount-export-symbols.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/percpu_refcount-export-symbols.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ 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 percpu_refcount-export-symbols.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