1. 18 9月, 2017 1 次提交
  2. 19 5月, 2017 1 次提交
  3. 04 5月, 2017 1 次提交
  4. 26 10月, 2016 1 次提交
  5. 05 7月, 2016 2 次提交
  6. 20 6月, 2016 1 次提交
    • E
      coccinelle: Remove unnecessary variables for function return value · 9be38598
      Eduardo Habkost 提交于
      Use Coccinelle script to replace 'ret = E; return ret' with
      'return E'. The script will do the substitution only when the
      function return type and variable type are the same.
      
      Manual fixups:
      
      * audio/audio.c: coding style of "read (...)" and "write (...)"
      * block/qcow2-cluster.c: wrap line to make it shorter
      * block/qcow2-refcount.c: change indentation of wrapped line
      * target-tricore/op_helper.c: fix coding style of
        "remainder|quotient"
      * target-mips/dsp_helper.c: reverted changes because I don't
        want to argue about checkpatch.pl
      * ui/qemu-pixman.c: fix line indentation
      * block/rbd.c: restore blank line between declarations and
        statements
      Reviewed-by: NEric Blake <eblake@redhat.com>
      Signed-off-by: NEduardo Habkost <ehabkost@redhat.com>
      Message-Id: <1465855078-19435-4-git-send-email-ehabkost@redhat.com>
      Reviewed-by: NMarkus Armbruster <armbru@redhat.com>
      [Unused Coccinelle rule name dropped along with a redundant comment;
      whitespace touched up in block/qcow2-cluster.c; stale commit message
      paragraph deleted]
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      9be38598
  7. 03 6月, 2016 2 次提交
  8. 02 2月, 2016 1 次提交
  9. 26 2月, 2015 1 次提交
  10. 18 8月, 2014 1 次提交
  11. 14 8月, 2014 1 次提交
  12. 16 6月, 2014 1 次提交
  13. 20 5月, 2014 2 次提交
  14. 23 12月, 2013 1 次提交
  15. 09 12月, 2013 1 次提交
  16. 14 10月, 2013 1 次提交
  17. 31 8月, 2013 2 次提交
  18. 23 8月, 2013 1 次提交
  19. 29 7月, 2013 1 次提交
  20. 04 7月, 2013 2 次提交
  21. 14 6月, 2013 2 次提交
  22. 30 4月, 2013 1 次提交
  23. 09 4月, 2013 3 次提交
  24. 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
  25. 11 1月, 2013 2 次提交
  26. 19 12月, 2012 2 次提交
  27. 17 12月, 2012 1 次提交
  28. 23 10月, 2012 1 次提交
    • A
      Rename target_phys_addr_t to hwaddr · a8170e5e
      Avi Kivity 提交于
      target_phys_addr_t is unwieldly, violates the C standard (_t suffixes are
      reserved) and its purpose doesn't match the name (most target_phys_addr_t
      addresses are not target specific).  Replace it with a finger-friendly,
      standards conformant hwaddr.
      
      Outstanding patchsets can be fixed up with the command
      
        git rebase -i --exec 'find -name "*.[ch]"
                              | xargs s/target_phys_addr_t/hwaddr/g' origin
      Signed-off-by: NAvi Kivity <avi@redhat.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      a8170e5e
  29. 05 10月, 2012 1 次提交
  30. 04 7月, 2012 1 次提交