PSW_I 15 include/asm-parisc/psw.h #define PSW_SM_I PSW_I /* Enable External Interrupts */ PSW_I 60 include/asm-parisc/psw.h #define USER_PSW (PSW_C | PSW_Q | PSW_P | PSW_D | PSW_I) PSW_I 53 include/asm-parisc/system.h #define local_irq_disable() __asm__ __volatile__("rsm %0,%%r0\n" : : "i" (PSW_I) : "memory" ) PSW_I 54 include/asm-parisc/system.h #define local_irq_enable() __asm__ __volatile__("ssm %0,%%r0\n" : : "i" (PSW_I) : "memory" ) PSW_I 57 include/asm-parisc/system.h __asm__ __volatile__("rsm %1,%0" : "=r" (x) :"i" (PSW_I) : "memory" ) PSW_I 65 include/asm-parisc/system.h (flags & PSW_I) == 0; \