1. 06 8月, 2009 1 次提交
  2. 05 8月, 2009 1 次提交
  3. 03 8月, 2009 8 次提交
  4. 02 8月, 2009 1 次提交
  5. 20 6月, 2009 1 次提交
  6. 19 6月, 2009 4 次提交
  7. 18 6月, 2009 1 次提交
    • M
      [IA64] Convert ia64 to use int-ll64.h · e088a4ad
      Matthew Wilcox 提交于
      It is generally agreed that it would be beneficial for u64 to be an
      unsigned long long on all architectures.  ia64 (in common with several
      other 64-bit architectures) currently uses unsigned long.  Migrating
      piecemeal is too painful; this giant patch fixes all compilation warnings
      and errors that come as a result of switching to use int-ll64.h.
      
      Note that userspace will still see __u64 defined as unsigned long.  This
      is important as it affects C++ name mangling.
      
      [Updated by Tony Luck to change efi.h:efi_freemem_callback_t to use
       u64 for start/end rather than unsigned long]
      Signed-off-by: NMatthew Wilcox <willy@linux.intel.com>
      Signed-off-by: NTony Luck <tony.luck@intel.com>
      e088a4ad
  8. 05 6月, 2009 1 次提交
  9. 20 4月, 2009 1 次提交
  10. 14 4月, 2009 1 次提交
  11. 28 3月, 2009 1 次提交
  12. 13 3月, 2009 1 次提交
  13. 11 3月, 2009 2 次提交
  14. 29 12月, 2008 2 次提交
  15. 01 12月, 2008 1 次提交
  16. 21 10月, 2008 1 次提交
  17. 16 10月, 2008 4 次提交
  18. 11 10月, 2008 1 次提交
  19. 25 8月, 2008 1 次提交
  20. 22 8月, 2008 1 次提交
    • R
      agp: enable optimized agp_alloc_pages methods · 5f310b63
      Rene Herman 提交于
      The pageattr-array patch that you currently have in tip/master only
      enables it for intel-agp, not the others. The attached enables it for
      all drivers currently directly using agp_generic_alloc_page() and
      agp_generic_destroy_page() (ocal driver is amd-k7-agp).
      
      The new agp_generic_alloc_pages() interface uses the also new
      pageattr array interface API. This makes all AGP drivers that
      up to now used generic_{alloc,destroy}_page() use it.
      Signed-off-by: NRene Herman <rene.herman@gmail.com>
      Signed-off-by: NIngo Molnar <mingo@elte.hu>
      5f310b63
  21. 21 8月, 2008 3 次提交
  22. 15 8月, 2008 1 次提交
  23. 12 8月, 2008 1 次提交
    • K
      agp: fix SIS 5591/5592 wrong PCI id · 91397585
      Krzysztof Helt 提交于
      The correct id is the id of the main host (5591) not
      the id of the PCI-to-PCI bridge AGP (0001).
      Output from "lspci -nv" shows that only the former
      has AGP capabilities flag set:
      
      00:00.0 0600: 1039:5591 (rev 02)
              Flags: bus master, medium devsel, latency 64
              Memory at ec000000 (32-bit, non-prefetchable) [size=32M]
              Capabilities: [c0] AGP version 1.0
      
      00:02.0 0604: 1039:0001 (prog-if 00 [Normal decode])
              Flags: bus master, fast devsel, latency 0
              Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
              I/O behind bridge: 0000c000-0000cfff
              Memory behind bridge: eb500000-eb5fffff
              Prefetchable memory behind bridge: eb300000-eb3fffff
      Signed-off-by: NKrzysztof Helt <krzysztof.h1@wp.pl>
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      91397585