1. 15 9月, 2016 1 次提交
  2. 13 7月, 2016 1 次提交
  3. 23 3月, 2016 1 次提交
  4. 09 2月, 2016 2 次提交
  5. 04 12月, 2015 1 次提交
  6. 31 10月, 2014 3 次提交
  7. 20 10月, 2014 2 次提交
  8. 15 10月, 2014 1 次提交
  9. 30 9月, 2014 4 次提交
  10. 23 9月, 2014 1 次提交
    • F
      scsi: Optimize scsi_req_alloc · 61e68b3f
      Fam Zheng 提交于
      Zeroing sense buffer for each scsi request is not efficient, we can just
      leave it uninitialized because sense_len is set to 0.
      
      Move the implicitly zeroed fields to the end of the structure and use a
      partial memset.
      
      The explicitly initialized fields (by scsi_req_alloc or scsi_req_new)
      are moved to the beginning of the structure, before sense buffer, to
      skip the memset.
      
      Also change g_malloc0 to g_slice_alloc.
      Signed-off-by: NFam Zheng <famz@redhat.com>
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      61e68b3f
  11. 26 8月, 2014 1 次提交
  12. 29 7月, 2014 2 次提交
  13. 14 3月, 2014 1 次提交
  14. 22 2月, 2014 2 次提交
  15. 26 11月, 2013 1 次提交
  16. 09 10月, 2013 1 次提交
  17. 31 8月, 2013 1 次提交
  18. 23 7月, 2013 1 次提交
  19. 04 5月, 2013 1 次提交
  20. 09 4月, 2013 1 次提交
    • P
      hw: move headers to include/ · 0d09e41a
      Paolo Bonzini 提交于
      Many of these should be cleaned up with proper qdev-/QOM-ification.
      Right now there are many catch-all headers in include/hw/ARCH depending
      on cpu.h, and this makes it necessary to compile these files per-target.
      However, fixing this does not belong in these patches.
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      0d09e41a
  21. 06 4月, 2013 1 次提交
  22. 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
  23. 19 12月, 2012 2 次提交
  24. 21 9月, 2012 1 次提交
  25. 27 7月, 2012 4 次提交
  26. 26 7月, 2012 2 次提交