qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Anthony Liguori <anthony@codemonkey.ws>
To: Marcelo Tosatti <mtosatti@redhat.com>
Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org
Subject: Re: [Qemu-devel] [PATCH 00/10] [PULL] qemu-kvm.git uq/master queue
Date: Tue, 19 Oct 2010 08:40:32 -0500	[thread overview]
Message-ID: <4CBD9FD0.8030302@codemonkey.ws> (raw)
In-Reply-To: <cover.1287484836.git.mtosatti@redhat.com>

On 10/19/2010 05:40 AM, Marcelo Tosatti wrote:
> The following changes since commit 38cc9b607f85017b095793cab6c129bc9844f441:
>
>    issue snd_pcm_start() when capturing audio (2010-10-18 00:39:06 +0400)
>
> are available in the git repository at:
>    git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master
>    

This breaks the build.

cc1: warnings being treated as errors
/home/anthony/git/qemu/target-i386/kvm.c: In function ‘kvm_on_sigbus_vcpu’:
/home/anthony/git/qemu/target-i386/kvm.c:1671: error: passing argument 3 
of ‘kvm_physical_memory_addr_from_ram’ from incompatible pointer type
/home/anthony/git/qemu/kvm.h:180: note: expected ‘target_phys_addr_t *’ 
but argument is of type ‘long unsigned int *’
/home/anthony/git/qemu/target-i386/kvm.c: In function ‘kvm_on_sigbus’:
/home/anthony/git/qemu/target-i386/kvm.c:1714: error: passing argument 3 
of ‘kvm_physical_memory_addr_from_ram’ from incompatible pointer type
/home/anthony/git/qemu/kvm.h:180: note: expected ‘target_phys_addr_t *’ 
but argument is of type ‘long unsigned int *’
make[1]: *** [kvm.o] Error 1
make: *** [subdir-i386-softmmu] Error 2

I've pushed my tree to http://repo.or.cz/w/qemu/aliguori.git 
qemu-kvm-20101019 but the merge is a fast-forward so you should have no 
trouble reproducing.

anthony@titi:~/build/qemu$ uname -a
Linux titi 2.6.32.11+drm33.2-x201 #1 SMP Sat May 22 09:58:34 PDT 2010 
x86_64 GNU/Linux

anthony@titi:~/build/qemu$ gcc -v
Using built-in specs.
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 
4.4.3-4ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs 
--enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr 
--enable-shared --enable-multiarch --enable-linker-build-id 
--with-system-zlib --libexecdir=/usr/lib --without-included-gettext 
--enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 
--program-suffix=-4.4 --enable-nls --enable-clocale=gnu 
--enable-libstdcxx-debug --enable-plugin --enable-objc-gc 
--disable-werror --with-arch-32=i486 --with-tune=generic 
--enable-checking=release --build=x86_64-linux-gnu 
--host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5)

Regards,

Anthony Liguori

> Huang Ying (1):
>        Add RAM ->  physical addr mapping in MCE simulation
>
> Joerg Roedel (2):
>        Set cpuid definition to 0 before initializing it
>        Add svm cpuid features
>
> Marcelo Tosatti (7):
>        signalfd compatibility
>        iothread: use signalfd
>        Expose thread_id in info cpus
>        kvm: x86: add mce support
>        Export qemu_ram_addr_from_host
>        MCE: Relay UCR MCE to guest
>        Add savevm/loadvm support for MCE
>
>   Makefile.objs         |    1 +
>   compatfd.c            |  117 +++++++++++++++++++
>   compatfd.h            |   43 +++++++
>   configure             |   18 +++
>   cpu-common.h          |    3 +-
>   cpu-defs.h            |    1 +
>   cpus.c                |  161 ++++++++++++++++++++++++--
>   exec-all.h            |    2 +-
>   exec.c                |   27 +++--
>   kvm-all.c             |   18 +++
>   kvm-stub.c            |    5 +
>   kvm.h                 |    6 +
>   monitor.c             |    4 +
>   osdep.c               |   15 +++
>   osdep.h               |    1 +
>   target-i386/cpu.h     |   32 +++++-
>   target-i386/cpuid.c   |   79 ++++++++++---
>   target-i386/helper.c  |    6 +
>   target-i386/kvm.c     |  300 ++++++++++++++++++++++++++++++++++++++++++++++++-
>   target-i386/kvm_x86.h |   22 ++++
>   20 files changed, 817 insertions(+), 44 deletions(-)
>   create mode 100644 compatfd.c
>   create mode 100644 compatfd.h
>   create mode 100644 target-i386/kvm_x86.h
>
>
>    

  parent reply	other threads:[~2010-10-19 13:41 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-10-19 10:40 [Qemu-devel] [PATCH 00/10] [PULL] qemu-kvm.git uq/master queue Marcelo Tosatti
2010-10-19 10:40 ` [Qemu-devel] [PATCH 01/10] Set cpuid definition to 0 before initializing it Marcelo Tosatti
2010-10-19 10:40 ` [Qemu-devel] [PATCH 02/10] Add svm cpuid features Marcelo Tosatti
2010-10-19 10:40 ` [Qemu-devel] [PATCH 03/10] signalfd compatibility Marcelo Tosatti
2010-10-19 10:40 ` [Qemu-devel] [PATCH 04/10] iothread: use signalfd Marcelo Tosatti
2010-10-19 10:40 ` [Qemu-devel] [PATCH 05/10] Expose thread_id in info cpus Marcelo Tosatti
2010-10-19 10:40 ` [Qemu-devel] [PATCH 06/10] kvm: x86: add mce support Marcelo Tosatti
2010-10-19 10:40 ` [Qemu-devel] [PATCH 07/10] Export qemu_ram_addr_from_host Marcelo Tosatti
2010-10-19 10:40 ` [Qemu-devel] [PATCH 08/10] Add RAM -> physical addr mapping in MCE simulation Marcelo Tosatti
2010-10-19 10:40 ` [Qemu-devel] [PATCH 09/10] MCE: Relay UCR MCE to guest Marcelo Tosatti
2010-10-19 14:35   ` [Qemu-devel] [PATCH 09/10] MCE: Relay UCR MCE to guest (v2) Marcelo Tosatti
2010-10-19 10:40 ` [Qemu-devel] [PATCH 10/10] Add savevm/loadvm support for MCE Marcelo Tosatti
2010-10-19 13:40 ` Anthony Liguori [this message]
  -- strict thread matches above, loose matches on Subject: below --
2010-10-20 17:43 [Qemu-devel] [PATCH 00/10] [PULL] qemu-kvm.git uq/master queue Marcelo Tosatti
2010-04-26 17:58 Marcelo Tosatti

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4CBD9FD0.8030302@codemonkey.ws \
    --to=anthony@codemonkey.ws \
    --cc=kvm@vger.kernel.org \
    --cc=mtosatti@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).