|  | @@ -0,0 +1,35 @@
 | 
	
		
			
				|  |  | +/*
 | 
	
		
			
				|  |  | + *	linux/arch/alpha/kernel/smp.c
 | 
	
		
			
				|  |  | + *
 | 
	
		
			
				|  |  | + *      2001-07-09 Phil Ezolt (Phillip.Ezolt@compaq.com)
 | 
	
		
			
				|  |  | + *            Renamed modified smp_call_function to smp_call_function_on_cpu()
 | 
	
		
			
				|  |  | + *            Created an function that conforms to the old calling convention
 | 
	
		
			
				|  |  | + *            of smp_call_function().
 | 
	
		
			
				|  |  | + *
 | 
	
		
			
				|  |  | + *            This is helpful for DCPI.
 | 
	
		
			
				|  |  | + *
 | 
	
		
			
				|  |  | + */
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +#include <linux/errno.h>
 | 
	
		
			
				|  |  | +#include <linux/kernel.h>
 | 
	
		
			
				|  |  | +#include <linux/kernel_stat.h>
 | 
	
		
			
				|  |  | +#include <linux/module.h>
 | 
	
		
			
				|  |  | +#include <linux/sched.h>
 | 
	
		
			
				|  |  | +#include <linux/mm.h>
 | 
	
		
			
				|  |  | +#include <linux/err.h>
 | 
	
		
			
				|  |  | +#include <linux/threads.h>
 | 
	
		
			
				|  |  | +#include <linux/smp.h>
 | 
	
		
			
				|  |  | +#include <linux/interrupt.h>
 | 
	
		
			
				|  |  | +#include <linux/init.h>
 | 
	
		
			
				|  |  | +#include <linux/delay.h>
 | 
	
		
			
				|  |  | +#include <linux/spinlock.h>
 | 
	
		
			
				|  |  | +#include <linux/irq.h>
 | 
	
		
			
				|  |  | +#include <linux/cache.h>
 | 
	
		
			
				|  |  | +#include <linux/profile.h>
 | 
	
		
			
				|  |  | +#include <linux/bitops.h>
 | 
	
		
			
				|  |  | +#include <linux/cpu.h>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +#include <asm/hwrpb.h>
 | 
	
		
			
				|  |  | +#include <asm/ptrace.h>
 | 
	
		
			
				|  |  | +#include <linux/atomic.h>
 | 
	
		
			
				|  |  | +
 |