All of lore.kernel.org
 help / color / mirror / Atom feed
From: Anthony Liguori <anthony@codemonkey.ws>
To: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 2/6] better type checking for vga
Date: Wed, 19 Nov 2008 09:08:25 -0600	[thread overview]
Message-ID: <49242BE9.80901@codemonkey.ws> (raw)
In-Reply-To: <1227108377-8442-3-git-send-email-glommer@redhat.com>

Glauber Costa wrote:
> unsigned long is too bad of a type. Use ram_addr_t instead.
>
> Signed-off-by: Glauber Costa <glommer@redhat.com>
> ---
>  hw/cirrus_vga.c |    4 ++--
>  hw/vga.c        |    2 +-
>  hw/vga_int.h    |    2 +-
>  3 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/hw/cirrus_vga.c b/hw/cirrus_vga.c
> index af9c9e6..3cdc8e6 100644
> --- a/hw/cirrus_vga.c
> +++ b/hw/cirrus_vga.c
> @@ -3231,7 +3231,7 @@ static void cirrus_init_common(CirrusVGAState * s, int device_id, int is_pci)
>   ***************************************/
>  
>  void isa_cirrus_vga_init(DisplayState *ds, uint8_t *vga_ram_base,
> -                         unsigned long vga_ram_offset, int vga_ram_size)
> +                         ram_addr_t vga_ram_offset, int vga_ram_size)
>  {
>      CirrusVGAState *s;
>  
> @@ -3273,7 +3273,7 @@ static void cirrus_pci_mmio_map(PCIDevice *d, int region_num,
>  }
>  
>  void pci_cirrus_vga_init(PCIBus *bus, DisplayState *ds, uint8_t *vga_ram_base,
> -                         unsigned long vga_ram_offset, int vga_ram_size)
> +                         ram_addr_t vga_ram_offset, int vga_ram_size)
>  {
>      PCICirrusVGAState *d;
>      uint8_t *pci_conf;
> diff --git a/hw/vga.c b/hw/vga.c
> index bd59aae..b44b77d 100644
> --- a/hw/vga.c
> +++ b/hw/vga.c
> @@ -2105,7 +2105,7 @@ static void vga_map(PCIDevice *pci_dev, int region_num,
>  }
>  
>  void vga_common_init(VGAState *s, DisplayState *ds, uint8_t *vga_ram_base,
> -                     unsigned long vga_ram_offset, int vga_ram_size)
> +                     ram_addr_t vga_ram_offset, int vga_ram_size)
>   

You've changed the signature of this function (and others), without 
updating the definition in vga_int.h.  Compile fails.

Regards,

Antony Liguori

  reply	other threads:[~2008-11-19 15:08 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-11-19 15:26 [Qemu-devel] [PATCH 0/6] New shot at VGA optimization Glauber Costa
2008-11-19 14:23 ` Avi Kivity
2008-11-19 14:34   ` Glauber Costa
2008-11-19 15:26 ` [Qemu-devel] [PATCH 1/6] kvm: memory aliasing support for kvm Glauber Costa
2008-11-19 15:07   ` Anthony Liguori
2008-11-19 15:26   ` [Qemu-devel] [PATCH 2/6] better type checking for vga Glauber Costa
2008-11-19 15:08     ` Anthony Liguori [this message]
2008-11-19 15:26     ` [Qemu-devel] [PATCH 3/6] move vga_io_address to VGA State Glauber Costa
2008-11-19 15:26       ` [Qemu-devel] [PATCH 4/6] kvm: de-register mem region for MMIO Glauber Costa
2008-11-19 15:10         ` Anthony Liguori
2008-11-19 15:26         ` [Qemu-devel] [PATCH 5/6] Introduce kvm logging interface Glauber Costa
2008-11-19 15:18           ` Anthony Liguori
2008-11-19 17:23             ` Glauber Costa
2008-11-19 17:51               ` Anthony Liguori
2008-11-19 15:26           ` [Qemu-devel] [PATCH 6/6] kvm: vga optimization Glauber Costa
2008-11-19 15:23             ` Anthony Liguori
2008-11-19 17:19               ` Glauber Costa
2008-11-19 17:26                 ` Anthony Liguori

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=49242BE9.80901@codemonkey.ws \
    --to=anthony@codemonkey.ws \
    --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 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.