public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH] KVM: use modern cpumask primitives, no cpumask_t on stack
       [not found] ` <1229014284.26586.9.camel@localhost.localdomain>
@ 2008-12-15  8:34   ` Rusty Russell
  2008-12-18 22:10     ` [PATCH] Define smp_call_function_many for UP Rusty Russell
  0 siblings, 1 reply; 6+ messages in thread
From: Rusty Russell @ 2008-12-15  8:34 UTC (permalink / raw)
  To: Hollis Blanchard
  Cc: Avi Kivity, kvm-devel, Rusty Russell, Linus Torvalds,
	linux-kernel

On Friday 12 December 2008 03:21:24 Hollis Blanchard wrote:
> This patch breaks uniprocessor builds, because smp_call_function_many()
> is only defined for CONFIG_SMP.

Good catch.  I missed it because it's fixed as a side-effect of a
later patch in my series (before I convert users).

Linus, can you please apply this fix?

Thanks,
Rusty.

Subject: Define smp_call_function_many for UP

Otherwise those using it in transition patches (eg. kvm) can't compile
with CONFIG_SMP=n:

arch/x86/kvm/../../../virt/kvm/kvm_main.c: In function 'make_all_cpus_request':
arch/x86/kvm/../../../virt/kvm/kvm_main.c:380: error: implicit declaration of function 'smp_call_function_many'

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>

diff --git a/include/linux/smp.h b/include/linux/smp.h
--- a/include/linux/smp.h
+++ b/include/linux/smp.h
@@ -146,6 +147,8 @@ static inline void smp_send_reschedule(i
 })
 #define smp_call_function_mask(mask, func, info, wait) \
 			(up_smp_call_function(func, info))
+#define smp_call_function_many(mask, func, info, wait) \
+			(up_smp_call_function(func, info))
 static inline void init_call_single_data(void)
 {
 }

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

* [PATCH] Define smp_call_function_many for UP
  2008-12-15  8:34   ` [PATCH] KVM: use modern cpumask primitives, no cpumask_t on stack Rusty Russell
@ 2008-12-18 22:10     ` Rusty Russell
  2008-12-18 22:16       ` Linus Torvalds
  0 siblings, 1 reply; 6+ messages in thread
From: Rusty Russell @ 2008-12-18 22:10 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Hollis Blanchard, Avi Kivity, kvm-devel, linux-kernel

Linus, please apply.  Otherwise those using it in transition patches (eg. kvm)
can't compile with CONFIG_SMP=n:

arch/x86/kvm/../../../virt/kvm/kvm_main.c: In function 'make_all_cpus_request':
arch/x86/kvm/../../../virt/kvm/kvm_main.c:380: error: implicit declaration of function 'smp_call_function_many'

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
---
 include/linux/smp.h |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/linux/smp.h b/include/linux/smp.h
--- a/include/linux/smp.h
+++ b/include/linux/smp.h
@@ -146,6 +147,8 @@ static inline void smp_send_reschedule(i
 })
 #define smp_call_function_mask(mask, func, info, wait) \
 			(up_smp_call_function(func, info))
+#define smp_call_function_many(mask, func, info, wait) \
+			(up_smp_call_function(func, info))
 static inline void init_call_single_data(void)
 {
 }

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

* Re: [PATCH] Define smp_call_function_many for UP
  2008-12-18 22:10     ` [PATCH] Define smp_call_function_many for UP Rusty Russell
@ 2008-12-18 22:16       ` Linus Torvalds
  2008-12-19  5:43         ` Rusty Russell
  0 siblings, 1 reply; 6+ messages in thread
From: Linus Torvalds @ 2008-12-18 22:16 UTC (permalink / raw)
  To: Rusty Russell; +Cc: Hollis Blanchard, Avi Kivity, kvm-devel, linux-kernel



On Fri, 19 Dec 2008, Rusty Russell wrote:
>
> Linus, please apply.  Otherwise those using it in transition patches (eg. kvm)
> can't compile with CONFIG_SMP=n:

Umm. I already applied this a long time ago. It's commit 
d2ff911882b6bc693d86ca9566daac70aacbb2b3

		Linus

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

* Re: [PATCH] Define smp_call_function_many for UP
  2008-12-18 22:16       ` Linus Torvalds
