All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20
@ 2013-09-20 16:57 Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 01/17] configure: Undefine _FORTIFY_SOURCE prior using it Michael Tokarev
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: Michael Tokarev @ 2013-09-20 16:57 UTC (permalink / raw)
  To: aliguori; +Cc: qemu-trivial, Michael Tokarev, qemu-devel

Here is another trivial-patches pull request, which includes patches
from previous week (with fixes for build failures -- one patch fixed
and one removed) plus a few more patches accumulated during this week.

Please pull.

Thanks,

/mjt

The following changes since commit 6c2679fc19560699679200fb42ab4659bcbe7f79:

  Merge remote-tracking branch 'kiszka/queues/slirp' into staging (2013-09-17 10:01:24 -0500)

are available in the git repository at:


  git://git.corpit.ru/qemu.git trivial-patches

for you to fetch changes up to 7a1c0d200f3ca5be48f7034c6ed5458e490f8816:

  tests/.gitignore: ignore test-throttle (2013-09-20 20:15:33 +0400)

----------------------------------------------------------------
Anthony PERARD (1):
      docs: Fix IO port number for CPU present bitmap.

Fam Zheng (1):
      tests/.gitignore: ignore test-throttle

Markus Armbruster (1):
      trace-events: Clean up with scripts/cleanup-trace-events.pl again

Michael Tokarev (2):
      vscclient: remove unnecessary use of uninitialized variable
      iov: avoid "orig_len may be used unitialized" warning

Michal Privoznik (1):
      configure: Undefine _FORTIFY_SOURCE prior using it

Richard Henderson (1):
      tcg-sparc: Fix parenthesis warning

Richard W.M. Jones (1):
      q35: Fix typo in constant DEFUALT -> DEFAULT.

Stefan Weil (8):
      *-user: Fix typo in comment (ulocking -> unlocking)
      translate-all: Fix formatting of dump output
      MAINTAINERS: Add missing entry to filelist for TCI target
      *-user: Improve documentation for lock_user function
      tci: Fix qemu-alpha on 32 bit hosts (wrong assertions)
      Makefile: Remove some more files when cleaning
      kvm: Fix compiler warning (clang)
      exec: Fix broken build for MinGW (regression)

Tobias Markus (1):
      target-i386: Fix segment cache dump

 MAINTAINERS                     |    1 +
 Makefile                        |    4 +++-
 bsd-user/qemu.h                 |    6 +++---
 configure                       |    2 +-
 docs/specs/acpi_cpu_hotplug.txt |    2 +-
 exec.c                          |    2 ++
 hw/i386/kvm/clock.c             |    2 +-
 hw/pci-host/q35.c               |    2 +-
 include/hw/pci-host/q35.h       |    2 +-
 libcacard/vscclient.c           |    3 +--
 linux-user/qemu.h               |    6 +++---
 target-i386/helper.c            |    4 +++-
 tcg/sparc/tcg-target.h          |    2 +-
 tci.c                           |   12 ------------
 tests/.gitignore                |    1 +
 trace-events                    |    3 +--
 translate-all.c                 |    5 +++--
 util/iov.c                      |   10 ++++------
 18 files changed, 31 insertions(+), 38 deletions(-)

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

