Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Sep 2018 18:36:43 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r338699 - head/sys/amd64/amd64
Message-ID:  <201809161836.w8GIahbw096601@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Sun Sep 16 18:36:42 2018
New Revision: 338699
URL: https://svnweb.freebsd.org/changeset/base/338699

Log:
  Remove unneeded new line from the panic string.
  
  Reviewed by:	alc, markj
  Sponsored by:	The FreeBSD Foundation
  MFC after:	1 week
  Approved by:	re (rgrimes)
  Differential revision:	https://reviews.freebsd.org/D17181

Modified:
  head/sys/amd64/amd64/trap.c

Modified: head/sys/amd64/amd64/trap.c
==============================================================================
--- head/sys/amd64/amd64/trap.c	Sun Sep 16 00:44:23 2018	(r338698)
+++ head/sys/amd64/amd64/trap.c	Sun Sep 16 18:36:42 2018	(r338699)
@@ -811,7 +811,7 @@ trap_pfault(struct trapframe *frame, int usermode)
 	    PGEX_U | PGEX_I)) == (PGEX_P | PGEX_U | PGEX_I) &&
 	    (curpcb->pcb_saved_ucr3 & ~CR3_PCID_MASK)==
 	    (PCPU_GET(curpmap)->pm_cr3 & ~CR3_PCID_MASK))
-		panic("PTI: pid %d comm %s tf_err %#lx\n", p->p_pid,
+		panic("PTI: pid %d comm %s tf_err %#lx", p->p_pid,
 		    p->p_comm, frame->tf_err);
 
 	/*



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809161836.w8GIahbw096601>