1. 22 6月, 2009 1 次提交
    • G
      Handle init/sipi in a main cpu exec loop. (v2) · b09ea7d5
      Gleb Natapov 提交于
      This should fix compilation problem in case of CONFIG_USER_ONLY.
      
      Currently INIT/SIPI is handled in the context of CPU that sends IPI.
      This patch changes this to handle them like all other events in a main
      cpu exec loop. When KVM will gain thread per vcpu capability it will
      be much more clear to handle those event by cpu thread itself and not
      modify one cpu's state from the context of the other.
      Signed-off-by: NGleb Natapov <gleb@redhat.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      b09ea7d5
  2. 17 6月, 2009 1 次提交
  3. 16 6月, 2009 1 次提交
  4. 22 5月, 2009 1 次提交
  5. 19 5月, 2009 1 次提交
    • P
      Hardware convenience library · 1ad2134f
      Paul Brook 提交于
      The only target dependency for most hardware is sizeof(target_phys_addr_t).
      Build these files into a convenience library, and use that instead of
      building for every target.
      
      Remove and poison various target specific macros to avoid bogus target
      dependencies creeping back in.
      
      Big/Little endian is not handled because devices should not know or care
      about this to start with.
      Signed-off-by: NPaul Brook <paul@codesourcery.com>
      1ad2134f
  6. 01 5月, 2009 1 次提交
  7. 25 4月, 2009 1 次提交
  8. 19 4月, 2009 1 次提交
  9. 12 4月, 2009 1 次提交
  10. 11 4月, 2009 1 次提交
  11. 10 4月, 2009 1 次提交
  12. 08 3月, 2009 1 次提交
  13. 11 2月, 2009 1 次提交
  14. 02 2月, 2009 1 次提交
  15. 27 1月, 2009 1 次提交
  16. 25 1月, 2009 1 次提交
  17. 23 1月, 2009 2 次提交
  18. 15 1月, 2009 2 次提交
    • B
      Add noreturn function attribute · 7d99a001
      blueswir1 提交于
      Introduce noreturn attribute and attach it to cpu_loop_exit as well as
      interrupt/exception helpers for i386. This avoids a bunch of gcc4
      warnings.
      
      [ Note that this patch comes with a workaround to include qemu-common.h
      even in cases where is currently causes conflicts with dyngen-exec.h.
      I've been told that these conflicts will get resolved in the future
      (/me will try to have a look as well - as time permits). ]
      Signed-off-by: NJan Kiszka <jan.kiszka@siemens.com>
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6303 c046a42c-6fe2-441c-8c8c-71466251a162
      7d99a001
    • M
      Remove all traces of __powerpc__ · e58ffeb3
      malc 提交于
      According to $GCC/gcc/config/rs6000/rs6000-c.c _ARCH_PPC is the
      ubiquitous define which should be used to test whether gcc targets
      PowerPC, on 64bit platforms _ARCH_PPC64 will be also defined.
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6301 c046a42c-6fe2-441c-8c8c-71466251a162
      e58ffeb3
  19. 05 1月, 2009 1 次提交
  20. 11 12月, 2008 1 次提交
  21. 10 12月, 2008 1 次提交
    • A
      KVM: Coalesced MMIO support · f65ed4c1
      aliguori 提交于
      MMIO exits are more expensive in KVM or Xen than in QEMU because they 
      involve, at least, privilege transitions.  However, MMIO write 
      operations can be effectively batched if those writes do not have side 
      effects.
      
      Good examples of this include VGA pixel operations when in a planar 
      mode.  As it turns out, we can get a nice boost in other areas too.  
      Laurent mentioned a 9.7% performance boost in iperf with the coalesced 
      MMIO changes for the e1000 when he originally posted this work for KVM.
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5961 c046a42c-6fe2-441c-8c8c-71466251a162
      f65ed4c1
  22. 09 12月, 2008 2 次提交
  23. 08 12月, 2008 1 次提交
  24. 02 12月, 2008 1 次提交
  25. 25 11月, 2008 1 次提交
  26. 19 11月, 2008 4 次提交
  27. 06 10月, 2008 1 次提交
  28. 03 10月, 2008 1 次提交
  29. 14 9月, 2008 1 次提交
  30. 04 7月, 2008 1 次提交
  31. 29 6月, 2008 1 次提交
  32. 09 6月, 2008 1 次提交
    • P
      Clean up MMIO TLB handling. · 0f459d16
      pbrook 提交于
      The IO index is now stored in its own field, instead of being wedged
      into the vaddr field.  This eliminates the ROMD and watchpoint host
      pointer weirdness.  The IO index space is expanded by 1 bit, and
      several additional bits are made available in the TLB vaddr field.
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4704 c046a42c-6fe2-441c-8c8c-71466251a162
      0f459d16
  33. 28 5月, 2008 1 次提交
  34. 25 5月, 2008 1 次提交