1. 20 7月, 2015 2 次提交
  2. 13 7月, 2015 1 次提交
  3. 19 6月, 2015 1 次提交
  4. 11 6月, 2015 4 次提交
  5. 04 6月, 2015 1 次提交
  6. 01 6月, 2015 1 次提交
  7. 31 5月, 2015 2 次提交
  8. 11 5月, 2015 1 次提交
  9. 30 4月, 2015 1 次提交
  10. 28 4月, 2015 2 次提交
  11. 25 3月, 2015 1 次提交
  12. 10 3月, 2015 1 次提交
    • R
      fix GCC 5.0.0 logical-not-parentheses warnings · 8c1ac475
      Radim Krčmář 提交于
      man gcc:
        Warn about logical not used on the left hand side operand of a
        comparison.  This option does not warn if the RHS operand is of a
        boolean type.
      
      By preferring bool over int where sensible, but without modifying any
      depending code, make GCC happy in cases like this,
        qemu-img.c: In function ‘compare_sectors’:
        qemu-img.c:992:39: error: logical not is only applied to the left hand
        side of comparison [-Werror=logical-not-parentheses]
                 if (!!memcmp(buf1, buf2, 512) != res) {
      
      hw/ide/core.c:1836 doesn't throw an error,
        assert(!!s->error == !!(s->status & ERR_STAT));
      even thought the second operand is int (and first hunk of this patch has
      a very similar case), maybe GCC developers still have a little faith in
      C programmers.
      Signed-off-by: NRadim Krčmář <rkrcmar@redhat.com>
      Signed-off-by: NMichael Tokarev <mjt@tls.msk.ru>
      8c1ac475
  13. 26 2月, 2015 2 次提交
  14. 12 1月, 2015 1 次提交
    • P
      net: remove all cleanup methods from NIC NetClientInfos · 57407ea4
      Paolo Bonzini 提交于
      All NICs have a cleanup function that, in most cases, zeroes the pointer
      to the NICState.  In some cases, it frees data belonging to the NIC.
      
      However, this function is never called except when exiting from QEMU.
      It is not necessary to NULL pointers and free data here; the right place
      to do that would be in the device's unrealize function, after calling
      qemu_del_nic.  Zeroing the NIC multiple times is also wrong for multiqueue
      devices.
      
      This cleanup function gets in the way of making the NetClientStates for
      the NIC hold an object_ref reference to the object, so get rid of it.
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      Signed-off-by: NStefan Hajnoczi <stefanha@redhat.com>
      57407ea4
  15. 28 11月, 2014 1 次提交
  16. 15 10月, 2014 2 次提交
  17. 19 9月, 2014 1 次提交
  18. 05 9月, 2014 2 次提交
  19. 02 9月, 2014 1 次提交
  20. 30 6月, 2014 4 次提交
  21. 27 6月, 2014 1 次提交
  22. 23 6月, 2014 1 次提交
  23. 19 6月, 2014 4 次提交
  24. 06 5月, 2014 1 次提交
  25. 05 5月, 2014 1 次提交