1. 10 11月, 2009 4 次提交
  2. 08 11月, 2009 2 次提交
  3. 06 11月, 2009 1 次提交
    • C
      x86: Make sure get_user_desc() doesn't sign extend. · 2c75910f
      Chris Lalancette 提交于
      The current implementation of get_user_desc() sign extends the return
      value because of integer promotion rules.  For the most part, this
      doesn't matter, because the top bit of base2 is usually 0.  If, however,
      that bit is 1, then the entire value will be 0xffff...  which is
      probably not what the caller intended.
      
      This patch casts the entire thing to unsigned before returning, which
      generates almost the same assembly as the current code but replaces the
      final "cltq" (sign extend) with a "mov %eax %eax" (zero-extend).  This
      fixes booting certain guests under KVM.
      Signed-off-by: NChris Lalancette <clalance@redhat.com>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      2c75910f
  4. 04 11月, 2009 4 次提交
  5. 03 11月, 2009 1 次提交
  6. 02 11月, 2009 2 次提交
  7. 29 10月, 2009 1 次提交
  8. 28 10月, 2009 1 次提交
  9. 27 10月, 2009 1 次提交
  10. 26 10月, 2009 3 次提交
  11. 23 10月, 2009 1 次提交
  12. 21 10月, 2009 1 次提交
  13. 20 10月, 2009 1 次提交
  14. 16 10月, 2009 6 次提交
  15. 15 10月, 2009 2 次提交
  16. 14 10月, 2009 2 次提交
  17. 13 10月, 2009 3 次提交
  18. 12 10月, 2009 3 次提交
  19. 10 10月, 2009 1 次提交
    • J
      x86/amd-iommu: Workaround for erratum 63 · c5cca146
      Joerg Roedel 提交于
      There is an erratum for IOMMU hardware which documents
      undefined behavior when forwarding SMI requests from
      peripherals and the DTE of that peripheral has a sysmgt
      value of 01b. This problem caused weird IO_PAGE_FAULTS in my
      case.
      This patch implements the suggested workaround for that
      erratum into the AMD IOMMU driver.  The erratum is
      documented with number 63.
      
      Cc: stable@kernel.org
      Signed-off-by: NJoerg Roedel <joerg.roedel@amd.com>
      c5cca146