qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] Fix compile errors when enabling Xen debug logging
@ 2012-12-13 10:39 Sander Eikelenboom
  0 siblings, 0 replies; 6+ messages in thread
From: Sander Eikelenboom @ 2012-12-13 10:39 UTC (permalink / raw)
  To: qemu-devel
  Cc: Anthony.Perard, Sander Eikelenboom, Stefano.Stabellini, xen-devel

Sander Eikelenboom (1):
  Fix compile errors when enabling Xen debug logging.

 hw/xen_pt.c |    4 ++--
 xen-all.c   |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

-- 
1.7.2.5

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

* [Qemu-devel] [PATCH] Fix compile errors when enabling Xen debug logging.
       [not found] <1Tj6Gv-00030a-73>
@ 2012-12-13 10:41 ` Sander Eikelenboom
  2012-12-13 12:53   ` Stefano Stabellini
  0 siblings, 1 reply; 6+ messages in thread
From: Sander Eikelenboom @ 2012-12-13 10:41 UTC (permalink / raw)
  To: qemu-devel
  Cc: Anthony.Perard, Sander Eikelenboom, Stefano.Stabellini, xen-devel

Signed-off-by: Sander Eikelenboom <linux@eikelenboom.it>
---
 hw/xen_pt.c |    4 ++--
 xen-all.c   |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/hw/xen_pt.c b/hw/xen_pt.c
index 7a3846e..ca42a14 100644
--- a/hw/xen_pt.c
+++ b/hw/xen_pt.c
@@ -671,7 +671,7 @@ static int xen_pt_initfn(PCIDevice *d)
     s->is_virtfn = s->real_device.is_virtfn;
     if (s->is_virtfn) {
         XEN_PT_LOG(d, "%04x:%02x:%02x.%d is a SR-IOV Virtual Function\n",
-                   s->real_device.domain, bus, slot, func);
+                   s->real_device.domain, s->real_device.bus, s->real_device.dev, s->real_device.func);
     }
 
     /* Initialize virtualized PCI configuration (Extended 256 Bytes) */
@@ -752,7 +752,7 @@ out:
     memory_listener_register(&s->memory_listener, &address_space_memory);
     memory_listener_register(&s->io_listener, &address_space_io);
     XEN_PT_LOG(d, "Real physical device %02x:%02x.%d registered successfuly!\n",
-               bus, slot, func);
+               s->hostaddr.bus, s->hostaddr.slot, s->hostaddr.function);
 
     return 0;
 }
