1. 13 1月, 2014 2 次提交
  2. 23 12月, 2013 2 次提交
  3. 07 10月, 2013 1 次提交
  4. 03 9月, 2013 1 次提交
  5. 10 7月, 2013 1 次提交
  6. 04 7月, 2013 2 次提交
  7. 28 6月, 2013 1 次提交
  8. 20 6月, 2013 1 次提交
    • J
      exec: Resolve subpages in one step except for IOTLB fills · 90260c6c
      Jan Kiszka 提交于
      Except for the case of setting the IOTLB entry in TCG mode, we can avoid
      the subpage dispatching handlers and do the resolution directly on
      address_space_lookup_region. An IOTLB entry describes a full page, not
      only the region that the first access to a sub-divided page may return.
      
      This patch therefore introduces a special translation function,
      address_space_translate_for_iotlb, that avoids the subpage resolutions.
      In contrast, callers of the existing address_space_translate service
      will now always receive the terminal memory region section. This will be
      important for breaking the BQL and for enabling unaligned memory region.
      Signed-off-by: NJan Kiszka <jan.kiszka@siemens.com>
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      90260c6c
  9. 14 6月, 2013 1 次提交
  10. 29 5月, 2013 2 次提交
  11. 16 2月, 2013 1 次提交
  12. 19 12月, 2012 1 次提交
  13. 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
  14. 22 10月, 2012 1 次提交
    • A
      memory: per-AddressSpace dispatch · ac1970fb
      Avi Kivity 提交于
      Currently we use a global radix tree to dispatch memory access.  This only
      works with a single address space; to support multiple address spaces we
      make the radix tree a member of AddressSpace (via an intermediate structure
      AddressSpaceDispatch to avoid exposing too many internals).
      
      A side effect is that address_space_io also gains a dispatch table.  When
      we remove all the pre-memory-API I/O registrations, we can use that for
      dispatching I/O and get rid of the original I/O dispatch.
      Signed-off-by: NAvi Kivity <avi@redhat.com>
      ac1970fb
  15. 15 10月, 2012 1 次提交
  16. 16 9月, 2012 1 次提交
  17. 15 8月, 2012 1 次提交
  18. 12 5月, 2012 1 次提交
  19. 01 5月, 2012 2 次提交