1. 23 7月, 2011 2 次提交
  2. 24 6月, 2011 1 次提交
  3. 08 6月, 2011 2 次提交
  4. 16 4月, 2011 2 次提交
  5. 21 3月, 2011 1 次提交
    • P
      change all other clock references to use nanosecond resolution accessors · 74475455
      Paolo Bonzini 提交于
      This was done with:
      
          sed -i 's/qemu_get_clock\>/qemu_get_clock_ns/' \
              $(git grep -l 'qemu_get_clock\>' )
          sed -i 's/qemu_new_timer\>/qemu_new_timer_ns/' \
              $(git grep -l 'qemu_new_timer\>' )
      
      after checking that get_clock and new_timer never occur twice
      on the same line.  There were no missed occurrences; however, even
      if there had been, they would have been caught by the compiler.
      
      There was exactly one false positive in qemu_run_timers:
      
           -    current_time = qemu_get_clock (clock);
           +    current_time = qemu_get_clock_ns (clock);
      
      which is of course not in this patch.
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      74475455
  6. 25 2月, 2011 2 次提交
  7. 02 2月, 2011 2 次提交
  8. 22 12月, 2010 1 次提交
  9. 18 12月, 2010 1 次提交
    • B
      Fix warning on mingw32 · 4d22c6c2
      Blue Swirl 提交于
      Avoid this warning like other uses of setsockopt:
      /src/qemu/net/socket.c: In function 'net_socket_mcast_create':
      /src/qemu/net/socket.c:210: warning: passing argument 4 of 'setsockopt' from incompatible pointer type
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      4d22c6c2
  10. 09 12月, 2010 1 次提交
    • M
      net/sock: option to specify local address · 3a75e74c
      Mike Ryan 提交于
      Add an option to specify the host IP to send multicast packets from,
      when using a multicast socket for networking. The option takes an IP
      address and sets the IP_MULTICAST_IF socket option, which causes the
      packets to use that IP's interface as an egress.
      
      This is useful if the host machine has several interfaces with several
      virtual networks across disparate interfaces.
      Signed-off-by: NMike Ryan <mikeryan@ISI.EDU>
      Signed-off-by: NMichael S. Tsirkin <mst@redhat.com>
      3a75e74c
  11. 16 11月, 2010 2 次提交
  12. 14 11月, 2010 1 次提交
  13. 04 11月, 2010 1 次提交
  14. 14 10月, 2010 1 次提交
    • B
      Delete write only variables · 49a2942d
      Blue Swirl 提交于
      Compiling with GCC 4.6.0 20100925 produced warnings like:
      /src/qemu/net/tap-win32.c: In function 'tap_win32_open':
      /src/qemu/net/tap-win32.c:582:12: error: variable 'hThread' set but not used [-Werror=unused-but-set-variable]
      
      Fix by removing the unused variables.
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      49a2942d
  15. 03 10月, 2010 1 次提交
  16. 30 9月, 2010 1 次提交
  17. 08 9月, 2010 2 次提交
  18. 01 8月, 2010 1 次提交
  19. 23 6月, 2010 1 次提交
  20. 26 4月, 2010 1 次提交
  21. 02 4月, 2010 4 次提交
  22. 28 3月, 2010 1 次提交
    • B
      Fix BSD and win32 builds · 73d96e29
      Blue Swirl 提交于
        CC    net/tap-bsd.o
      /src/qemu/net/tap-bsd.c: In function `tap_open':
      /src/qemu/net/tap-bsd.c:93: warning: implicit declaration of function `error_report'
      
        CC    sparc-softmmu/../net/tap-win32.o
      cc1: warnings being treated as errors
      /src/qemu/target-sparc/../net/tap-win32.c: In function 'net_init_tap':
      /src/qemu/target-sparc/../net/tap-win32.c:709: warning: implicit declaration of function 'error_report'
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      73d96e29
  23. 22 3月, 2010 1 次提交
  24. 20 3月, 2010 1 次提交
  25. 16 3月, 2010 2 次提交
  26. 10 3月, 2010 1 次提交
  27. 20 2月, 2010 1 次提交
  28. 28 1月, 2010 1 次提交
  29. 27 1月, 2010 1 次提交