patch-2.4.21 linux-2.4.21/include/asm-ppc64/system.h
Next file: linux-2.4.21/include/asm-ppc64/systemcfg.h
Previous file: linux-2.4.21/include/asm-ppc64/syscall.h
Back to the patch index
Back to the overall index
- Lines: 24
- Date:
2003-06-13 07:51:38.000000000 -0700
- Orig file:
linux-2.4.20/include/asm-ppc64/system.h
- Orig date:
2002-11-28 15:53:15.000000000 -0800
diff -urN linux-2.4.20/include/asm-ppc64/system.h linux-2.4.21/include/asm-ppc64/system.h
@@ -90,6 +90,7 @@
#define save_flags(flags) __save_flags(flags)
#define restore_flags(flags) __restore_flags(flags)
#define save_and_cli(flags) __save_and_cli(flags)
+#define save_and_sti(flags) __save_and_sti(flags)
#else /* CONFIG_SMP */
@@ -102,11 +103,15 @@
#define save_flags(x) ((x)=__global_save_flags())
#define restore_flags(x) __global_restore_flags(x)
+#define save_and_cli(x) do { save_flags(x); cli(); } while(0);
+#define save_and_sti(x) do { save_flags(x); sti(); } while(0);
+
#endif /* !CONFIG_SMP */
#define local_irq_disable() __cli()
#define local_irq_enable() __sti()
#define local_irq_save(flags) __save_and_cli(flags)
+#define local_irq_set(flags) __save_and_sti(flags)
#define local_irq_restore(flags) __restore_flags(flags)
static __inline__ int __is_processor(unsigned long pv)
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)