commit: http://blackfin.uclinux.org/git/?p=linux-kernel;a=commitdiff;h=5c3c7b190da997180f1970a2b17ee1b423f948cc branch: http://blackfin.uclinux.org/git/?p=linux-kernel;a=shortlog;h=refs/heads/trunk
Current smp_call_function_single generic API is changed to avoid raise IPI and call function in IPI handler on the same core. But this is necessary to support KGDB to switch master core in SMP case. So, work around this by removing the static type of generic_exec_single. Signed-off-by: Sonic Zhang <[email protected]> --- kernel/smp.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/kernel/smp.c b/kernel/smp.c index d0ae5b2..c7f68c3 100644 --- a/kernel/smp.c +++ b/kernel/smp.c @@ -135,7 +135,6 @@ static void csd_unlock(struct call_single_data *data) * for execution on the given CPU. data must already have * ->func, ->info, and ->flags set. */ -static void generic_exec_single(int cpu, struct call_single_data *data, int wait) { struct call_single_queue *dst = &per_cpu(call_single_queue, cpu);
_______________________________________________ Linux-kernel-commits mailing list [email protected] https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits
