1. 31 10月, 2005 13 次提交
  2. 30 10月, 2005 2 次提交
  3. 29 10月, 2005 3 次提交
  4. 28 10月, 2005 2 次提交
  5. 27 10月, 2005 1 次提交
  6. 22 10月, 2005 1 次提交
  7. 20 10月, 2005 1 次提交
  8. 18 10月, 2005 2 次提交
  9. 10 10月, 2005 1 次提交
  10. 05 10月, 2005 2 次提交
  11. 29 9月, 2005 5 次提交
  12. 28 9月, 2005 1 次提交
  13. 24 9月, 2005 1 次提交
  14. 23 9月, 2005 1 次提交
    • K
      [PATCH] Fix mmap() of /dev/hpet · 609725f8
      Keir Fraser 提交于
      The address passed to io_remap_pfn_range() in hpet_mmap() does not need to
      be converted using __pa(): it is already a physical address.  This bug was
      found and the patch suggested by Clay Harris.
      
      I introduced this particular bug when making io_remap_pfn_range changes a
      few months ago.  In fact mmap()ing /dev/hpet has *never* previously worked:
      before my changes __pa() was being executed on an ioremap()ed virtual
      address, which is also invalid.
      Signed-off-by: NKeir Fraser <keir@xensource.com>
      Cc: Robert Picco <Robert.Picco@hp.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      609725f8
  15. 17 9月, 2005 2 次提交
  16. 16 9月, 2005 2 次提交
    • T
      [IA64] Two more uses of cpuid_to_cnodeid() must go. · 55642d36
      Tony Luck 提交于
      s/cpuid_to_cnodeid/cpu_to_node/
      Signed-off-by: NTony Luck <tony.luck@intel.com>
      55642d36
    • J
      [IA64] Cleanup use of various #defines related to nodes · 24ee0a6d
      Jack Steiner 提交于
      Some of the SN code & #defines related to compact nodes & IO discovery
      have gotten stale over the years. This patch attempts to clean them up.
      Some of the various SN MAX_xxx #defines were also unclear & misused.
      
      The primary changes are:
      
      	- use MAX_NUMNODES. This is the generic linux #define for the number
      	  of nodes that are known to the generic kernel. Arrays & loops
      	  for constructs that are 1:1 with linux-defined nodes should
      	  use the linux #define - not an SN equivalent.
      
      	- use MAX_COMPACT_NODES for MAX_NUMNODES + NUM_TIOS. This is the
      	  number of nodes in the SSI system. Compact nodes are a hack to
      	  get around the IA64 architectural limit of 256 nodes. Large SGI
      	  systems have more than 256 nodes. When we upgrade to ACPI3.0,
      	  I _hope_ that all nodes will be real nodes that are known to
      	  the generic kernel. That will allow us to delete the notion
      	  of "compact nodes".
      
      	- add MAX_NUMALINK_NODES for the total number of nodes that
      	  are in the numalink domain - all partitions.
      
      	- simplified (understandable) scan_for_ionodes()
      
      	- small amount of cleanup related to cnodes
      Signed-off-by: NJack Steiner <steiner@sgi.com>
      Signed-off-by: NTony Luck <tony.luck@intel.com>
      24ee0a6d