From: Kenn H. <ke...@us...> - 2003-06-26 23:27:46
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv13801/arch/vax/kernel Modified Files: entry.S ptrace.c Log Message: sys_security goes away in 2.5.50 Index: entry.S =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/entry.S,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- entry.S 26 Jun 2003 22:14:28 -0000 1.10 +++ entry.S 26 Jun 2003 23:27:41 -0000 1.11 @@ -476,7 +476,6 @@ .long sys_getdents64 /* 220 */ .long sys_fcntl64 .long sys_tkill - .long sys_security /* * NOTE!! This doesn't have to be exact - we just have Index: ptrace.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/ptrace.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- ptrace.c 3 Mar 2003 00:54:12 -0000 1.9 +++ ptrace.c 26 Jun 2003 23:27:41 -0000 1.10 @@ -165,7 +165,7 @@ if (current->ptrace & PT_PTRACED) { res = -EPERM; goto out; - res = security_ops->ptrace(current->parent, current); + res = security_ptrace(current->parent, current); if (res) goto out; } |