All of lore.kernel.org
 help / color / mirror / Atom feed
* ia64 allmodconfig in linux-next
@ 2009-03-04  0:47 Andrew Morton
  2009-03-04  0:54 ` Zhang, Xiantao
  2009-03-04  1:20 ` Zhang, Xiantao
  0 siblings, 2 replies; 3+ messages in thread
From: Andrew Morton @ 2009-03-04  0:47 UTC (permalink / raw)
  To: kvm-ia64


KVM broke yet again.

arch/ia64/kvm/kvm-ia64.c:1839: error: conflicting types for 'kvm_get_lowest_prio_vcpu'
virt/kvm/ioapic.h:68: error: previous declaration of 'kvm_get_lowest_prio_vcpu' was here
arch/ia64/kvm/kvm-ia64.c:1839: error: conflicting types for 'kvm_get_lowest_prio_vcpu'
virt/kvm/ioapic.h:68: error: previous declaration of 'kvm_get_lowest_prio_vcpu' was here

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

* RE: ia64 allmodconfig in linux-next
  2009-03-04  0:47 ia64 allmodconfig in linux-next Andrew Morton
@ 2009-03-04  0:54 ` Zhang, Xiantao
  2009-03-04  1:20 ` Zhang, Xiantao
  1 sibling, 0 replies; 3+ messages in thread
From: Zhang, Xiantao @ 2009-03-04  0:54 UTC (permalink / raw)
  To: kvm-ia64

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

Andrew Morton wrote:
> KVM broke yet again.
> 
> arch/ia64/kvm/kvm-ia64.c:1839: error: conflicting types for
> 'kvm_get_lowest_prio_vcpu' virt/kvm/ioapic.h:68: error: previous
> declaration of 'kvm_get_lowest_prio_vcpu' was here
> arch/ia64/kvm/kvm-ia64.c:1839: error: conflicting types for
> 'kvm_get_lowest_prio_vcpu' virt/kvm/ioapic.h:68: error: previous
> declaration of 'kvm_get_lowest_prio_vcpu' was here  

Hi, Andrew 
	We already had the fix for the issue, attached the patch. Thanks!

	Acked-by: Xiantao Zhang <xiantao.zhang@intel.com>

Xiantao

