Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Mar 2014 01:34:38 +0000 (UTC)
From:      Ian Lepore <ian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r262966 - head/sys/arm/arm
Message-ID:  <201403100134.s2A1YcNM067093@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ian
Date: Mon Mar 10 01:34:38 2014
New Revision: 262966
URL: http://svnweb.freebsd.org/changeset/base/262966

Log:
  Make the default exception handler vectors point to where I thought they
  were already pointing: the default handlers (not a panic that says there
  is no default handler).

Modified:
  head/sys/arm/arm/exception.S

Modified: head/sys/arm/arm/exception.S
==============================================================================
--- head/sys/arm/arm/exception.S	Mon Mar 10 00:53:37 2014	(r262965)
+++ head/sys/arm/arm/exception.S	Mon Mar 10 01:34:38 2014	(r262966)
@@ -115,16 +115,8 @@ Lprefetch_abort_handler_address:
 	.global	_C_LABEL(prefetch_abort_handler_address)
 
 _C_LABEL(prefetch_abort_handler_address):
-	.word	abortprefetch
+	.word	prefetch_abort_handler
 
-	.text
-abortprefetch:
-        adr     r0, abortprefetchmsg
-	b	_C_LABEL(panic)
-
-abortprefetchmsg:
-        .asciz  "abortprefetch"
-        .align  0
 END(prefetch_abort_entry)
 
 /*
@@ -151,16 +143,8 @@ Ldata_abort_handler_address:
 	.data
 	.global	_C_LABEL(data_abort_handler_address)
 _C_LABEL(data_abort_handler_address):
-	.word	abortdata
+	.word	data_abort_handler
 
-	.text
-abortdata:
-        adr     r0, abortdatamsg
-	b	_C_LABEL(panic)
-
-abortdatamsg:
-        .asciz  "abortdata"
-        .align  0
 END(data_abort_entry)
 
 /*



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