patch-2.1.97 linux/arch/sparc/prom/mp.c
Next file: linux/arch/sparc/prom/ranges.c
Previous file: linux/arch/sparc/prom/misc.c
Back to the patch index
Back to the overall index
- Lines: 60
- Date:
Tue Apr 14 17:44:20 1998
- Orig file:
v2.1.96/linux/arch/sparc/prom/mp.c
- Orig date:
Thu May 15 16:48:02 1997
diff -u --recursive --new-file v2.1.96/linux/arch/sparc/prom/mp.c linux/arch/sparc/prom/mp.c
@@ -1,4 +1,4 @@
-/* $Id: mp.c,v 1.9 1997/05/14 20:45:01 davem Exp $
+/* $Id: mp.c,v 1.10 1998/03/09 14:04:26 jj Exp $
* mp.c: OpenBoot Prom Multiprocessor support routines. Don't call
* these on a UP or else you will halt and catch fire. ;)
*
@@ -12,8 +12,7 @@
#include <asm/openprom.h>
#include <asm/oplib.h>
-/* XXX Let's get rid of this thing if we can... */
-extern struct task_struct *current_set[NR_CPUS];
+extern void restore_current(void);
/* Start cpu with prom-tree node 'cpunode' using context described
* by 'ctable_reg' in context 'ctx' at program counter 'pc'.
@@ -38,9 +37,7 @@
ret = (*(romvec->v3_cpustart))(cpunode, (int) ctable_reg, ctx, pc);
break;
};
- __asm__ __volatile__("ld [%0], %%g6\n\t" : :
- "r" (¤t_set[hard_smp_processor_id()]) :
- "memory");
+ restore_current();
restore_flags(flags);
return ret;
@@ -67,9 +64,7 @@
ret = (*(romvec->v3_cpustop))(cpunode);
break;
};
- __asm__ __volatile__("ld [%0], %%g6\n\t" : :
- "r" (¤t_set[hard_smp_processor_id()]) :
- "memory");
+ restore_current();
restore_flags(flags);
return ret;
@@ -96,9 +91,7 @@
ret = (*(romvec->v3_cpuidle))(cpunode);
break;
};
- __asm__ __volatile__("ld [%0], %%g6\n\t" : :
- "r" (¤t_set[hard_smp_processor_id()]) :
- "memory");
+ restore_current();
restore_flags(flags);
return ret;
@@ -125,9 +118,7 @@
ret = (*(romvec->v3_cpuresume))(cpunode);
break;
};
- __asm__ __volatile__("ld [%0], %%g6\n\t" : :
- "r" (¤t_set[hard_smp_processor_id()]) :
- "memory");
+ restore_current();
restore_flags(flags);
return ret;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov