The former gives better error reporting on unhandled permission faults
(introduced by the UAO patches).
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
 
        if (permission_fault(esr) && (addr < USER_DS)) {
                if (get_fs() == KERNEL_DS)
-                       panic("Accessing user space memory with fs=KERNEL_DS");
+                       die("Accessing user space memory with fs=KERNEL_DS", regs, esr);
 
                if (!search_exception_tables(regs->pc))
-                       panic("Accessing user space memory outside uaccess.h routines");
+                       die("Accessing user space memory outside uaccess.h routines", regs, esr);
        }
 
        /*