All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1 of 3] user: ppc: add stub nmi handler
@ 2008-10-24 16:17 Hollis Blanchard
  2008-10-27  8:06 ` Christian Ehrhardt
  2008-10-27  9:32 ` Christian Ehrhardt
  0 siblings, 2 replies; 3+ messages in thread
From: Hollis Blanchard @ 2008-10-24 16:17 UTC (permalink / raw)
  To: kvm-ppc

# HG changeset patch
# User Hollis Blanchard <hollisb@us.ibm.com>
# Date 1224281124 18000
# Node ID eed92f318ffa8a2e036a5bd9727f45c59dda5b12
# Parent  1ad6978ab8a1d0278126b9dd315745842d746986
user: ppc: add stub nmi handler

Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>

diff --git a/user/main-ppc.c b/user/main-ppc.c
--- a/user/main-ppc.c
+++ b/user/main-ppc.c
@@ -83,6 +83,11 @@ static int test_io_window(void *opaque)
 }
 
 static int test_try_push_interrupts(void *opaque)
+{
+	return 0;
+}
+
+static int test_try_push_nmi(void *opaque)
 {
 	return 0;
 }
@@ -175,6 +180,7 @@ static struct kvm_callbacks test_callbac
 	.halt        = test_halt,
 	.io_window = test_io_window,
 	.try_push_interrupts = test_try_push_interrupts,
+	.try_push_nmi = test_try_push_nmi,
 	.post_kvm_run = test_post_kvm_run,
 	.pre_kvm_run = test_pre_kvm_run,
 	.powerpc_dcr_read = test_dcr_read,

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

* Re: [PATCH 1 of 3] user: ppc: add stub nmi handler
  2008-10-24 16:17 [PATCH 1 of 3] user: ppc: add stub nmi handler Hollis Blanchard
@ 2008-10-27  8:06 ` Christian Ehrhardt
  2008-10-27  9:32 ` Christian Ehrhardt
  1 sibling, 0 replies; 3+ messages in thread
From: Christian Ehrhardt @ 2008-10-27  8:06 UTC (permalink / raw)
  To: kvm-ppc

I already wrote and brought that one upstream.
It is in the repo as kvmppc-add-kvm_arch_try_push_nmi.diff and as of 
today I guard it with "+upstream"

Hollis Blanchard wrote:
> # HG changeset patch
> # User Hollis Blanchard <hollisb@us.ibm.com>
> # Date 1224281124 18000
> # Node ID eed92f318ffa8a2e036a5bd9727f45c59dda5b12
> # Parent  1ad6978ab8a1d0278126b9dd315745842d746986
> user: ppc: add stub nmi handler
>
> Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
>
> diff --git a/user/main-ppc.c b/user/main-ppc.c
> --- a/user/main-ppc.c
> +++ b/user/main-ppc.c
> @@ -83,6 +83,11 @@ static int test_io_window(void *opaque)
>  }
>
>  static int test_try_push_interrupts(void *opaque)
> +{
> +	return 0;
> +}
> +
> +static int test_try_push_nmi(void *opaque)
>  {
>  	return 0;
>  }
> @@ -175,6 +180,7 @@ static struct kvm_callbacks test_callbac
>  	.halt        = test_halt,
>  	.io_window = test_io_window,
>  	.try_push_interrupts = test_try_push_interrupts,
> +	.try_push_nmi = test_try_push_nmi,
>  	.post_kvm_run = test_post_kvm_run,
>  	.pre_kvm_run = test_pre_kvm_run,
>  	.powerpc_dcr_read = test_dcr_read,
>   


-- 

Grüsse / regards, 
Christian Ehrhardt
IBM Linux Technology Center, Open Virtualization


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

* Re: [PATCH 1 of 3] user: ppc: add stub nmi handler
  2008-10-24 16:17 [PATCH 1 of 3] user: ppc: add stub nmi handler Hollis Blanchard
  2008-10-27  8:06 ` Christian Ehrhardt
@ 2008-10-27  9:32 ` Christian Ehrhardt
  1 sibling, 0 replies; 3+ messages in thread
From: Christian Ehrhardt @ 2008-10-27  9:32 UTC (permalink / raw)
  To: kvm-ppc

Further checks later - it was in our repo with a different name not 
upstream.
I'll submit it together with the rest of the backlog we have in our queue.

Christian Ehrhardt wrote:
> I already wrote and brought that one upstream.
> It is in the repo as kvmppc-add-kvm_arch_try_push_nmi.diff and as of 
> today I guard it with "+upstream"
>
> Hollis Blanchard wrote:
>> # HG changeset patch
>> # User Hollis Blanchard <hollisb@us.ibm.com>
>> # Date 1224281124 18000
>> # Node ID eed92f318ffa8a2e036a5bd9727f45c59dda5b12
>> # Parent  1ad6978ab8a1d0278126b9dd315745842d746986
>> user: ppc: add stub nmi handler
>>
>> Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
>>
>> diff --git a/user/main-ppc.c b/user/main-ppc.c
>> --- a/user/main-ppc.c
>> +++ b/user/main-ppc.c
>> @@ -83,6 +83,11 @@ static int test_io_window(void *opaque)
>>  }
>>
>>  static int test_try_push_interrupts(void *opaque)
>> +{
>> +    return 0;
>> +}
>> +
>> +static int test_try_push_nmi(void *opaque)
>>  {
>>      return 0;
>>  }
>> @@ -175,6 +180,7 @@ static struct kvm_callbacks test_callbac
>>      .halt        = test_halt,
>>      .io_window = test_io_window,
>>      .try_push_interrupts = test_try_push_interrupts,
>> +    .try_push_nmi = test_try_push_nmi,
>>      .post_kvm_run = test_post_kvm_run,
>>      .pre_kvm_run = test_pre_kvm_run,
>>      .powerpc_dcr_read = test_dcr_read,
>>   
>
>


-- 

Grüsse / regards, 
Christian Ehrhardt
IBM Linux Technology Center, Open Virtualization


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

end of thread, other threads:[~2008-10-27  9:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-24 16:17 [PATCH 1 of 3] user: ppc: add stub nmi handler Hollis Blanchard
2008-10-27  8:06 ` Christian Ehrhardt
2008-10-27  9:32 ` Christian Ehrhardt

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.