@ 2008-12-19  5:43         ` Rusty Russell
  2008-12-19 17:03           ` Linus Torvalds
  0 siblings, 1 reply; 6+ messages in thread
From: Rusty Russell @ 2008-12-19  5:43 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Hollis Blanchard, Avi Kivity, kvm-devel, linux-kernel

On Friday 19 December 2008 08:46:37 Linus Torvalds wrote:
> 
> On Fri, 19 Dec 2008, Rusty Russell wrote:
> >
> > Linus, please apply.  Otherwise those using it in transition patches (eg. kvm)
> > can't compile with CONFIG_SMP=n:
> 
> Umm. I already applied this a long time ago. It's commit 
> d2ff911882b6bc693d86ca9566daac70aacbb2b3

Wow, it's like Santa came early!

Thanks,
Rusty.

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

* Re: [PATCH] Define smp_call_function_many for UP
  2008-12-19  5:43         ` Rusty Russell
@ 2008-12-19 17:03           ` Linus Torvalds
  2008-12-21  8:11             ` Rusty Russell
  0 siblings, 1 reply; 6+ messages in thread
From: Linus Torvalds @ 2008-12-19 17:03 UTC (permalink / raw)
  To: Rusty Russell; +Cc: Hollis Blanchard, Avi Kivity, kvm-devel, linux-kernel



On Fri, 19 Dec 2008, Rusty Russell wrote:
>
> On Friday 19 December 2008 08:46:37 Linus Torvalds wrote:
> > 
> > Umm. I already applied this a long time ago. It's commit 
> > d2ff911882b6bc693d86ca9566daac70aacbb2b3
> 
> Wow, it's like Santa came early!

Christmas at Rusty's house:

Dreary.

			Linus

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

* Re: [PATCH] Define smp_call_function_many for UP
  2008-12-19 17:03           ` Linus Torvalds
@ 2008-12-21  8:11             ` Rusty Russell
  0 siblings, 0 replies; 6+ messages in thread
From: Rusty Russell @ 2008-12-21  8:11 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Hollis Blanchard, Avi Kivity, kvm-devel, linux-kernel

On Saturday 20 December 2008 03:33:26 Linus Torvalds wrote:
> Christmas at Rusty's house:
> 
> Dreary.

Far from!  Sure, it's Arabella's first Xmas, but a Very Kernel Christmas can
be lots of fun.  Why just this morning, we did this together!  See if you
can tell which bits are hers...

Subject: Decorate lib/rbtree.c
From: Rusty and Arabella Russell <rustabella@rustcorp.com.au>

A slight enhancement to the comments in lib/rbtree.c.

Signed-off-by: Rusty and Arabella Russell <rustabella@rustcorp.com.au>
---
 lib/rbtree.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/lib/rbtree.c b/lib/rbtree.c
index 48499c2..7848186 100644
--- a/lib/rbtree.c
+++ b/lib/rbtree.c
@@ -17,7 +17,8 @@
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
-  linux/lib/rbtree.c
+  An excellent description of this algorithm can be found at:
+	http://en.wikipedia.org/wiki/Red-black_tree
 */
 
 #include <linux/rbtree.h>
@@ -291,6 +292,7 @@ EXPORT_SYMBOL(rb_erase);
 
 /*
  * This function returns the first node (in sort order) of the tree.
+ * ssdddsddddddddddddd
  */
 struct rb_node *rb_first(struct rb_root *root)
 {



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

end of thread, other threads:[~2008-12-21  8:11 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20081208160945.7535A25006E@cleopatra.tlv.redhat.com>
     [not found] ` <1229014284.26586.9.camel@localhost.localdomain>
2008-12-15  8:34   ` [PATCH] KVM: use modern cpumask primitives, no cpumask_t on stack Rusty Russell
2008-12-18 22:10     ` [PATCH] Define smp_call_function_many for UP Rusty Russell
2008-12-18 22:16       ` Linus Torvalds
2008-12-19  5:43         ` Rusty Russell
2008-12-19 17:03           ` Linus Torvalds
2008-12-21  8:11             ` Rusty Russell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox