Author: nyan
Date: Thu Apr 29 06:22:07 2010
New Revision: 207355
URL: http://svn.freebsd.org/changeset/base/207355

Log:
  MFi386: revision 206553
  
    - Change printf() calls to uprintf() for sigreturn().
    - Normalize the messages to include both pid and thread name.

Modified:
  head/sys/pc98/pc98/machdep.c

Modified: head/sys/pc98/pc98/machdep.c
==============================================================================
--- head/sys/pc98/pc98/machdep.c        Thu Apr 29 06:16:00 2010        
(r207354)
+++ head/sys/pc98/pc98/machdep.c        Thu Apr 29 06:22:07 2010        
(r207355)
@@ -874,7 +874,8 @@ freebsd4_sigreturn(td, uap)
                 * one less debugger trap, so allowing it is fairly harmless.
                 */
                if (!EFL_SECURE(eflags & ~PSL_RF, regs->tf_eflags & ~PSL_RF)) {
-                       printf("freebsd4_sigreturn: eflags = 0x%x\n", eflags);
+                       uprintf("pid %d (%s): freebsd4_sigreturn eflags = 
0x%x\n",
+                           td->td_proc->p_pid, td->td_name, eflags);
                        return (EINVAL);
                }
 
@@ -885,7 +886,8 @@ freebsd4_sigreturn(td, uap)
                 */
                cs = ucp->uc_mcontext.mc_cs;
                if (!CS_SECURE(cs)) {
-                       printf("freebsd4_sigreturn: cs = 0x%x\n", cs);
+                       uprintf("pid %d (%s): freebsd4_sigreturn cs = 0x%x\n",
+                           td->td_proc->p_pid, td->td_name, cs);
                        ksiginfo_init_trap(&ksi);
                        ksi.ksi_signo = SIGBUS;
                        ksi.ksi_code = BUS_OBJERR;
@@ -986,7 +988,8 @@ sigreturn(td, uap)
                 * one less debugger trap, so allowing it is fairly harmless.
                 */
                if (!EFL_SECURE(eflags & ~PSL_RF, regs->tf_eflags & ~PSL_RF)) {
-                       printf("sigreturn: eflags = 0x%x\n", eflags);
+                       uprintf("pid %d (%s): sigreturn eflags = 0x%x\n",
+                           td->td_proc->p_pid, td->td_name, eflags);
                        return (EINVAL);
                }
 
@@ -997,7 +1000,8 @@ sigreturn(td, uap)
                 */
                cs = ucp->uc_mcontext.mc_cs;
                if (!CS_SECURE(cs)) {
-                       printf("sigreturn: cs = 0x%x\n", cs);
+                       uprintf("pid %d (%s): sigreturn cs = 0x%x\n",
+                           td->td_proc->p_pid, td->td_name, cs);
                        ksiginfo_init_trap(&ksi);
                        ksi.ksi_signo = SIGBUS;
                        ksi.ksi_code = BUS_OBJERR;
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to