1. 16 4月, 2013 1 次提交
  2. 12 3月, 2013 3 次提交
  3. 03 3月, 2013 2 次提交
  4. 24 2月, 2013 1 次提交
  5. 23 2月, 2013 1 次提交
  6. 16 2月, 2013 4 次提交
  7. 04 2月, 2013 1 次提交
  8. 24 1月, 2013 1 次提交
  9. 21 1月, 2013 1 次提交
  10. 15 1月, 2013 1 次提交
    • A
      cpu: Move cpu_index field to CPUState · 55e5c285
      Andreas Färber 提交于
      Note that target-alpha accesses this field from TCG, now using a
      negative offset. Therefore the field is placed last in CPUState.
      
      Pass PowerPCCPU to [kvm]ppc_fixup_cpu() to facilitate this change.
      
      Move common parts of mips cpu_state_reset() to mips_cpu_reset().
      
      Acked-by: Richard Henderson <rth@twiddle.net> (for alpha)
      [AF: Rebased onto ppc CPU subclasses and openpic changes]
      Signed-off-by: NAndreas Färber <afaerber@suse.de>
      55e5c285
  11. 19 12月, 2012 5 次提交
  12. 16 12月, 2012 1 次提交
  13. 08 12月, 2012 3 次提交
  14. 17 11月, 2012 3 次提交
  15. 10 11月, 2012 1 次提交
  16. 31 10月, 2012 1 次提交
  17. 28 10月, 2012 1 次提交
  18. 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
  19. 28 9月, 2012 1 次提交
  20. 16 9月, 2012 2 次提交
  21. 08 9月, 2012 1 次提交
    • S
      target-cris: Fix buffer overflow · c001ed15
      Stefan Weil 提交于
      Report from smatch:
      
      target-cris/translate.c:3464 cpu_dump_state(32) error:
       buffer overflow 'env->sregs' 4 <= 255
      
      sregs is declared 'uint32_t sregs[4][16]', so the first index must be
      less than 4 or ARRAY_SIZE(env->sregs).
      Signed-off-by: NStefan Weil <sw@weilnetz.de>
      c001ed15
  22. 15 6月, 2012 1 次提交
  23. 14 6月, 2012 1 次提交
  24. 07 6月, 2012 2 次提交