Module Name: src
Committed By: martin
Date: Wed Mar 31 13:51:05 UTC 2021
Modified Files:
src/sys/arch/sparc/sparc [netbsd-9]: trap.c
Log Message:
Pull up following revision(s) (requested by christos in ticket #1240):
sys/arch/sparc/sparc/trap.c: revision 1.199
PR port-sparc/55573: remove kernel message about disabled coprocessor
instructions - it is triggered by userland trying to detect availability
of sparcv9 VIS instructions.
To generate a diff of this commit:
cvs rdiff -u -r1.198 -r1.198.4.1 src/sys/arch/sparc/sparc/trap.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/sparc/sparc/trap.c
diff -u src/sys/arch/sparc/sparc/trap.c:1.198 src/sys/arch/sparc/sparc/trap.c:1.198.4.1
--- src/sys/arch/sparc/sparc/trap.c:1.198 Sat Apr 6 03:06:27 2019
+++ src/sys/arch/sparc/sparc/trap.c Wed Mar 31 13:51:04 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.198 2019/04/06 03:06:27 thorpej Exp $ */
+/* $NetBSD: trap.c,v 1.198.4.1 2021/03/31 13:51:04 martin Exp $ */
/*
* Copyright (c) 1996
@@ -49,7 +49,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.198 2019/04/06 03:06:27 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.198.4.1 2021/03/31 13:51:04 martin Exp $");
#include "opt_ddb.h"
#include "opt_compat_sunos.h"
@@ -606,7 +606,6 @@ trap(unsigned type, int psr, int pc, str
break;
case T_CPDISABLED:
- uprintf("coprocessor instruction\n"); /* XXX */
sig = SIGILL;
KSI_INIT_TRAP(&ksi);
ksi.ksi_trap = type;