mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 20:42:39 +00:00 
			
		
		
		
	 4e25b2576e
			
		
	
	
		4e25b2576e
		
	
	
	
	
		
			
			Move definition of NUMA_NO_NODE from ia64 and x86_64 arch specific headers to generic header 'linux/numa.h' for use in generic code. NUMA_NO_NODE replaces bare '-1' where it's used in this series to indicate "no node id specified". Ultimately, it can be used to replace the -1 elsewhere where it is used similarly. Signed-off-by: Lee Schermerhorn <lee.schermerhorn@hp.com> Acked-by: David Rientjes <rientjes@google.com> Acked-by: Mel Gorman <mel@csn.ul.ie> Reviewed-by: Andi Kleen <andi@firstfloor.org> Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> Cc: Randy Dunlap <randy.dunlap@oracle.com> Cc: Nishanth Aravamudan <nacc@us.ibm.com> Cc: Adam Litke <agl@us.ibm.com> Cc: Andy Whitcroft <apw@canonical.com> Cc: Eric Whitney <eric.whitney@hp.com> Cc: Christoph Lameter <cl@linux-foundation.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
		
			
				
	
	
		
			16 lines
		
	
	
		
			253 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			253 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef _LINUX_NUMA_H
 | |
| #define _LINUX_NUMA_H
 | |
| 
 | |
| 
 | |
| #ifdef CONFIG_NODES_SHIFT
 | |
| #define NODES_SHIFT     CONFIG_NODES_SHIFT
 | |
| #else
 | |
| #define NODES_SHIFT     0
 | |
| #endif
 | |
| 
 | |
| #define MAX_NUMNODES    (1 << NODES_SHIFT)
 | |
| 
 | |
| #define	NUMA_NO_NODE	(-1)
 | |
| 
 | |
| #endif /* _LINUX_NUMA_H */
 |