Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax
In directory sc8-pr-cvs1:/tmp/cvs-serv11139/include/asm-vax
Modified Files:
uaccess.h
Log Message:
Fix from Dave in 2.4.
Index: uaccess.h
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/uaccess.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- uaccess.h 29 Oct 2002 00:52:51 -0000 1.4
+++ uaccess.h 16 Feb 2003 23:51:31 -0000 1.5
@@ -155,11 +155,12 @@
"2:\n" \
".section .fixup,\"ax\"\n" \
"3: movl %3,%0\n" \
- " jmp 2b\n" \
+ " jmp 2b\n" \
+ ".previous\n" \
".section __ex_table,\"a\"\n" \
" .align 2\n" \
" .long 1b,3b\n" \
- ".text" \
+ ".previous" \
: "=r"(err) \
: "r"(x), "m"(*addr), "i"(-EFAULT), "0"(err))
|