1. 11 6月, 2015 2 次提交
  2. 01 6月, 2015 1 次提交
  3. 28 4月, 2015 1 次提交
  4. 10 3月, 2015 1 次提交
  5. 26 2月, 2015 1 次提交
  6. 22 9月, 2014 1 次提交
  7. 19 9月, 2014 1 次提交
  8. 04 9月, 2014 1 次提交
  9. 03 9月, 2014 2 次提交
  10. 02 9月, 2014 2 次提交
  11. 30 6月, 2014 1 次提交
  12. 19 6月, 2014 8 次提交
  13. 25 2月, 2014 2 次提交
  14. 26 1月, 2014 1 次提交
  15. 25 4月, 2013 1 次提交
  16. 09 4月, 2013 2 次提交
  17. 01 3月, 2013 1 次提交
    • P
      hw: include hw header files with full paths · 83c9f4ca
      Paolo Bonzini 提交于
      Done with this script:
      
      cd hw
      for i in `find . -name '*.h' | sed 's/^..//'`; do
        echo '\,^#.*include.*["<]'$i'[">], s,'$i',hw/&,'
      done | sed -i -f - `find . -type f`
      
      This is so that paths remain valid as files are moved.
      
      Instead, files in hw/dataplane are referenced with the relative path.
      We know they are not going to move to include/, and they are the only
      include files that are in subdirectories _and_ move.
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      83c9f4ca
  18. 11 2月, 2013 1 次提交
  19. 02 2月, 2013 1 次提交
    • J
      vhost: multiqueue support · a9f98bb5
      Jason Wang 提交于
      This patch lets vhost support multiqueue. The idea is simple, just launching
      multiple threads of vhost and let each of vhost thread processing a subset of
      the virtqueues of the device. After this change each emulated device can have
      multiple vhost threads as its backend.
      
      To do this, a virtqueue index were introduced to record to first virtqueue that
      will be handled by this vhost_net device. Based on this and nvqs, vhost could
      calculate its relative index to setup vhost_net device.
      
      Since we may have many vhost/net devices for a virtio-net device. The setting of
      guest notifiers were moved out of the starting/stopping of a specific vhost
      thread. The vhost_net_{start|stop}() were renamed to
      vhost_net_{start|stop}_one(), and a new vhost_net_{start|stop}() were introduced
      to configure the guest notifiers and start/stop all vhost/vhost_net devices.
      Signed-off-by: NJason Wang <jasowang@redhat.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      a9f98bb5
  20. 08 1月, 2013 1 次提交
  21. 19 12月, 2012 2 次提交
  22. 30 10月, 2012 1 次提交
  23. 07 9月, 2012 1 次提交
  24. 01 8月, 2012 2 次提交
  25. 23 7月, 2012 1 次提交
  26. 14 1月, 2012 1 次提交