home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / include / linux / numa.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-08-11  |  226 b   |  14 lines

  1. #ifndef _LINUX_NUMA_H
  2. #define _LINUX_NUMA_H
  3.  
  4.  
  5. #ifdef CONFIG_NODES_SHIFT
  6. #define NODES_SHIFT     CONFIG_NODES_SHIFT
  7. #else
  8. #define NODES_SHIFT     0
  9. #endif
  10.  
  11. #define MAX_NUMNODES    (1 << NODES_SHIFT)
  12.  
  13. #endif /* _LINUX_NUMA_H */
  14.