1. 13 9月, 2016 14 次提交
  2. 12 9月, 2016 7 次提交
  3. 10 9月, 2016 14 次提交
  4. 09 9月, 2016 2 次提交
    • P
      Merge remote-tracking branch 'remotes/famz/tags/docker-pull-request' into staging · c2a57aae
      Peter Maydell 提交于
      # gpg: Signature made Fri 09 Sep 2016 05:54:35 BST
      # gpg:                using RSA key 0xCA35624C6A9171C6
      # gpg: Good signature from "Fam Zheng <famz@redhat.com>"
      # gpg: WARNING: This key is not certified with a trusted signature!
      # gpg:          There is no indication that the signature belongs to the owner.
      # Primary key fingerprint: 5003 7CB7 9706 0F76 F021  AD56 CA35 624C 6A91 71C6
      
      * remotes/famz/tags/docker-pull-request:
        docker: silence debootstrap when --quiet is given
        docker: build debootstrap after cloning
        docker: make sure debootstrap is at least 1.0.67
        docker: print warning if EXECUTABLE is not set when building debootstrap image
        docker: debian-bootstrap.pre: print helpful message if DEB_ARCH/DEB_TYPE unset
        docker: debian-bootstrap.pre: print error messages to stderr
        docker: avoid dependency on 'realpath' package
        docker.py: don't hang on large docker output
        docker: Add a glib2-2.22 image
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      c2a57aae
    • P
      qtest.c: Allow zero size in memset qtest commands · 5f31bbf1
      Peter Maydell 提交于
      Some tests use the qtest protocol "memset" command with a zero
      size, expecting it to do nothing. However in the current code this
      will result in calling memset() with a NULL pointer, which is
      undefined behaviour. Detect and specially handle zero sizes to
      avoid this.
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      Reviewed-by: NEric Blake <eblake@redhat.com>
      Message-id: 1470393800-7882-1-git-send-email-peter.maydell@linaro.org
      5f31bbf1
  5. 08 9月, 2016 3 次提交
    • P
      Merge remote-tracking branch 'remotes/elmarco/tags/leak-pull-request' into staging · 33e60e01
      Peter Maydell 提交于
      Pull request
      
      v2:
      - dropped "tests: fix small leak in test-io-channel-command" that Daniel Berrange will pick
      - fixed "tests: add qtest_add_data_func_full" to work with glib < 2.26
      
      # gpg: Signature made Thu 08 Sep 2016 15:16:54 BST
      # gpg:                using RSA key 0xDAE8E10975969CE5
      # gpg: Good signature from "Marc-André Lureau <marcandre.lureau@redhat.com>"
      # gpg:                 aka "Marc-André Lureau <marcandre.lureau@gmail.com>"
      # gpg: WARNING: This key is not certified with sufficiently trusted signatures!
      # gpg:          It is not certain that the signature belongs to the owner.
      # Primary key fingerprint: 87A9 BD93 3F87 C606 D276  F62D DAE8 E109 7596 9CE5
      
      * remotes/elmarco/tags/leak-pull-request: (25 commits)
        tests: fix postcopy-test leaks
        tests: fix rsp leak in postcopy-test
        tests: pc-cpu-test leaks fixes
        tests: add qtest_add_data_func_full
        bus: simplify name handling
        ipmi: free extern timer
        sd: free timer
        pc: keep gsi reference
        pc: free i8259
        tests: fix qom-test leaks
        acpi-build: fix array leak
        machine: use class base init generated name
        pc: don't leak a20_line
        pc: simplify passing qemu_irq
        portio: keep references on portio
        tests: fix leak in test-string-input-visitor
        tests: fix check-qom-proplist leaks
        tests: fix check-qom-interface leaks
        tests: fix test-iov leaks
        tests: fix test-vmstate leaks
        ...
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      33e60e01
    • M
      tests: fix postcopy-test leaks · e2dd21e5
      Marc-André Lureau 提交于
      A few strings are allocated and never freed.
      Signed-off-by: NMarc-André Lureau <marcandre.lureau@redhat.com>
      Reviewed-by: NEric Blake <eblake@redhat.com>
      e2dd21e5
    • M
      tests: fix rsp leak in postcopy-test · 5b1ded22
      Marc-André Lureau 提交于
      In all cases, even when the dict doesn't contain 'ram', the qmp response
      must be unref.
      Signed-off-by: NMarc-André Lureau <marcandre.lureau@redhat.com>
      Reviewed-by: NEric Blake <eblake@redhat.com>
      5b1ded22