diff --git a/xen-all.c b/xen-all.c
index 046cc2a..d225b9d 100644
--- a/xen-all.c
+++ b/xen-all.c
@@ -292,7 +292,7 @@ static int xen_add_to_physmap(XenIOState *state,
     return -1;
 
 go_physmap:
-    DPRINTF("mapping vram to %llx - %llx\n", start_addr, start_addr + size);
+    DPRINTF("mapping vram to %"PRI_xen_pfn" - %"PRI_xen_pfn"\n", start_addr, start_addr + size);
 
     pfn = phys_offset >> TARGET_PAGE_BITS;
     start_gpfn = start_addr >> TARGET_PAGE_BITS;
@@ -365,7 +365,7 @@ static int xen_remove_from_physmap(XenIOState *state,
     phys_offset = physmap->phys_offset;
     size = physmap->size;
 
-    DPRINTF("unmapping vram to %llx - %llx, from %llx\n",
+    DPRINTF("unmapping vram to %"PRI_xen_pfn" - %"PRI_xen_pfn", from %"PRI_xen_pfn"\n",
             phys_offset, phys_offset + size, start_addr);
 
     size >>= TARGET_PAGE_BITS;
-- 
1.7.2.5

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

* Re: [Qemu-devel] [PATCH] Fix compile errors when enabling Xen debug logging.
  2012-12-13 10:41 ` [Qemu-devel] [PATCH] Fix compile errors when enabling Xen debug logging Sander Eikelenboom
@ 2012-12-13 12:53   ` Stefano Stabellini
  2012-12-13 13:34     ` [Qemu-devel] [PATCH v2] " Sander Eikelenboom
  2012-12-13 13:34     ` Sander Eikelenboom
  0 siblings, 2 replies; 6+ messages in thread
From: Stefano Stabellini @ 2012-12-13 12:53 UTC (permalink / raw)
  To: Sander Eikelenboom
  Cc: Anthony Perard, Stefano Stabellini, qemu-devel@nongnu.org,
	xen-devel@lists.xen.org

On Thu, 13 Dec 2012, Sander Eikelenboom wrote:
> Signed-off-by: Sander Eikelenboom <linux@eikelenboom.it>

please wrap around the lines > 80 characters.


>  hw/xen_pt.c |    4 ++--
>  xen-all.c   |    4 ++--
>  2 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/hw/xen_pt.c b/hw/xen_pt.c
> index 7a3846e..ca42a14 100644
> --- a/hw/xen_pt.c
> +++ b/hw/xen_pt.c
> @@ -671,7 +671,7 @@ static int xen_pt_initfn(PCIDevice *d)
>      s->is_virtfn = s->real_device.is_virtfn;
>      if (s->is_virtfn) {
>          XEN_PT_LOG(d, "%04x:%02x:%02x.%d is a SR-IOV Virtual Function\n",
> -                   s->real_device.domain, bus, slot, func);
> +                   s->real_device.domain, s->real_device.bus, s->real_device.dev, s->real_device.func);
>      }
>  
>      /* Initialize virtualized PCI configuration (Extended 256 Bytes) */
> @@ -752,7 +752,7 @@ out:
>      memory_listener_register(&s->memory_listener, &address_space_memory);
>      memory_listener_register(&s->io_listener, &address_space_io);
>      XEN_PT_LOG(d, "Real physical device %02x:%02x.%d registered successfuly!\n",
> -               bus, slot, func);
> +               s->hostaddr.bus, s->hostaddr.slot, s->hostaddr.function);
>  
>      return 0;
>  }
> diff --git a/xen-all.c b/xen-all.c
> index 046cc2a..d225b9d 100644
> --- a/xen-all.c
> +++ b/xen-all.c
> @@ -292,7 +292,7 @@ static int xen_add_to_physmap(XenIOState *state,
>      return -1;
>  
>  go_physmap:
> -    DPRINTF("mapping vram to %llx - %llx\n", start_addr, start_addr + size);
> +    DPRINTF("mapping vram to %"PRI_xen_pfn" - %"PRI_xen_pfn"\n", start_addr, start_addr + size);

given that start_addr and size are hwaddr, these should be HWADDR_PRIx


>      pfn = phys_offset >> TARGET_PAGE_BITS;
>      start_gpfn = start_addr >> TARGET_PAGE_BITS;
> @@ -365,7 +365,7 @@ static int xen_remove_from_physmap(XenIOState *state,
>      phys_offset = physmap->phys_offset;
>      size = physmap->size;
>  
> -    DPRINTF("unmapping vram to %llx - %llx, from %llx\n",
> +    DPRINTF("unmapping vram to %"PRI_xen_pfn" - %"PRI_xen_pfn", from %"PRI_xen_pfn"\n",
>              phys_offset, phys_offset + size, start_addr);

same here

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

* [Qemu-devel] [PATCH v2] Fix compile errors when enabling Xen debug logging.
  2012-12-13 12:53   ` Stefano Stabellini
@ 2012-12-13 13:34     ` Sander Eikelenboom
  2012-12-13 13:34     ` Sander Eikelenboom
  1 sibling, 0 replies; 6+ messages in thread
From: Sander Eikelenboom @ 2012-12-13 13:34 UTC (permalink / raw)
  To: qemu-devel
  Cc: anthony.perard, Sander Eikelenboom, Stefano.Stabellini, xen-devel

Fix compile errors when enabling Xen debug logging.

v2:
- Wrap around > 80 characters
- Use %"HWADDR_PRIx" format for hwaddr

Sander Eikelenboom (1):
  Fix compile errors when enabling Xen debug logging.

 hw/xen_pt.c |    5 +++--
 xen-all.c   |    7 ++++---
 2 files changed, 7 insertions(+), 5 deletions(-)

-- 
1.7.2.5

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

* [Qemu-devel] [PATCH v2] Fix compile errors when enabling Xen debug logging.
  2012-12-13 12:53   ` Stefano Stabellini
  2012-12-13 13:34     ` [Qemu-devel] [PATCH v2] " Sander Eikelenboom
@ 2012-12-13 13:34     ` Sander Eikelenboom
  2012-12-13 14:08       ` Stefano Stabellini
  1 sibling, 1 reply; 6+ messages in thread
From: Sander Eikelenboom @ 2012-12-13 13:34 UTC (permalink / raw)
  To: qemu-devel
  Cc: anthony.perard, Sander Eikelenboom, Stefano.Stabellini, xen-devel

v2:
- Wrap around > 80 characters
- Use %"HWADDR_PRIx" format for hwaddr

Signed-off-by: Sander Eikelenboom <linux@eikelenboom.it>
---
 hw/xen_pt.c |    5 +++--
 xen-all.c   |    7 ++++---
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/hw/xen_pt.c b/hw/xen_pt.c
index 7a3846e..7aae826 100644
--- a/hw/xen_pt.c
+++ b/hw/xen_pt.c
@@ -671,7 +671,8 @@ static int xen_pt_initfn(PCIDevice *d)
     s->is_virtfn = s->real_device.is_virtfn;
     if (s->is_virtfn) {
         XEN_PT_LOG(d, "%04x:%02x:%02x.%d is a SR-IOV Virtual Function\n",
-                   s->real_device.domain, bus, slot, func);
+                   s->real_device.domain, s->real_device.bus,
+                   s->real_device.dev, s->real_device.func);
     }
 
     /* Initialize virtualized PCI configuration (Extended 256 Bytes) */
@@ -752,7 +753,7 @@ out:
     memory_listener_register(&s->memory_listener, &address_space_memory);
     memory_listener_register(&s->io_listener, &address_space_io);
     XEN_PT_LOG(d, "Real physical device %02x:%02x.%d registered successfuly!\n",
-               bus, slot, func);
+               s->hostaddr.bus, s->hostaddr.slot, s->hostaddr.function);
 
     return 0;
 }
diff --git a/xen-all.c b/xen-all.c
index 046cc2a..d0142bd 100644
--- a/xen-all.c
+++ b/xen-all.c
@@ -292,7 +292,8 @@ static int xen_add_to_physmap(XenIOState *state,
     return -1;
 
 go_physmap:
-    DPRINTF("mapping vram to %llx - %llx\n", start_addr, start_addr + size);
+    DPRINTF("mapping vram to %"HWADDR_PRIx" - %"HWADDR_PRIx"\n",
+            start_addr, start_addr + size);
 
     pfn = phys_offset >> TARGET_PAGE_BITS;
     start_gpfn = start_addr >> TARGET_PAGE_BITS;
@@ -365,8 +366,8 @@ static int xen_remove_from_physmap(XenIOState *state,
     phys_offset = physmap->phys_offset;
     size = physmap->size;
 
-    DPRINTF("unmapping vram to %llx - %llx, from %llx\n",
-            phys_offset, phys_offset + size, start_addr);
+    DPRINTF("unmapping vram to %"HWADDR_PRIx" - %"HWADDR_PRIx", from ",
+            "%"HWADDR_PRIx"\n", phys_offset, phys_offset + size, start_addr);
 
     size >>= TARGET_PAGE_BITS;
     start_addr >>= TARGET_PAGE_BITS;
-- 
1.7.2.5

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

* Re: [Qemu-devel] [PATCH v2] Fix compile errors when enabling Xen debug logging.
  2012-12-13 13:34     ` Sander Eikelenboom
@ 2012-12-13 14:08       ` Stefano Stabellini
  0 siblings, 0 replies; 6+ messages in thread
From: Stefano Stabellini @ 2012-12-13 14:08 UTC (permalink / raw)
  To: Sander Eikelenboom
  Cc: Anthony Perard, Stefano Stabellini, qemu-devel@nongnu.org,
	xen-devel@lists.xen.org

On Thu, 13 Dec 2012, Sander Eikelenboom wrote:
> v2:
> - Wrap around > 80 characters
> - Use %"HWADDR_PRIx" format for hwaddr
> 
> Signed-off-by: Sander Eikelenboom <linux@eikelenboom.it>

Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>


>  hw/xen_pt.c |    5 +++--
>  xen-all.c   |    7 ++++---
>  2 files changed, 7 insertions(+), 5 deletions(-)
> 
> diff --git a/hw/xen_pt.c b/hw/xen_pt.c
> index 7a3846e..7aae826 100644
> --- a/hw/xen_pt.c
> +++ b/hw/xen_pt.c
> @@ -671,7 +671,8 @@ static int xen_pt_initfn(PCIDevice *d)
>      s->is_virtfn = s->real_device.is_virtfn;
>      if (s->is_virtfn) {
>          XEN_PT_LOG(d, "%04x:%02x:%02x.%d is a SR-IOV Virtual Function\n",
> -                   s->real_device.domain, bus, slot, func);
> +                   s->real_device.domain, s->real_device.bus,
> +                   s->real_device.dev, s->real_device.func);
>      }
>  
>      /* Initialize virtualized PCI configuration (Extended 256 Bytes) */
> @@ -752,7 +753,7 @@ out:
>      memory_listener_register(&s->memory_listener, &address_space_memory);
>      memory_listener_register(&s->io_listener, &address_space_io);
>      XEN_PT_LOG(d, "Real physical device %02x:%02x.%d registered successfuly!\n",
> -               bus, slot, func);
> +               s->hostaddr.bus, s->hostaddr.slot, s->hostaddr.function);
>  
>      return 0;
>  }
> diff --git a/xen-all.c b/xen-all.c
> index 046cc2a..d0142bd 100644
> --- a/xen-all.c
> +++ b/xen-all.c
> @@ -292,7 +292,8 @@ static int xen_add_to_physmap(XenIOState *state,
>      return -1;
>  
>  go_physmap:
> -    DPRINTF("mapping vram to %llx - %llx\n", start_addr, start_addr + size);
> +    DPRINTF("mapping vram to %"HWADDR_PRIx" - %"HWADDR_PRIx"\n",
> +            start_addr, start_addr + size);
>  
>      pfn = phys_offset >> TARGET_PAGE_BITS;
>      start_gpfn = start_addr >> TARGET_PAGE_BITS;
> @@ -365,8 +366,8 @@ static int xen_remove_from_physmap(XenIOState *state,
>      phys_offset = physmap->phys_offset;
>      size = physmap->size;
>  
> -    DPRINTF("unmapping vram to %llx - %llx, from %llx\n",
> -            phys_offset, phys_offset + size, start_addr);
> +    DPRINTF("unmapping vram to %"HWADDR_PRIx" - %"HWADDR_PRIx", from ",
> +            "%"HWADDR_PRIx"\n", phys_offset, phys_offset + size, start_addr);
>  
>      size >>= TARGET_PAGE_BITS;
>      start_addr >>= TARGET_PAGE_BITS;
> -- 
> 1.7.2.5
> 

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

end of thread, other threads:[~2012-12-13 14:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1Tj6Gv-00030a-73>
2012-12-13 10:41 ` [Qemu-devel] [PATCH] Fix compile errors when enabling Xen debug logging Sander Eikelenboom
2012-12-13 12:53   ` Stefano Stabellini
2012-12-13 13:34     ` [Qemu-devel] [PATCH v2] " Sander Eikelenboom
2012-12-13 13:34     ` Sander Eikelenboom
2012-12-13 14:08       ` Stefano Stabellini
2012-12-13 10:39 [Qemu-devel] [PATCH] " Sander Eikelenboom

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).