Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Jul 2020 20:08:43 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r363458 - head/sys/mips/mips
Message-ID:  <202007232008.06NK8h3G027575@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Thu Jul 23 20:08:42 2020
New Revision: 363458
URL: https://svnweb.freebsd.org/changeset/base/363458

Log:
  Set si_addr to badvaddr for TLB faults.
  
  Reviewed by:	kib
  Sponsored by:	DARPA
  Differential Revision:	https://reviews.freebsd.org/D25775

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

Modified: head/sys/mips/mips/trap.c
==============================================================================
--- head/sys/mips/mips/trap.c	Thu Jul 23 20:06:24 2020	(r363457)
+++ head/sys/mips/mips/trap.c	Thu Jul 23 20:08:42 2020	(r363458)
@@ -740,7 +740,7 @@ dofault:
 				}
 				goto err;
 			}
-			addr = trapframe->pc;
+			addr = trapframe->badvaddr;
 
 			msg = "BAD_PAGE_FAULT";
 			log_bad_page_fault(msg, trapframe, type);



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