From: Kenn H. <ke...@us...> - 2001-03-07 02:01:46
|
Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/kernel In directory usw-pr-cvs1:/tmp/cvs-serv16752/kernel Modified Files: process.c Log Message: Disable task switch message Index: process.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/kernel/process.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- process.c 2001/02/27 22:36:52 1.6 +++ process.c 2001/03/07 02:03:25 1.7 @@ -46,8 +46,10 @@ unsigned long pcbb; /* physical address of new pcb */ struct task_struct *retval; +#if 0 printk("vax_switch_to: switching %08lx -> %08lx\n", (unsigned long)prev, (unsigned long)next); +#endif /* We should check that __pa((prev)->thread.pcb) == PR_PCBB */ |