In the Linux kernel traditionally pfns are represented by an unsigned long. However a few bits of the SGI IP27 platform code that were ported from IRIX are using pfn_t for historic reasons. This is conflicting with KVM's use of pfn_t. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			546 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			546 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef __ASM_SN_SN_PRIVATE_H
 | 
						|
#define __ASM_SN_SN_PRIVATE_H
 | 
						|
 | 
						|
#include <asm/sn/types.h>
 | 
						|
 | 
						|
extern nasid_t master_nasid;
 | 
						|
 | 
						|
extern void cpu_node_probe(void);
 | 
						|
extern cnodeid_t get_compact_nodeid(void);
 | 
						|
extern void hub_rtc_init(cnodeid_t);
 | 
						|
extern void cpu_time_init(void);
 | 
						|
extern void per_cpu_init(void);
 | 
						|
extern void install_cpu_nmi_handler(int slice);
 | 
						|
extern void install_ipi(void);
 | 
						|
extern void setup_replication_mask(void);
 | 
						|
extern void replicate_kernel_text(void);
 | 
						|
extern unsigned long node_getfirstfree(cnodeid_t);
 | 
						|
 | 
						|
#endif /* __ASM_SN_SN_PRIVATE_H */
 |