[-- Attachment #2: Type: message/rfc822, Size: 3968 bytes --]

[-- Attachment #2.1.1: Type: text/plain, Size: 960 bytes --]

hi
   please review it
Thanks

From d2ab64761b5e04895e61c052f8fb36d6998d5776 Mon Sep 17 00:00:00 2001
From: Yang Zhang <yang.zhang@intel.com>
Date: Mon, 2 Mar 2009 22:06:41 -0500
Subject: [PATCH] KVM : IA64: fix compilation error for kvm ia64

Modify the arg of kvm_get_lowest_prio_vcpu().
Make it consistent with its declaration.

Signed-off-by: Yang Zhang <yang.zhang@intel.com>
---
 arch/ia64/kvm/kvm-ia64.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/ia64/kvm/kvm-ia64.c b/arch/ia64/kvm/kvm-ia64.c
index 076b00d..868b14f 100644
--- a/arch/ia64/kvm/kvm-ia64.c
+++ b/arch/ia64/kvm/kvm-ia64.c
@@ -1835,7 +1835,7 @@ int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda)
 }
 
 struct kvm_vcpu *kvm_get_lowest_prio_vcpu(struct kvm *kvm, u8 vector,
-				       unsigned long bitmap)
+				       unsigned long *bitmap)
 {
 	struct kvm_vcpu *lvcpu = kvm->vcpus[0];
 	int i;
-- 
1.6.0.rc1

[-- Attachment #2.1.2: 0001-KVM-IA64-fix-compilation-error-for-kvm-ia64.patch --]
[-- Type: application/octet-stream, Size: 898 bytes --]

From d2ab64761b5e04895e61c052f8fb36d6998d5776 Mon Sep 17 00:00:00 2001
From: Yang Zhang <yang.zhang@intel.com>
Date: Mon, 2 Mar 2009 22:06:41 -0500
Subject: [PATCH] KVM : IA64: fix compilation error for kvm ia64

Modify the arg of kvm_get_lowest_prio_vcpu().
Make it consistent with its declaration.

Signed-off-by: Yang Zhang <yang.zhang@intel.com>
---
 arch/ia64/kvm/kvm-ia64.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/ia64/kvm/kvm-ia64.c b/arch/ia64/kvm/kvm-ia64.c
index 076b00d..868b14f 100644
--- a/arch/ia64/kvm/kvm-ia64.c
+++ b/arch/ia64/kvm/kvm-ia64.c
@@ -1835,7 +1835,7 @@ int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda)
 }
 
 struct kvm_vcpu *kvm_get_lowest_prio_vcpu(struct kvm *kvm, u8 vector,
-				       unsigned long bitmap)
+				       unsigned long *bitmap)
 {
 	struct kvm_vcpu *lvcpu = kvm->vcpus[0];
 	int i;
-- 
1.6.0.rc1


[-- Attachment #3: 0001-KVM-IA64-fix-compilation-error-for-kvm-ia64.patch --]
[-- Type: application/octet-stream, Size: 898 bytes --]

From d2ab64761b5e04895e61c052f8fb36d6998d5776 Mon Sep 17 00:00:00 2001
From: Yang Zhang <yang.zhang@intel.com>
Date: Mon, 2 Mar 2009 22:06:41 -0500
Subject: [PATCH] KVM : IA64: fix compilation error for kvm ia64

Modify the arg of kvm_get_lowest_prio_vcpu().
Make it consistent with its declaration.

Signed-off-by: Yang Zhang <yang.zhang@intel.com>
---
 arch/ia64/kvm/kvm-ia64.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/ia64/kvm/kvm-ia64.c b/arch/ia64/kvm/kvm-ia64.c
index 076b00d..868b14f 100644
--- a/arch/ia64/kvm/kvm-ia64.c
+++ b/arch/ia64/kvm/kvm-ia64.c
@@ -1835,7 +1835,7 @@ int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda)
 }
 
 struct kvm_vcpu *kvm_get_lowest_prio_vcpu(struct kvm *kvm, u8 vector,
-				       unsigned long bitmap)
+				       unsigned long *bitmap)
 {
 	struct kvm_vcpu *lvcpu = kvm->vcpus[0];
 	int i;
-- 
1.6.0.rc1


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

* RE: ia64 allmodconfig in linux-next
  2009-03-04  0:47 ia64 allmodconfig in linux-next Andrew Morton
  2009-03-04  0:54 ` Zhang, Xiantao
@ 2009-03-04  1:20 ` Zhang, Xiantao
  1 sibling, 0 replies; 3+ messages in thread
From: Zhang, Xiantao @ 2009-03-04  1:20 UTC (permalink / raw)
  To: kvm-ia64

Seems Marcelo has picked the patches to kvm.git.  
Xiantao 

-----Original Message-----
From: kvm-ia64-owner@vger.kernel.org [mailto:kvm-ia64-owner@vger.kernel.org] On Behalf Of Zhang, Xiantao
Sent: Wednesday, March 04, 2009 8:54 AM
To: Andrew Morton; kvm-ia64@vger.kernel.org
Cc: Avi Kivity; Zhang, Yang
Subject: RE: ia64 allmodconfig in linux-next

Andrew Morton wrote:
> KVM broke yet again.
> 
> arch/ia64/kvm/kvm-ia64.c:1839: error: conflicting types for
> 'kvm_get_lowest_prio_vcpu' virt/kvm/ioapic.h:68: error: previous
> declaration of 'kvm_get_lowest_prio_vcpu' was here
> arch/ia64/kvm/kvm-ia64.c:1839: error: conflicting types for
> 'kvm_get_lowest_prio_vcpu' virt/kvm/ioapic.h:68: error: previous
> declaration of 'kvm_get_lowest_prio_vcpu' was here  

Hi, Andrew 
	We already had the fix for the issue, attached the patch. Thanks!

	Acked-by: Xiantao Zhang <xiantao.zhang@intel.com>

Xiantao

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

end of thread, other threads:[~2009-03-04  1:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-04  0:47 ia64 allmodconfig in linux-next Andrew Morton
2009-03-04  0:54 ` Zhang, Xiantao
2009-03-04  1:20 ` Zhang, Xiantao

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.