qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/3] Trivial patches for June 22 to 2 July 2012
@ 2012-07-02  9:36 Stefan Hajnoczi
  2012-07-02  9:36 ` [Qemu-devel] [PATCH 1/3] cpu-common.h: Remove unnecessary guard on including targphys.h Stefan Hajnoczi
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Stefan Hajnoczi @ 2012-07-02  9:36 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: qemu-devel, Stefan Hajnoczi

I will be away from 3 - 11 July.  Here is the current trivial-patches queue.

The following changes since commit 71ea2e016131a9fcde6f1ffd3e0e34a64c21f593:

  bsd-user: fix build (2012-06-28 20:28:36 +0000)

are available in the git repository at:

  git://github.com/stefanha/qemu.git trivial-patches

for you to fetch changes up to f595e73713e9b206ac624afd0e48cc927857a3c0:

  configure: Remove help for --disable-vnc-thread, --enable-vnc-thread (2012-07-02 10:10:52 +0100)

----------------------------------------------------------------
Peter Maydell (2):
      cpu-common.h: Remove unnecessary guard on including targphys.h
      cpu-common.h: Remove a pointless ifndef CONFIG_USER_ONLY

Stefan Weil (1):
      configure: Remove help for --disable-vnc-thread, --enable-vnc-thread

 configure    |    2 --
 cpu-common.h |    4 ----
 2 files changed, 6 deletions(-)

-- 
1.7.10

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

* [Qemu-devel] [PATCH 1/3] cpu-common.h: Remove unnecessary guard on including targphys.h
  2012-07-02  9:36 [Qemu-devel] [PULL 0/3] Trivial patches for June 22 to 2 July 2012 Stefan Hajnoczi
@ 2012-07-02  9:36 ` Stefan Hajnoczi
  2012-07-02  9:36 ` [Qemu-devel] [PATCH 2/3] cpu-common.h: Remove a pointless ifndef CONFIG_USER_ONLY Stefan Hajnoczi
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Stefan Hajnoczi @ 2012-07-02  9:36 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: Peter Maydell, qemu-devel, Stefan Hajnoczi

From: Peter Maydell <peter.maydell@linaro.org>

There's no need to make the include of targphys.h conditional
on whether TARGET_PHYS_ADDR_BITS is defined, because targphys.h
itself checks that and does nothing if it isn't.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
---
 cpu-common.h |    2 --
 1 file changed, 2 deletions(-)

diff --git a/cpu-common.h b/cpu-common.h
index 1fe3280..321037f 100644
--- a/cpu-common.h
+++ b/cpu-common.h
@@ -3,9 +3,7 @@
 
 /* CPU interfaces that are target independent.  */
 
-#ifdef TARGET_PHYS_ADDR_BITS
 #include "targphys.h"
-#endif
 
 #ifndef NEED_CPU_H
 #include "poison.h"
-- 
1.7.10

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

* [Qemu-devel] [PATCH 2/3] cpu-common.h: Remove a pointless ifndef CONFIG_USER_ONLY
  2012-07-02  9:36 [Qemu-devel] [PULL 0/3] Trivial patches for June 22 to 2 July 2012 Stefan Hajnoczi
  2012-07-02  9:36 ` [Qemu-devel] [PATCH 1/3] cpu-common.h: Remove unnecessary guard on including targphys.h Stefan Hajnoczi
