All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] export i386 smp_call_function_mask() to modules
@ 2007-08-24 15:36 Laurent Vivier
  2007-08-24 17:42 ` Arjan van de Ven
  0 siblings, 1 reply; 2+ messages in thread
From: Laurent Vivier @ 2007-08-24 15:36 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: linux-kernel, Avi Kivity

[-- Attachment #1: Type: text/plain, Size: 328 bytes --]

This patch export i386 smp_call_function_mask() with EXPORT_SYMBOL().

This function is needed by KVM to call a function on a set of CPUs.

 arch/i386/kernel/smp.c |    7 +++++++
 include/asm-i386/smp.h |    9 +++------
 2 files changed, 10 insertions(+), 6 deletions(-)

Signed-off-by: Laurent Vivier <Laurent.Vivier@bull.net>

[-- Attachment #2: smp_call_function_mask-i386 --]
[-- Type: text/plain, Size: 1365 bytes --]

Index: kvm/arch/i386/kernel/smp.c
===================================================================
--- kvm.orig/arch/i386/kernel/smp.c	2007-08-24 17:09:46.000000000 +0200
+++ kvm/arch/i386/kernel/smp.c	2007-08-24 17:09:48.000000000 +0200
@@ -705,3 +705,10 @@ struct smp_ops smp_ops = {
 	.smp_send_reschedule = native_smp_send_reschedule,
 	.smp_call_function_mask = native_smp_call_function_mask,
 };
+
+int smp_call_function_mask(cpumask_t mask, void (*func) (void *info),
+			   void *info, int wait)
+{
+	return smp_ops.smp_call_function_mask(mask, func, info, wait);
+}
+EXPORT_SYMBOL(smp_call_function_mask);
Index: kvm/include/asm-i386/smp.h
===================================================================
--- kvm.orig/include/asm-i386/smp.h	2007-08-24 17:09:46.000000000 +0200
+++ kvm/include/asm-i386/smp.h	2007-08-24 17:10:34.000000000 +0200
@@ -92,12 +92,9 @@ static inline void smp_send_reschedule(i
 {
 	smp_ops.smp_send_reschedule(cpu);
 }
-static inline int smp_call_function_mask(cpumask_t mask,
-					 void (*func) (void *info), void *info,
-					 int wait)
-{
-	return smp_ops.smp_call_function_mask(mask, func, info, wait);
-}
+extern int smp_call_function_mask(cpumask_t mask,
+				  void (*func) (void *info), void *info,
+				  int wait);
 
 void native_smp_prepare_boot_cpu(void);
 void native_smp_prepare_cpus(unsigned int max_cpus);

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] export i386 smp_call_function_mask() to modules
  2007-08-24 15:36 [PATCH] export i386 smp_call_function_mask() to modules Laurent Vivier
@ 2007-08-24 17:42 ` Arjan van de Ven
  0 siblings, 0 replies; 2+ messages in thread
From: Arjan van de Ven @ 2007-08-24 17:42 UTC (permalink / raw)
  To: Laurent Vivier; +Cc: Ingo Molnar, linux-kernel, Avi Kivity

On Fri, 24 Aug 2007 17:36:35 +0200
Laurent Vivier <Laurent.Vivier@bull.net> wrote:

> This patch export i386 smp_call_function_mask() with EXPORT_SYMBOL().
> 
> This function is needed by KVM to call a function on a set of CPUs.
> 
>  arch/i386/kernel/smp.c |    7 +++++++
>  include/asm-i386/smp.h |    9 +++------
>  2 files changed, 10 insertions(+), 6 deletions(-)
> 
> Signed-off-by: Laurent Vivier <Laurent.Vivier@bull.net>

hmm isn't it being an inline also making it available for KVM to use?
If so... isn't your patch description entirely not matching what the
code does?

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-08-24 17:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-24 15:36 [PATCH] export i386 smp_call_function_mask() to modules Laurent Vivier
2007-08-24 17:42 ` Arjan van de Ven

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.