[xtensa-cvscommit] linux/arch/xtensa/mm fault.c,1.2,1.3
Brought to you by:
zankel
|
From: <joe...@us...> - 2003-02-13 00:17:24
|
Update of /cvsroot/xtensa/linux/arch/xtensa/mm In directory sc8-pr-cvs1:/tmp/cvs-serv2110/arch/xtensa/mm Modified Files: fault.c Log Message: Replace "program mode / stacked mode" terminology with "user mode / kernel mode" terminology. Mostly comment updates. Macro replacements are synonyms. Index: fault.c =================================================================== RCS file: /cvsroot/xtensa/linux/arch/xtensa/mm/fault.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** fault.c 9 Sep 2002 22:23:54 -0000 1.2 --- fault.c 13 Feb 2003 00:17:21 -0000 1.3 *************** *** 183,188 **** * context, we must not take the fault.. */ - /* if (in_interrupt() || !mm || ??? (regs->ps & XCHAL_PS_PROGSTACK_MASK) == 0 ) */ - /* if (in_interrupt() || !mm || !user_mode(regs)) */ if ( in_interrupt() || !mm ) goto no_context; --- 183,186 ---- |