@ 2012-07-02  9:36 ` Stefan Hajnoczi
  2012-07-02  9:36 ` [Qemu-devel] [PATCH 3/3] configure: Remove help for --disable-vnc-thread, --enable-vnc-thread Stefan Hajnoczi
  2012-07-09 16:48 ` [Qemu-devel] [PULL 0/3] Trivial patches for June 22 to 2 July 2012 Anthony Liguori
  3 siblings, 0 replies; 5+ messages in thread
From: Stefan Hajnoczi @ 2012-07-02  9:36 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: Peter Maydell, qemu-devel, Stefan Hajnoczi

From: Peter Maydell <peter.maydell@linaro.org>

Remove an ifndef CONFIG_USER_ONLY guard that was pointless
because it is already inside an if !defined(CONFIG_USER_ONLY).

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Acked-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
---
 cpu-common.h |    2 --
 1 file changed, 2 deletions(-)

diff --git a/cpu-common.h b/cpu-common.h
index 321037f..85548de 100644
--- a/cpu-common.h
+++ b/cpu-common.h
@@ -69,9 +69,7 @@ void cpu_physical_memory_unmap(void *buffer, target_phys_addr_t len,
 void *cpu_register_map_client(void *opaque, void (*callback)(void *opaque));
 void cpu_unregister_map_client(void *cookie);
 
-#ifndef CONFIG_USER_ONLY
 bool cpu_physical_memory_is_io(target_phys_addr_t phys_addr);
-#endif
 
 /* Coalesced MMIO regions are areas where write operations can be reordered.
  * This usually implies that write operations are side-effect free.  This allows
-- 
1.7.10

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

* [Qemu-devel] [PATCH 3/3] configure: Remove help for --disable-vnc-thread, --enable-vnc-thread
  2012-07-02  9:36 [Qemu-devel] [PULL 0/3] Trivial patches for June 22 to 2 July 2012 Stefan Hajnoczi
  2012-07-02  9:36 ` [Qemu-devel] [PATCH 1/3] cpu-common.h: Remove unnecessary guard on including targphys.h Stefan Hajnoczi
  2012-07-02  9:36 ` [Qemu-devel] [PATCH 2/3] cpu-common.h: Remove a pointless ifndef CONFIG_USER_ONLY Stefan Hajnoczi
@ 2012-07-02  9:36 ` Stefan Hajnoczi
  2012-07-09 16:48 ` [Qemu-devel] [PULL 0/3] Trivial patches for June 22 to 2 July 2012 Anthony Liguori
  3 siblings, 0 replies; 5+ messages in thread
From: Stefan Hajnoczi @ 2012-07-02  9:36 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: Stefan Weil, qemu-devel, Stefan Hajnoczi

From: Stefan Weil <sw@weilnetz.de>

Commit 2624bab836662d37f08336408a99d97652fc9c4d removed these
configure arguments. Now the help text for both is removed, too.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
---
 configure |    2 --
 1 file changed, 2 deletions(-)

diff --git a/configure b/configure
index 9f071b7..500fe24 100755
--- a/configure
+++ b/configure
@@ -1043,8 +1043,6 @@ echo "  --disable-vnc-jpeg       disable JPEG lossy compression for VNC server"
 echo "  --enable-vnc-jpeg        enable JPEG lossy compression for VNC server"
 echo "  --disable-vnc-png        disable PNG compression for VNC server (default)"
 echo "  --enable-vnc-png         enable PNG compression for VNC server"
-echo "  --disable-vnc-thread     disable threaded VNC server"
-echo "  --enable-vnc-thread      enable threaded VNC server"
 echo "  --disable-curses         disable curses output"
 echo "  --enable-curses          enable curses output"
 echo "  --disable-curl           disable curl connectivity"
-- 
1.7.10

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

* Re: [Qemu-devel] [PULL 0/3] Trivial patches for June 22 to 2 July 2012
  2012-07-02  9:36 [Qemu-devel] [PULL 0/3] Trivial patches for June 22 to 2 July 2012 Stefan Hajnoczi
                   ` (2 preceding siblings ...)
  2012-07-02  9:36 ` [Qemu-devel] [PATCH 3/3] configure: Remove help for --disable-vnc-thread, --enable-vnc-thread Stefan Hajnoczi
@ 2012-07-09 16:48 ` Anthony Liguori
  3 siblings, 0 replies; 5+ messages in thread
From: Anthony Liguori @ 2012-07-09 16:48 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: qemu-devel

On 07/02/2012 04:36 AM, Stefan Hajnoczi wrote:
> I will be away from 3 - 11 July.  Here is the current trivial-patches queue.

Pulled.  Thanks.

Regards,

Anthony Liguoriggg

>
> The following changes since commit 71ea2e016131a9fcde6f1ffd3e0e34a64c21f593:
>
>    bsd-user: fix build (2012-06-28 20:28:36 +0000)
>
> are available in the git repository at:
>
>    git://github.com/stefanha/qemu.git trivial-patches
>
> for you to fetch changes up to f595e73713e9b206ac624afd0e48cc927857a3c0:
>
>    configure: Remove help for --disable-vnc-thread, --enable-vnc-thread (2012-07-02 10:10:52 +0100)
>
> ----------------------------------------------------------------
> Peter Maydell (2):
>        cpu-common.h: Remove unnecessary guard on including targphys.h
>        cpu-common.h: Remove a pointless ifndef CONFIG_USER_ONLY
>
> Stefan Weil (1):
>        configure: Remove help for --disable-vnc-thread, --enable-vnc-thread
>
>   configure    |    2 --
>   cpu-common.h |    4 ----
>   2 files changed, 6 deletions(-)
>

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

end of thread, other threads:[~2012-07-09 16:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-02  9:36 [Qemu-devel] [PULL 0/3] Trivial patches for June 22 to 2 July 2012 Stefan Hajnoczi
2012-07-02  9:36 ` [Qemu-devel] [PATCH 1/3] cpu-common.h: Remove unnecessary guard on including targphys.h Stefan Hajnoczi
2012-07-02  9:36 ` [Qemu-devel] [PATCH 2/3] cpu-common.h: Remove a pointless ifndef CONFIG_USER_ONLY Stefan Hajnoczi
2012-07-02  9:36 ` [Qemu-devel] [PATCH 3/3] configure: Remove help for --disable-vnc-thread, --enable-vnc-thread Stefan Hajnoczi
2012-07-09 16:48 ` [Qemu-devel] [PULL 0/3] Trivial patches for June 22 to 2 July 2012 Anthony Liguori

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