]> git.karo-electronics.de Git - karo-tx-linux.git/commit
xen/arm: missing put_cpu in xen_percpu_init
authorJulien Grall <julien.grall@linaro.org>
Mon, 29 Jul 2013 16:06:05 +0000 (17:06 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 8 Sep 2013 05:10:00 +0000 (22:10 -0700)
commit9e50b358ed4b8af18955ab07549ee2264b5b44f2
treed24b94cc7e9f1eaff307d81e80ca1fb401e4ef83
parent39d163b38728dd85291afb2ba84f760368d9e8eb
xen/arm: missing put_cpu in xen_percpu_init

commit 0d7febe58413884f6428143221971618fbf3a47d upstream.

When CONFIG_PREEMPT is enabled, Linux will not be able to boot and warn:
[    4.127825] ------------[ cut here ]------------
[    4.133376] WARNING: at init/main.c:699 do_one_initcall+0x150/0x158()
[    4.140738] initcall xen_init_events+0x0/0x10c returned with preemption imbalance

This is because xen_percpu_init uses get_cpu but doesn't have the corresponding
put_cpu.

Signed-off-by: Julien Grall <julien.grall@linaro.org>
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Jonghwan Choi <jhbird.choi@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/arm/xen/enlighten.c