From a59279fefdfab4a6b42be074372e7c2acbd49a41 Mon Sep 17 00:00:00 2001 From: ian Date: Thu, 12 Feb 2015 19:35:46 +0000 Subject: MFC r276206: For data and instruction prefetch aborts, call the same handler in the C code, passing a 0/1 flag that indicates which type of abort it was. This sets the stage for unifying the handling of page faults in a single routine. --- sys/arm/include/machdep.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sys/arm/include') diff --git a/sys/arm/include/machdep.h b/sys/arm/include/machdep.h index 67cc9bf..a756d3d 100644 --- a/sys/arm/include/machdep.h +++ b/sys/arm/include/machdep.h @@ -20,8 +20,7 @@ struct trapframe; void arm_lock_cache_line(vm_offset_t); void init_proc0(vm_offset_t kstack); void halt(void); -void data_abort_handler(struct trapframe *); -void prefetch_abort_handler(struct trapframe *); +void abort_handler(struct trapframe *, int ); void set_stackptrs(int cpu); void undefinedinstruction_bounce(struct trapframe *); -- cgit v1.1