public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] qemu fix missing prototypes on ia64 and minor cleanups
@ 2008-09-04 15:40 Jes Sorensen
  2008-09-04 22:28 ` Zhang, Xiantao
  2008-09-07  6:25 ` Avi Kivity
  0 siblings, 2 replies; 3+ messages in thread
From: Jes Sorensen @ 2008-09-04 15:40 UTC (permalink / raw)
  To: Avi Kivity, kvm, kvm-ia64

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

Hi,

This one kills a few missing prototype warnings during compile time
on ia64. These are always risky given that the Linux ia64 text and data
segments are outside the 32bit window....

cheers,
Jes


[-- Attachment #2: 0100-ia64-missing-protos.patch --]
[-- Type: text/plain, Size: 2662 bytes --]

Add missing prototypes to the ia64 header files. Remove unused variables
T0/T1/T2 declared in exec.h and fix a small formatting issue to match the
formatting style of qemu. Add 'const' to cpu_ia64_init() to match the
rest of qemu.

Signed-off-by: Jes Sorensen <jes@sgi.com>

---
 qemu/target-ia64/cpu.h       |   18 ++++++++++++++----
 qemu/target-ia64/exec.h      |    6 +-----
 qemu/target-ia64/op_helper.c |    2 +-
 3 files changed, 16 insertions(+), 10 deletions(-)

Index: kvm-userspace.git/qemu/target-ia64/cpu.h
===================================================================
--- kvm-userspace.git.orig/qemu/target-ia64/cpu.h
+++ kvm-userspace.git/qemu/target-ia64/cpu.h
@@ -42,9 +42,9 @@
 
 #include "softfloat.h"
 typedef struct CPUIA64State {
-   CPU_COMMON;
-   uint32_t hflags;
-   int mp_state;
+    CPU_COMMON;
+    uint32_t hflags;
+    int mp_state;
 } CPUIA64State;
 
 #define CPUState CPUIA64State
@@ -58,13 +58,23 @@
 void cpu_dump_state(CPUState *env, FILE *f,
                     int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
                     int flags);
+CPUState *cpu_ia64_init(const char * cpu_model);
 
-CPUState *cpu_ia64_init(char * cpu_model);
 static inline int cpu_mmu_index (CPUState *env)
 {
 	return 0;
 }
 
+#define CPU_PC_FROM_TB(env, tb) do{}while(0)
+
 #include "cpu-all.h"
 
+/*
+ * These ones really should go to the appropriate tcg header file, if/when
+ * tcg support is added for ia64.
+ */
+void flush_icache_range(unsigned long start, unsigned long stop);
+void tcg_dump_info(FILE *f,
+                   int (*cpu_fprintf)(FILE *f, const char *fmt, ...));
+
 #endif
Index: kvm-userspace.git/qemu/target-ia64/exec.h
===================================================================
--- kvm-userspace.git.orig/qemu/target-ia64/exec.h
+++ kvm-userspace.git/qemu/target-ia64/exec.h
@@ -22,9 +22,6 @@
 
 #include "cpu.h"
 #include "exec-all.h"
-uint32_t T0;
-uint32_t T1;
-uint32_t T2;
 
 #define tcg_qemu_tb_exec(tb_ptr) 0
 
@@ -36,8 +33,7 @@
 {
 }
 
-void tcg_dump_info(FILE *f,
-                   int (*cpu_fprintf)(FILE *f, const char *fmt, ...));
+void do_interrupt (CPUState *env);
 
 void cpu_lock(void);
 void cpu_unlock(void);
Index: kvm-userspace.git/qemu/target-ia64/op_helper.c
===================================================================
--- kvm-userspace.git.orig/qemu/target-ia64/op_helper.c
+++ kvm-userspace.git/qemu/target-ia64/op_helper.c
@@ -27,7 +27,7 @@
 #include "qemu-kvm.h"
 #include "qemu-common.h"
 
-CPUState *cpu_ia64_init(char *cpu_model){
+CPUState *cpu_ia64_init(const char *cpu_model){
     CPUState *env;
     env = qemu_mallocz(sizeof(CPUState));
     if (!env)

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

* RE: [patch] qemu fix missing prototypes on ia64 and minor cleanups
  2008-09-04 15:40 [patch] qemu fix missing prototypes on ia64 and minor cleanups Jes Sorensen
@ 2008-09-04 22:28 ` Zhang, Xiantao
  2008-09-07  6:25 ` Avi Kivity
  1 sibling, 0 replies; 3+ messages in thread
From: Zhang, Xiantao @ 2008-09-04 22:28 UTC (permalink / raw)
  To: Jes Sorensen, Avi Kivity, kvm, kvm-ia64

Jes Sorensen wrote:
> Hi,
> 
> This one kills a few missing prototype warnings during compile time
> on ia64. These are always risky given that the Linux ia64 text and
> data segments are outside the 32bit window....
> 
> cheers,
> Jes

Thanks Jes!  Maybe we should do more investigations on such code, since
the Qemu can't run on IA64 hosts before its on kvm.  So I believe it
should have more such potential issues. But you know, we have no enough
resource to chase them down. :(

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

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

* Re: [patch] qemu fix missing prototypes on ia64 and minor cleanups
  2008-09-04 15:40 [patch] qemu fix missing prototypes on ia64 and minor cleanups Jes Sorensen
  2008-09-04 22:28 ` Zhang, Xiantao
@ 2008-09-07  6:25 ` Avi Kivity
  1 sibling, 0 replies; 3+ messages in thread
From: Avi Kivity @ 2008-09-07  6:25 UTC (permalink / raw)
  To: Jes Sorensen; +Cc: kvm, kvm-ia64

Jes Sorensen wrote:
> Hi,
>
> This one kills a few missing prototype warnings during compile time
> on ia64. These are always risky given that the Linux ia64 text and data
> segments are outside the 32bit window....
>

Applied, thanks.

-- 
error compiling committee.c: too many arguments to function


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

end of thread, other threads:[~2008-09-07  6:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-04 15:40 [patch] qemu fix missing prototypes on ia64 and minor cleanups Jes Sorensen
2008-09-04 22:28 ` Zhang, Xiantao
2008-09-07  6:25 ` Avi Kivity

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