public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix pcspk build with kvm disabled
@ 2009-06-29 15:19 Mark McLoughlin
  2009-06-29 16:00 ` Jan Kiszka
  0 siblings, 1 reply; 2+ messages in thread
From: Mark McLoughlin @ 2009-06-29 15:19 UTC (permalink / raw)
  To: Avi Kivity; +Cc: Jan Kiszka, kvm

Errors are:

  hw/pcspk.c:85: error: expected declaration specifiers or ‘...’ before ‘kvm_pit_state’
  hw/pcspk.c:87: error: expected declaration specifiers or ‘...’ before ‘kvm_pit_state’
  hw/pcspk.c: In function ‘pcspk_callback’:
  hw/pcspk.c:114: error: too many arguments to function ‘kvm_get_pit_ch2’
  hw/pcspk.c: In function ‘pcspk_ioport_read’:
  hw/pcspk.c:161: error: too many arguments to function ‘kvm_get_pit_ch2’
  hw/pcspk.c: In function ‘pcspk_ioport_write’:
  hw/pcspk.c:171: error: storage size of ‘inkernel_state’ isn’t known
  hw/pcspk.c:175: error: too many arguments to function ‘kvm_get_pit_ch2’
  hw/pcspk.c:185: error: too many arguments to function ‘kvm_set_pit_ch2’
  hw/pcspk.c:171: warning: unused variable ‘inkernel_state’

Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Cc: Jan Kiszka <jan.kiszka@web.de>
---
 hw/pcspk.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/hw/pcspk.c b/hw/pcspk.c
index 9e1b59a..fb823d5 100644
--- a/hw/pcspk.c
+++ b/hw/pcspk.c
@@ -80,11 +80,15 @@ static void kvm_set_pit_ch2(PITState *pit,
         kvm_set_pit(kvm_context, inkernel_state);
     }
 }
-#else
+#elif defined(USE_KVM)
 static inline void kvm_get_pit_ch2(PITState *pit,
                                    kvm_pit_state *inkernel_state) { }
 static inline void kvm_set_pit_ch2(PITState *pit,
                                    kvm_pit_state *inkernel_state) { }
+#else
+typedef struct kvm_pit_state { char dummy; } kvm_pit_state;
+#define kvm_get_pit_ch2(p, s) do { (void)s; } while(0)
+#define kvm_set_pit_ch2(p, s) do { (void)s; } while(0)
 #endif
 
 static inline void generate_samples(PCSpkState *s)
-- 
1.6.2.5


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

* Re: [PATCH] Fix pcspk build with kvm disabled
  2009-06-29 15:19 [PATCH] Fix pcspk build with kvm disabled Mark McLoughlin
@ 2009-06-29 16:00 ` Jan Kiszka
  0 siblings, 0 replies; 2+ messages in thread
From: Jan Kiszka @ 2009-06-29 16:00 UTC (permalink / raw)
  To: Mark McLoughlin; +Cc: Avi Kivity, kvm

Mark McLoughlin wrote:
> Errors are:
> 
>   hw/pcspk.c:85: error: expected declaration specifiers or ‘...’ before ‘kvm_pit_state’
>   hw/pcspk.c:87: error: expected declaration specifiers or ‘...’ before ‘kvm_pit_state’
>   hw/pcspk.c: In function ‘pcspk_callback’:
>   hw/pcspk.c:114: error: too many arguments to function ‘kvm_get_pit_ch2’
>   hw/pcspk.c: In function ‘pcspk_ioport_read’:
>   hw/pcspk.c:161: error: too many arguments to function ‘kvm_get_pit_ch2’
>   hw/pcspk.c: In function ‘pcspk_ioport_write’:
>   hw/pcspk.c:171: error: storage size of ‘inkernel_state’ isn’t known
>   hw/pcspk.c:175: error: too many arguments to function ‘kvm_get_pit_ch2’
>   hw/pcspk.c:185: error: too many arguments to function ‘kvm_set_pit_ch2’
>   hw/pcspk.c:171: warning: unused variable ‘inkernel_state’
> 
> Signed-off-by: Mark McLoughlin <markmc@redhat.com>
> Cc: Jan Kiszka <jan.kiszka@web.de>
> ---
>  hw/pcspk.c |    6 +++++-
>  1 files changed, 5 insertions(+), 1 deletions(-)
> 
> diff --git a/hw/pcspk.c b/hw/pcspk.c
> index 9e1b59a..fb823d5 100644
> --- a/hw/pcspk.c
> +++ b/hw/pcspk.c
> @@ -80,11 +80,15 @@ static void kvm_set_pit_ch2(PITState *pit,
>          kvm_set_pit(kvm_context, inkernel_state);
>      }
>  }
> -#else
> +#elif defined(USE_KVM)
>  static inline void kvm_get_pit_ch2(PITState *pit,
>                                     kvm_pit_state *inkernel_state) { }
>  static inline void kvm_set_pit_ch2(PITState *pit,
>                                     kvm_pit_state *inkernel_state) { }
> +#else
> +typedef struct kvm_pit_state { char dummy; } kvm_pit_state;

If you do this...

> +#define kvm_get_pit_ch2(p, s) do { (void)s; } while(0)
> +#define kvm_set_pit_ch2(p, s) do { (void)s; } while(0)

you don't need this.

>  #endif
>  
>  static inline void generate_samples(PCSpkState *s)

Basically that's band aid, but I could live with it for now. A cleaner
approach would be to push the dummy type into (qemu-)kvm.h, ie. the file
responsible for importing the kernel headers in the USE_KVM/CONFIG_KVM case.

Note that qemu-kvm still breaks in the non-kvm build for other reasons
here. I wanted to look into this but got detracted.

Jan

-- 
Siemens AG, Corporate Technology, CT SE 2
Corporate Competence Center Embedded Linux

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

end of thread, other threads:[~2009-06-29 16:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-29 15:19 [PATCH] Fix pcspk build with kvm disabled Mark McLoughlin
2009-06-29 16:00 ` Jan Kiszka

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