* [Qemu-devel] [PULL 01/17] configure: Undefine _FORTIFY_SOURCE prior using it
  2013-09-20 16:57 [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20 Michael Tokarev
@ 2013-09-20 16:58 ` Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 02/17] q35: Fix typo in constant DEFUALT -> DEFAULT Michael Tokarev
                   ` (15 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Michael Tokarev @ 2013-09-20 16:58 UTC (permalink / raw)
  To: aliguori
  Cc: qemu-trivial, Michal Privoznik, Jan Vesely, Michael Tokarev, qemu-devel

From: Michal Privoznik <mprivozn@redhat.com>

Currently, we are enforcing the _FORTIFY_SOURCE=2 without any
previous detection if the macro has been already defined, e.g.
by environment, or is just enabled by compiler by default.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Signed-off-by: Jan Vesely <jano.vesely@gmail.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 configure |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure b/configure
index 1b6f68b..8ad42bc 100755
--- a/configure
+++ b/configure
@@ -3520,7 +3520,7 @@ if test "$gcov" = "yes" ; then
   CFLAGS="-fprofile-arcs -ftest-coverage -g $CFLAGS"
   LDFLAGS="-fprofile-arcs -ftest-coverage $LDFLAGS"
 elif test "$debug" = "no" ; then
-  CFLAGS="-O2 -D_FORTIFY_SOURCE=2 $CFLAGS"
+  CFLAGS="-O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $CFLAGS"
 fi
 
 
-- 
1.7.10.4

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

* [Qemu-devel] [PULL 02/17] q35: Fix typo in constant DEFUALT -> DEFAULT.
  2013-09-20 16:57 [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20 Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 01/17] configure: Undefine _FORTIFY_SOURCE prior using it Michael Tokarev
@ 2013-09-20 16:58 ` Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 03/17] docs: Fix IO port number for CPU present bitmap Michael Tokarev
                   ` (14 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Michael Tokarev @ 2013-09-20 16:58 UTC (permalink / raw)
  To: aliguori; +Cc: qemu-trivial, Michael Tokarev, Richard W.M. Jones, qemu-devel

From: "Richard W.M. Jones" <rjones@redhat.com>

Signed-off-by: Richard W.M. Jones <rjones@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 hw/pci-host/q35.c         |    2 +-
 include/hw/pci-host/q35.h |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/pci-host/q35.c b/hw/pci-host/q35.c
index 5473504..0cb652d 100644
--- a/hw/pci-host/q35.c
+++ b/hw/pci-host/q35.c
@@ -372,7 +372,7 @@ static void mch_class_init(ObjectClass *klass, void *data)
     dc->vmsd = &vmstate_mch;
     k->vendor_id = PCI_VENDOR_ID_INTEL;
     k->device_id = PCI_DEVICE_ID_INTEL_Q35_MCH;
-    k->revision = MCH_HOST_BRIDGE_REVISION_DEFUALT;
+    k->revision = MCH_HOST_BRIDGE_REVISION_DEFAULT;
     k->class_id = PCI_CLASS_BRIDGE_HOST;
 }
 
diff --git a/include/hw/pci-host/q35.h b/include/hw/pci-host/q35.h
index 6eb7ab6..56de92e 100644
--- a/include/hw/pci-host/q35.h
+++ b/include/hw/pci-host/q35.h
@@ -85,7 +85,7 @@ typedef struct Q35PCIHost {
 #define MCH_HOST_BRIDGE_CONFIG_DATA            0xcfc
 
 /* D0:F0 configuration space */
-#define MCH_HOST_BRIDGE_REVISION_DEFUALT       0x0
+#define MCH_HOST_BRIDGE_REVISION_DEFAULT       0x0
 
 #define MCH_HOST_BRIDGE_PCIEXBAR               0x60    /* 64bit register */
 #define MCH_HOST_BRIDGE_PCIEXBAR_SIZE          8       /* 64bit register */
-- 
1.7.10.4

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

* [Qemu-devel] [PULL 03/17] docs: Fix IO port number for CPU present bitmap.
  2013-09-20 16:57 [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20 Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 01/17] configure: Undefine _FORTIFY_SOURCE prior using it Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 02/17] q35: Fix typo in constant DEFUALT -> DEFAULT Michael Tokarev
@ 2013-09-20 16:58 ` Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 04/17] *-user: Fix typo in comment (ulocking -> unlocking) Michael Tokarev
                   ` (13 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Michael Tokarev @ 2013-09-20 16:58 UTC (permalink / raw)
  To: aliguori; +Cc: Anthony PERARD, qemu-trivial, Michael Tokarev, qemu-devel

From: Anthony PERARD <anthony.perard@citrix.com>

Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Reviewd-By: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 docs/specs/acpi_cpu_hotplug.txt |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/specs/acpi_cpu_hotplug.txt b/docs/specs/acpi_cpu_hotplug.txt
index 5dec0c5..f6f5774 100644
--- a/docs/specs/acpi_cpu_hotplug.txt
+++ b/docs/specs/acpi_cpu_hotplug.txt
@@ -10,7 +10,7 @@ ACPI GPE block (IO ports 0xafe0-0xafe3, byte access):
 Generic ACPI GPE block. Bit 2 (GPE.2) used to notify CPU
 hot-add/remove event to ACPI BIOS, via SCI interrupt.
 
-CPU present bitmap (IO port 0xaf00-0xae1f, 1-byte access):
+CPU present bitmap (IO port 0xaf00-0xaf1f, 1-byte access):
 ---------------------------------------------------------------
 One bit per CPU. Bit position reflects corresponding CPU APIC ID.
 Read-only.
-- 
1.7.10.4

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

* [Qemu-devel] [PULL 04/17] *-user: Fix typo in comment (ulocking -> unlocking)
  2013-09-20 16:57 [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20 Michael Tokarev
                   ` (2 preceding siblings ...)
  2013-09-20 16:58 ` [Qemu-devel] [PULL 03/17] docs: Fix IO port number for CPU present bitmap Michael Tokarev
@ 2013-09-20 16:58 ` Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 05/17] translate-all: Fix formatting of dump output Michael Tokarev
                   ` (12 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Michael Tokarev @ 2013-09-20 16:58 UTC (permalink / raw)
  To: aliguori; +Cc: qemu-trivial, Stefan Weil, Michael Tokarev, qemu-devel

From: Stefan Weil <sw@weilnetz.de>

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 bsd-user/qemu.h   |    2 +-
 linux-user/qemu.h |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h
index 325f564..1f8ec6e 100644
--- a/bsd-user/qemu.h
+++ b/bsd-user/qemu.h
@@ -381,7 +381,7 @@ static inline void *lock_user_string(abi_ulong guest_addr)
     return lock_user(VERIFY_READ, guest_addr, (long)(len + 1), 1);
 }
 
-/* Helper macros for locking/ulocking a target struct.  */
+/* Helper macros for locking/unlocking a target struct.  */
 #define lock_user_struct(type, host_ptr, guest_addr, copy)      \
     (host_ptr = lock_user(type, guest_addr, sizeof(*host_ptr), copy))
 #define unlock_user_struct(host_ptr, guest_addr, copy)          \
diff --git a/linux-user/qemu.h b/linux-user/qemu.h
index 6ffe5a2..4422dfc 100644
--- a/linux-user/qemu.h
+++ b/linux-user/qemu.h
@@ -438,7 +438,7 @@ static inline void *lock_user_string(abi_ulong guest_addr)
     return lock_user(VERIFY_READ, guest_addr, (long)(len + 1), 1);
 }
 
-/* Helper macros for locking/ulocking a target struct.  */
+/* Helper macros for locking/unlocking a target struct.  */
 #define lock_user_struct(type, host_ptr, guest_addr, copy)	\
     (host_ptr = lock_user(type, guest_addr, sizeof(*host_ptr), copy))
 #define unlock_user_struct(host_ptr, guest_addr, copy)		\
-- 
1.7.10.4

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

* [Qemu-devel] [PULL 05/17] translate-all: Fix formatting of dump output
  2013-09-20 16:57 [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20 Michael Tokarev
                   ` (3 preceding siblings ...)
  2013-09-20 16:58 ` [Qemu-devel] [PULL 04/17] *-user: Fix typo in comment (ulocking -> unlocking) Michael Tokarev
@ 2013-09-20 16:58 ` Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 06/17] MAINTAINERS: Add missing entry to filelist for TCI target Michael Tokarev
                   ` (11 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Michael Tokarev @ 2013-09-20 16:58 UTC (permalink / raw)
  To: aliguori; +Cc: qemu-trivial, Stefan Weil, Michael Tokarev, qemu-devel

From: Stefan Weil <sw@weilnetz.de>

The page dump writes a table with 3 abi_ulong values in each row.
These values take 8 or 16 characters (depending on sizeof abi_ulong).

Fix the table headings to be aligned with the table columns.

old:
start    end      size     prot
0000000120000000-000000012021e000 000000000021e000 rwx
0000004000000000-0000004000002000 0000000000002000 ---
0000004000002000-0000004000802000 0000000000800000 rw-

new:
start            end              size             prot
0000000120000000-000000012021e000 000000000021e000 rwx
0000004000000000-0000004000002000 0000000000002000 ---
0000004000002000-0000004000802000 0000000000800000 rw-

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 translate-all.c |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/translate-all.c b/translate-all.c
index 2c923c6..e7aff92 100644
--- a/translate-all.c
+++ b/translate-all.c
@@ -1679,8 +1679,9 @@ static int dump_region(void *priv, abi_ulong start,
 /* dump memory mappings */
 void page_dump(FILE *f)
 {
-    (void) fprintf(f, "%-8s %-8s %-8s %s\n",
-            "start", "end", "size", "prot");
+    const int length = sizeof(abi_ulong) * 2;
+    (void) fprintf(f, "%-*s %-*s %-*s %s\n",
+            length, "start", length, "end", length, "size", "prot");
     walk_memory_regions(f, dump_region);
 }
 
-- 
1.7.10.4

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

* [Qemu-devel] [PULL 06/17] MAINTAINERS: Add missing entry to filelist for TCI target
  2013-09-20 16:57 [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20 Michael Tokarev
                   ` (4 preceding siblings ...)
  2013-09-20 16:58 ` [Qemu-devel] [PULL 05/17] translate-all: Fix formatting of dump output Michael Tokarev
@ 2013-09-20 16:58 ` Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 07/17] *-user: Improve documentation for lock_user function Michael Tokarev
                   ` (10 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Michael Tokarev @ 2013-09-20 16:58 UTC (permalink / raw)
  To: aliguori; +Cc: qemu-trivial, Stefan Weil, Michael Tokarev, qemu-devel

From: Stefan Weil <sw@weilnetz.de>

tci.c is also a maintained part of the TCI implementation.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 MAINTAINERS |    1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index d128ed0..4d634f2 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -842,6 +842,7 @@ TCI target
 M: Stefan Weil <sw@weilnetz.de>
 S: Maintained
 F: tcg/tci/
+F: tci.c
 
 Stable branches
 ---------------
-- 
1.7.10.4

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

* [Qemu-devel] [PULL 07/17] *-user: Improve documentation for lock_user function
  2013-09-20 16:57 [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20 Michael Tokarev
                   ` (5 preceding siblings ...)
  2013-09-20 16:58 ` [Qemu-devel] [PULL 06/17] MAINTAINERS: Add missing entry to filelist for TCI target Michael Tokarev
@ 2013-09-20 16:58 ` Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 08/17] tci: Fix qemu-alpha on 32 bit hosts (wrong assertions) Michael Tokarev
                   ` (9 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Michael Tokarev @ 2013-09-20 16:58 UTC (permalink / raw)
  To: aliguori; +Cc: qemu-trivial, Stefan Weil, Michael Tokarev, qemu-devel

From: Stefan Weil <sw@weilnetz.de>

Add a missing "function" and replace "and" by "any".
BSD and Linux use the same documentation here, so fix both.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 bsd-user/qemu.h   |    4 ++--
 linux-user/qemu.h |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h
index 1f8ec6e..ddc74ed 100644
--- a/bsd-user/qemu.h
+++ b/bsd-user/qemu.h
@@ -323,9 +323,9 @@ abi_long copy_from_user(void *hptr, abi_ulong gaddr, size_t len);
 abi_long copy_to_user(abi_ulong gaddr, void *hptr, size_t len);
 
 /* Functions for accessing guest memory.  The tget and tput functions
-   read/write single values, byteswapping as necessary.  The lock_user
+   read/write single values, byteswapping as necessary.  The lock_user function
    gets a pointer to a contiguous area of guest memory, but does not perform
-   and byteswapping.  lock_user may return either a pointer to the guest
+   any byteswapping.  lock_user may return either a pointer to the guest
    memory, or a temporary buffer.  */
 
 /* Lock an area of guest memory into the host.  If copy is true then the
diff --git a/linux-user/qemu.h b/linux-user/qemu.h
index 4422dfc..617cac1 100644
--- a/linux-user/qemu.h
+++ b/linux-user/qemu.h
@@ -380,9 +380,9 @@ abi_long copy_from_user(void *hptr, abi_ulong gaddr, size_t len);
 abi_long copy_to_user(abi_ulong gaddr, void *hptr, size_t len);
 
 /* Functions for accessing guest memory.  The tget and tput functions
-   read/write single values, byteswapping as necessary.  The lock_user
+   read/write single values, byteswapping as necessary.  The lock_user function
    gets a pointer to a contiguous area of guest memory, but does not perform
-   and byteswapping.  lock_user may return either a pointer to the guest
+   any byteswapping.  lock_user may return either a pointer to the guest
    memory, or a temporary buffer.  */
 
 /* Lock an area of guest memory into the host.  If copy is true then the
-- 
1.7.10.4

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

* [Qemu-devel] [PULL 08/17] tci: Fix qemu-alpha on 32 bit hosts (wrong assertions)
  2013-09-20 16:57 [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20 Michael Tokarev
                   ` (6 preceding siblings ...)
  2013-09-20 16:58 ` [Qemu-devel] [PULL 07/17] *-user: Improve documentation for lock_user function Michael Tokarev
@ 2013-09-20 16:58 ` Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 09/17] trace-events: Clean up with scripts/cleanup-trace-events.pl again Michael Tokarev
                   ` (8 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Michael Tokarev @ 2013-09-20 16:58 UTC (permalink / raw)
  To: aliguori
  Cc: qemu-trivial, Stefan Weil, Michael Tokarev, qemu-devel, qemu-stable

From: Stefan Weil <sw@weilnetz.de>

Debian busybox-static for alpha has a load address of 0x0000000120000000
which is mapped to 0x0000000020000000 for 32 bit hosts.

qemu-alpha uses the TCG opcodes qemu_ld32, qemu_ld64, qemu_st32 and
qemu_st64 which all raise the assertion (taddr == host_addr).

Remove all assertions of this type because they are either wrong or
unnecessary (when sizeof(tcg_target_ulong) >= sizeof(target_ulong)).

Cc: qemu-stable <qemu-stable@nongnu.org>
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 tci.c |   12 ------------
 1 file changed, 12 deletions(-)

diff --git a/tci.c b/tci.c
index 18c888e..6d64891 100644
--- a/tci.c
+++ b/tci.c
@@ -1085,7 +1085,6 @@ uintptr_t tcg_qemu_tb_exec(CPUArchState *env, uint8_t *tb_ptr)
             tmp8 = helper_ldb_mmu(env, taddr, tci_read_i(&tb_ptr));
 #else
             host_addr = (tcg_target_ulong)taddr;
-            assert(taddr == host_addr);
             tmp8 = *(uint8_t *)(host_addr + GUEST_BASE);
 #endif
             tci_write_reg8(t0, tmp8);
@@ -1097,7 +1096,6 @@ uintptr_t tcg_qemu_tb_exec(CPUArchState *env, uint8_t *tb_ptr)
             tmp8 = helper_ldb_mmu(env, taddr, tci_read_i(&tb_ptr));
 #else
             host_addr = (tcg_target_ulong)taddr;
-            assert(taddr == host_addr);
             tmp8 = *(uint8_t *)(host_addr + GUEST_BASE);
 #endif
             tci_write_reg8s(t0, tmp8);
@@ -1109,7 +1107,6 @@ uintptr_t tcg_qemu_tb_exec(CPUArchState *env, uint8_t *tb_ptr)
             tmp16 = helper_ldw_mmu(env, taddr, tci_read_i(&tb_ptr));
 #else
             host_addr = (tcg_target_ulong)taddr;
-            assert(taddr == host_addr);
             tmp16 = tswap16(*(uint16_t *)(host_addr + GUEST_BASE));
 #endif
             tci_write_reg16(t0, tmp16);
@@ -1121,7 +1118,6 @@ uintptr_t tcg_qemu_tb_exec(CPUArchState *env, uint8_t *tb_ptr)
             tmp16 = helper_ldw_mmu(env, taddr, tci_read_i(&tb_ptr));
 #else
             host_addr = (tcg_target_ulong)taddr;
-            assert(taddr == host_addr);
             tmp16 = tswap16(*(uint16_t *)(host_addr + GUEST_BASE));
 #endif
             tci_write_reg16s(t0, tmp16);
@@ -1134,7 +1130,6 @@ uintptr_t tcg_qemu_tb_exec(CPUArchState *env, uint8_t *tb_ptr)
             tmp32 = helper_ldl_mmu(env, taddr, tci_read_i(&tb_ptr));
 #else
             host_addr = (tcg_target_ulong)taddr;
-            assert(taddr == host_addr);
             tmp32 = tswap32(*(uint32_t *)(host_addr + GUEST_BASE));
 #endif
             tci_write_reg32(t0, tmp32);
@@ -1146,7 +1141,6 @@ uintptr_t tcg_qemu_tb_exec(CPUArchState *env, uint8_t *tb_ptr)
             tmp32 = helper_ldl_mmu(env, taddr, tci_read_i(&tb_ptr));
 #else
             host_addr = (tcg_target_ulong)taddr;
-            assert(taddr == host_addr);
             tmp32 = tswap32(*(uint32_t *)(host_addr + GUEST_BASE));
 #endif
             tci_write_reg32s(t0, tmp32);
@@ -1159,7 +1153,6 @@ uintptr_t tcg_qemu_tb_exec(CPUArchState *env, uint8_t *tb_ptr)
             tmp32 = helper_ldl_mmu(env, taddr, tci_read_i(&tb_ptr));
 #else
             host_addr = (tcg_target_ulong)taddr;
-            assert(taddr == host_addr);
             tmp32 = tswap32(*(uint32_t *)(host_addr + GUEST_BASE));
 #endif
             tci_write_reg32(t0, tmp32);
@@ -1174,7 +1167,6 @@ uintptr_t tcg_qemu_tb_exec(CPUArchState *env, uint8_t *tb_ptr)
             tmp64 = helper_ldq_mmu(env, taddr, tci_read_i(&tb_ptr));
 #else
             host_addr = (tcg_target_ulong)taddr;
-            assert(taddr == host_addr);
             tmp64 = tswap64(*(uint64_t *)(host_addr + GUEST_BASE));
 #endif
             tci_write_reg(t0, tmp64);
@@ -1190,7 +1182,6 @@ uintptr_t tcg_qemu_tb_exec(CPUArchState *env, uint8_t *tb_ptr)
             helper_stb_mmu(env, taddr, t0, t2);
 #else
             host_addr = (tcg_target_ulong)taddr;
-            assert(taddr == host_addr);
             *(uint8_t *)(host_addr + GUEST_BASE) = t0;
 #endif
             break;
@@ -1202,7 +1193,6 @@ uintptr_t tcg_qemu_tb_exec(CPUArchState *env, uint8_t *tb_ptr)
             helper_stw_mmu(env, taddr, t0, t2);
 #else
             host_addr = (tcg_target_ulong)taddr;
-            assert(taddr == host_addr);
             *(uint16_t *)(host_addr + GUEST_BASE) = tswap16(t0);
 #endif
             break;
@@ -1214,7 +1204,6 @@ uintptr_t tcg_qemu_tb_exec(CPUArchState *env, uint8_t *tb_ptr)
             helper_stl_mmu(env, taddr, t0, t2);
 #else
             host_addr = (tcg_target_ulong)taddr;
-            assert(taddr == host_addr);
             *(uint32_t *)(host_addr + GUEST_BASE) = tswap32(t0);
 #endif
             break;
@@ -1226,7 +1215,6 @@ uintptr_t tcg_qemu_tb_exec(CPUArchState *env, uint8_t *tb_ptr)
             helper_stq_mmu(env, taddr, tmp64, t2);
 #else
             host_addr = (tcg_target_ulong)taddr;
-            assert(taddr == host_addr);
             *(uint64_t *)(host_addr + GUEST_BASE) = tswap64(tmp64);
 #endif
             break;
-- 
1.7.10.4

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

* [Qemu-devel] [PULL 09/17] trace-events: Clean up with scripts/cleanup-trace-events.pl again
  2013-09-20 16:57 [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20 Michael Tokarev
                   ` (7 preceding siblings ...)
  2013-09-20 16:58 ` [Qemu-devel] [PULL 08/17] tci: Fix qemu-alpha on 32 bit hosts (wrong assertions) Michael Tokarev
@ 2013-09-20 16:58 ` Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 10/17] vscclient: remove unnecessary use of uninitialized variable Michael Tokarev
                   ` (7 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Michael Tokarev @ 2013-09-20 16:58 UTC (permalink / raw)
  To: aliguori; +Cc: qemu-trivial, Michael Tokarev, Markus Armbruster, qemu-devel

From: Markus Armbruster <armbru@redhat.com>

Event qxl_render_blit_guest_primary_initialized is unused since commit
c58c7b9, drop it.

Commit 42e5b4c moved hw/ppc/xics.c to hw/intc/xics.c without updating
the comment in trace-events.

"scripts/cleanup-trace-events.pl trace-events | diff trace-events" is
now clean again.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 trace-events |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/trace-events b/trace-events
index d4dba24..9a1347b 100644
--- a/trace-events
+++ b/trace-events
@@ -1109,7 +1109,6 @@ qemu_spice_wakeup(uint32_t qid) "%d"
 qemu_spice_create_update(uint32_t left, uint32_t right, uint32_t top, uint32_t bottom) "lr %d -> %d,  tb -> %d -> %d"
 
 # hw/display/qxl-render.c
-qxl_render_blit_guest_primary_initialized(void) ""
 qxl_render_blit(int32_t stride, int32_t left, int32_t right, int32_t top, int32_t bottom) "stride=%d [%d, %d, %d, %d]"
 qxl_render_guest_primary_resized(int32_t width, int32_t height, int32_t stride, int32_t bytes_pp, int32_t bits_pp) "%dx%d, stride %d, bpp %d, depth %d"
 qxl_render_update_area_done(void *cookie) "%p"
@@ -1122,7 +1121,7 @@ spapr_pci_rtas_ibm_query_interrupt_source_number(unsigned ioa, unsigned intr) "q
 spapr_pci_msi_write(uint64_t addr, uint64_t data, uint32_t dt_irq) "@%"PRIx64"<=%"PRIx64" IRQ %u"
 spapr_pci_lsi_set(const char *busname, int pin, uint32_t irq) "%s PIN%d IRQ %u"
 
-# hw/ppc/xics.c
+# hw/intc/xics.c
 xics_icp_check_ipi(int server, uint8_t mfrr) "CPU %d can take IPI mfrr=%#x"
 xics_icp_accept(uint32_t old_xirr, uint32_t new_xirr) "icp_accept: XIRR %#"PRIx32"->%#"PRIx32
 xics_icp_eoi(int server, uint32_t xirr, uint32_t new_xirr) "icp_eoi: server %d given XIRR %#"PRIx32" new XIRR %#"PRIx32
-- 
1.7.10.4

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

* [Qemu-devel] [PULL 10/17] vscclient: remove unnecessary use of uninitialized variable
  2013-09-20 16:57 [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20 Michael Tokarev
                   ` (8 preceding siblings ...)
  2013-09-20 16:58 ` [Qemu-devel] [PULL 09/17] trace-events: Clean up with scripts/cleanup-trace-events.pl again Michael Tokarev
@ 2013-09-20 16:58 ` Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 11/17] iov: avoid "orig_len may be used unitialized" warning Michael Tokarev
                   ` (6 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Michael Tokarev @ 2013-09-20 16:58 UTC (permalink / raw)
  To: aliguori; +Cc: qemu-trivial, Michael Tokarev, qemu-devel, Wenchao Xia

Signed-off-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 libcacard/vscclient.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/libcacard/vscclient.c b/libcacard/vscclient.c
index 5180d29..a3cb776 100644
--- a/libcacard/vscclient.c
+++ b/libcacard/vscclient.c
@@ -645,7 +645,6 @@ main(
     GIOChannel *channel_stdin;
     char *qemu_host;
     char *qemu_port;
-    VSCMsgHeader mhHeader;
 
     VCardEmulOptions *command_line_options = NULL;
 
@@ -754,7 +753,7 @@ main(
         .magic = VSCARD_MAGIC,
         .capabilities = {0}
     };
-    send_msg(VSC_Init, mhHeader.reader_id, &init, sizeof(init));
+    send_msg(VSC_Init, 0, &init, sizeof(init));
 
     g_main_loop_run(loop);
     g_main_loop_unref(loop);
-- 
1.7.10.4

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

* [Qemu-devel] [PULL 11/17] iov: avoid "orig_len may be used unitialized" warning
  2013-09-20 16:57 [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20 Michael Tokarev
                   ` (9 preceding siblings ...)
  2013-09-20 16:58 ` [Qemu-devel] [PULL 10/17] vscclient: remove unnecessary use of uninitialized variable Michael Tokarev
@ 2013-09-20 16:58 ` Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 12/17] target-i386: Fix segment cache dump Michael Tokarev
                   ` (5 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Michael Tokarev @ 2013-09-20 16:58 UTC (permalink / raw)
  To: aliguori; +Cc: qemu-trivial, Michael Tokarev, qemu-devel, Wenchao Xia

Signed-off-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 util/iov.c |   10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/util/iov.c b/util/iov.c
index f705586..bb46c04 100644
--- a/util/iov.c
+++ b/util/iov.c
@@ -181,13 +181,11 @@ ssize_t iov_send_recv(int sockfd, struct iovec *iov, unsigned iov_cnt,
             assert(iov[niov].iov_len > tail);
             orig_len = iov[niov].iov_len;
             iov[niov++].iov_len = tail;
-        }
-
-        ret = do_send_recv(sockfd, iov, niov, do_send);
-
-        /* Undo the changes above before checking for errors */
-        if (tail) {
+            ret = do_send_recv(sockfd, iov, niov, do_send);
+            /* Undo the changes above before checking for errors */
             iov[niov-1].iov_len = orig_len;
+        } else {
+            ret = do_send_recv(sockfd, iov, niov, do_send);
         }
         if (offset) {
             iov[0].iov_base -= offset;
-- 
1.7.10.4

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

* [Qemu-devel] [PULL 12/17] target-i386: Fix segment cache dump
  2013-09-20 16:57 [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20 Michael Tokarev
                   ` (10 preceding siblings ...)
  2013-09-20 16:58 ` [Qemu-devel] [PULL 11/17] iov: avoid "orig_len may be used unitialized" warning Michael Tokarev
@ 2013-09-20 16:58 ` Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 13/17] Makefile: Remove some more files when cleaning Michael Tokarev
                   ` (4 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Michael Tokarev @ 2013-09-20 16:58 UTC (permalink / raw)
  To: aliguori; +Cc: Tobias Markus, qemu-trivial, Michael Tokarev, qemu-devel

From: Tobias Markus <tobias@markus-regensburg.de>

When in Long Mode, cpu_x86_seg_cache() logs "DS16" because the Default
operation size bit (D/B bit) is not set for Long Mode Data Segments since
there are only Data Segments in Long Mode and no explicit 16/32/64-bit
Descriptors.
This patch fixes this by checking the Long Mode Active bit of the hidden
flags variable and logging "DS" if it is set. (I.e. in Long Mode all Data
Segments are logged as "DS")

Signed-off-by: Tobias Markus <tobias@markus-regensburg.de>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 target-i386/helper.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/target-i386/helper.c b/target-i386/helper.c
index 8bf85ec..35f09d2 100644
--- a/target-i386/helper.c
+++ b/target-i386/helper.c
@@ -147,7 +147,9 @@ cpu_x86_dump_seg_cache(CPUX86State *env, FILE *f, fprintf_function cpu_fprintf,
             cpu_fprintf(f, " [%c%c", (sc->flags & DESC_C_MASK) ? 'C' : '-',
                         (sc->flags & DESC_R_MASK) ? 'R' : '-');
         } else {
-            cpu_fprintf(f, (sc->flags & DESC_B_MASK) ? "DS  " : "DS16");
+            cpu_fprintf(f,
+                        (sc->flags & DESC_B_MASK || env->hflags & HF_LMA_MASK)
+                        ? "DS  " : "DS16");
             cpu_fprintf(f, " [%c%c", (sc->flags & DESC_E_MASK) ? 'E' : '-',
                         (sc->flags & DESC_W_MASK) ? 'W' : '-');
         }
-- 
1.7.10.4

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

* [Qemu-devel] [PULL 13/17] Makefile: Remove some more files when cleaning
  2013-09-20 16:57 [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20 Michael Tokarev
                   ` (11 preceding siblings ...)
  2013-09-20 16:58 ` [Qemu-devel] [PULL 12/17] target-i386: Fix segment cache dump Michael Tokarev
@ 2013-09-20 16:58 ` Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 14/17] tcg-sparc: Fix parenthesis warning Michael Tokarev
                   ` (3 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Michael Tokarev @ 2013-09-20 16:58 UTC (permalink / raw)
  To: aliguori; +Cc: qemu-trivial, Stefan Weil, Michael Tokarev, qemu-devel

From: Stefan Weil <sw@weilnetz.de>

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 Makefile |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 362fe3e..f6da5fe 100644
--- a/Makefile
+++ b/Makefile
@@ -236,7 +236,8 @@ clean:
 	find . -name '*.[oda]' -type f -exec rm -f {} +
 	find . -name '*.l[oa]' -type f -exec rm -f {} +
 	rm -f $(filter-out %.tlb,$(TOOLS)) $(HELPERS-y) qemu-ga TAGS cscope.* *.pod *~ */*~
-	rm -Rf .libs
+	rm -f fsdev/*.pod
+	rm -rf .libs */.libs
 	rm -f qemu-img-cmds.h
 	@# May not be present in GENERATED_HEADERS
 	rm -f trace/generated-tracers-dtrace.dtrace*
@@ -261,6 +262,7 @@ qemu-%.tar.bz2:
 distclean: clean
 	rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
 	rm -f config-all-devices.mak config-all-disas.mak
+	rm -f po/*.mo
 	rm -f roms/seabios/config.mak roms/vgabios/config.mak
 	rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.dvi
 	rm -f qemu-doc.fn qemu-doc.fns qemu-doc.info qemu-doc.ky qemu-doc.kys
-- 
1.7.10.4

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

* [Qemu-devel] [PULL 14/17] tcg-sparc: Fix parenthesis warning
  2013-09-20 16:57 [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20 Michael Tokarev
                   ` (12 preceding siblings ...)
  2013-09-20 16:58 ` [Qemu-devel] [PULL 13/17] Makefile: Remove some more files when cleaning Michael Tokarev
@ 2013-09-20 16:58 ` Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 15/17] kvm: Fix compiler warning (clang) Michael Tokarev
                   ` (2 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Michael Tokarev @ 2013-09-20 16:58 UTC (permalink / raw)
  To: aliguori; +Cc: qemu-trivial, Michael Tokarev, qemu-devel, Richard Henderson

From: Richard Henderson <rth@twiddle.net>

error: suggest parentheses around comparison in operand of ‘&’ [-Werror=parentheses]

Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 tcg/sparc/tcg-target.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tcg/sparc/tcg-target.h b/tcg/sparc/tcg-target.h
index 2edf858..1ff2922 100644
--- a/tcg/sparc/tcg-target.h
+++ b/tcg/sparc/tcg-target.h
@@ -153,7 +153,7 @@ typedef enum {
 static inline void flush_icache_range(uintptr_t start, uintptr_t stop)
 {
     uintptr_t p;
-    for (p = start & -8; p < (stop + 7) & -8; p += 8) {
+    for (p = start & -8; p < ((stop + 7) & -8); p += 8) {
         __asm__ __volatile__("flush\t%0" : : "r" (p));
     }
 }
-- 
1.7.10.4

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

* [Qemu-devel] [PULL 15/17] kvm: Fix compiler warning (clang)
  2013-09-20 16:57 [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20 Michael Tokarev
                   ` (13 preceding siblings ...)
  2013-09-20 16:58 ` [Qemu-devel] [PULL 14/17] tcg-sparc: Fix parenthesis warning Michael Tokarev
@ 2013-09-20 16:58 ` Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 16/17] exec: Fix broken build for MinGW (regression) Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 17/17] tests/.gitignore: ignore test-throttle Michael Tokarev
  16 siblings, 0 replies; 18+ messages in thread
From: Michael Tokarev @ 2013-09-20 16:58 UTC (permalink / raw)
  To: aliguori; +Cc: qemu-trivial, Stefan Weil, Michael Tokarev, qemu-devel

From: Stefan Weil <sw@weilnetz.de>

Report from clang analyzer:

clock.c:42:15: warning:
Value stored to 'cpu' during its initialization is never read

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 hw/i386/kvm/clock.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/i386/kvm/clock.c b/hw/i386/kvm/clock.c
index 92aabb8..383938d 100644
--- a/hw/i386/kvm/clock.c
+++ b/hw/i386/kvm/clock.c
@@ -39,7 +39,7 @@ static void kvmclock_vm_state_change(void *opaque, int running,
                                      RunState state)
 {
     KVMClockState *s = opaque;
-    CPUState *cpu = first_cpu;
+    CPUState *cpu;
     int cap_clock_ctrl = kvm_check_extension(kvm_state, KVM_CAP_KVMCLOCK_CTRL);
     int ret;
 
-- 
1.7.10.4

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

* [Qemu-devel] [PULL 16/17] exec: Fix broken build for MinGW (regression)
  2013-09-20 16:57 [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20 Michael Tokarev
                   ` (14 preceding siblings ...)
  2013-09-20 16:58 ` [Qemu-devel] [PULL 15/17] kvm: Fix compiler warning (clang) Michael Tokarev
@ 2013-09-20 16:58 ` Michael Tokarev
  2013-09-20 16:58 ` [Qemu-devel] [PULL 17/17] tests/.gitignore: ignore test-throttle Michael Tokarev
  16 siblings, 0 replies; 18+ messages in thread
From: Michael Tokarev @ 2013-09-20 16:58 UTC (permalink / raw)
  To: aliguori; +Cc: qemu-trivial, Stefan Weil, Michael Tokarev, qemu-devel

From: Stefan Weil <sw@weilnetz.de>

Commit 3435f39513a104294b5e3bbf3612047028d25cfc reduced the ifdeffery with
this result for MinGW:

exec.c: In function ‘qemu_ram_free’:
exec.c:1239:17: warning:
 implicit declaration of function ‘munmap’ [-Wimplicit-function-declaration]
exec.c:1239:17: warning:
 nested extern declaration of ‘munmap’ [-Wnested-externs]
exec.c:1239: undefined reference to `munmap'

Add some ifdeffery again to fix this.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 exec.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/exec.c b/exec.c
index 2646912..efeca14 100644
--- a/exec.c
+++ b/exec.c
@@ -1229,9 +1229,11 @@ void qemu_ram_free(ram_addr_t addr)
                 ;
             } else if (xen_enabled()) {
                 xen_invalidate_map_cache_entry(block->host);
+#ifndef _WIN32
             } else if (block->fd >= 0) {
                 munmap(block->host, block->length);
                 close(block->fd);
+#endif
             } else {
                 qemu_anon_ram_free(block->host, block->length);
             }
-- 
1.7.10.4

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

* [Qemu-devel] [PULL 17/17] tests/.gitignore: ignore test-throttle
  2013-09-20 16:57 [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20 Michael Tokarev
                   ` (15 preceding siblings ...)
  2013-09-20 16:58 ` [Qemu-devel] [PULL 16/17] exec: Fix broken build for MinGW (regression) Michael Tokarev
@ 2013-09-20 16:58 ` Michael Tokarev
  16 siblings, 0 replies; 18+ messages in thread
From: Michael Tokarev @ 2013-09-20 16:58 UTC (permalink / raw)
  To: aliguori; +Cc: qemu-trivial, Michael Tokarev, Fam Zheng, qemu-devel

From: Fam Zheng <famz@redhat.com>

Signed-off-by: Fam Zheng <famz@redhat.com>
Reviewed-by: Benoit Canet <benoit@irqsave.net>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 tests/.gitignore |    1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/.gitignore b/tests/.gitignore
index d11cc22..ae5280e 100644
--- a/tests/.gitignore
+++ b/tests/.gitignore
@@ -5,6 +5,7 @@ check-qjson
 check-qlist
 check-qstring
 test-aio
+test-throttle
 test-cutils
 test-hbitmap
 test-iov
-- 
1.7.10.4

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

end of thread, other threads:[~2013-09-20 17:38 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-09-20 16:57 [Qemu-devel] [PULL 00/17] Trivial patches for 2013-09-20 Michael Tokarev
2013-09-20 16:58 ` [Qemu-devel] [PULL 01/17] configure: Undefine _FORTIFY_SOURCE prior using it Michael Tokarev
2013-09-20 16:58 ` [Qemu-devel] [PULL 02/17] q35: Fix typo in constant DEFUALT -> DEFAULT Michael Tokarev
2013-09-20 16:58 ` [Qemu-devel] [PULL 03/17] docs: Fix IO port number for CPU present bitmap Michael Tokarev
2013-09-20 16:58 ` [Qemu-devel] [PULL 04/17] *-user: Fix typo in comment (ulocking -> unlocking) Michael Tokarev
2013-09-20 16:58 ` [Qemu-devel] [PULL 05/17] translate-all: Fix formatting of dump output Michael Tokarev
2013-09-20 16:58 ` [Qemu-devel] [PULL 06/17] MAINTAINERS: Add missing entry to filelist for TCI target Michael Tokarev
2013-09-20 16:58 ` [Qemu-devel] [PULL 07/17] *-user: Improve documentation for lock_user function Michael Tokarev
2013-09-20 16:58 ` [Qemu-devel] [PULL 08/17] tci: Fix qemu-alpha on 32 bit hosts (wrong assertions) Michael Tokarev
2013-09-20 16:58 ` [Qemu-devel] [PULL 09/17] trace-events: Clean up with scripts/cleanup-trace-events.pl again Michael Tokarev
2013-09-20 16:58 ` [Qemu-devel] [PULL 10/17] vscclient: remove unnecessary use of uninitialized variable Michael Tokarev
2013-09-20 16:58 ` [Qemu-devel] [PULL 11/17] iov: avoid "orig_len may be used unitialized" warning Michael Tokarev
2013-09-20 16:58 ` [Qemu-devel] [PULL 12/17] target-i386: Fix segment cache dump Michael Tokarev
2013-09-20 16:58 ` [Qemu-devel] [PULL 13/17] Makefile: Remove some more files when cleaning Michael Tokarev
2013-09-20 16:58 ` [Qemu-devel] [PULL 14/17] tcg-sparc: Fix parenthesis warning Michael Tokarev
2013-09-20 16:58 ` [Qemu-devel] [PULL 15/17] kvm: Fix compiler warning (clang) Michael Tokarev
2013-09-20 16:58 ` [Qemu-devel] [PULL 16/17] exec: Fix broken build for MinGW (regression) Michael Tokarev
2013-09-20 16:58 ` [Qemu-devel] [PULL 17/17] tests/.gitignore: ignore test-throttle Michael Tokarev

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.