From: Jan-Benedict G. <jb...@us...> - 2005-04-25 22:25:32
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30232/include/asm-vax Modified Files: cacheflush.h uaccess.h Log Message: - Removal of $Id$ - Touchup for ptrace.c -- there's probably another round needed, tough... Index: uaccess.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/uaccess.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- uaccess.h 18 Nov 2004 09:30:31 -0000 1.7 +++ uaccess.h 25 Apr 2005 22:25:07 -0000 1.8 @@ -35,7 +35,7 @@ #define __access_ok(addr,size) (__kernel_ok || __user_ok((addr),(size))) #define access_ok(type,addr,size) __access_ok((unsigned long)(addr),(size)) -extern inline int verify_area(int type, const void * addr, unsigned long size) +extern inline int __deprecated verify_area(int type, const void * addr, unsigned long size) { return access_ok(type,addr,size) ? 0 : -EFAULT; } Index: cacheflush.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/cacheflush.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- cacheflush.h 25 Apr 2005 12:53:31 -0000 1.6 +++ cacheflush.h 25 Apr 2005 22:25:07 -0000 1.7 @@ -34,7 +34,7 @@ * an interrupt, and then REI. */ __asm__ ( - " movpsl -(%%sp) \n" + " movpsl -(%sp) \n" " pushab 1f \n" " rei \n" "1: \n"); |