mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
7a338472f2
Based on 1 normalized pattern(s): this work is licensed under the terms of the gnu gpl version 2 extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 48 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Enrico Weigelt <info@metux.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190604081204.624030236@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18 lines
461 B
ArmAsm
18 lines
461 B
ArmAsm
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* sun4v_mcd.S: Sun4v memory corruption detected precise exception handler
|
|
*
|
|
* Copyright (c) 2015 Oracle and/or its affiliates. All rights reserved.
|
|
* Authors: Bob Picco <bob.picco@oracle.com>,
|
|
* Khalid Aziz <khalid.aziz@oracle.com>
|
|
*/
|
|
.text
|
|
.align 32
|
|
|
|
sun4v_mcd_detect_precise:
|
|
mov %l4, %o1
|
|
mov %l5, %o2
|
|
call sun4v_mem_corrupt_detect_precise
|
|
add %sp, PTREGS_OFF, %o0
|
|
ba,a,pt %xcc, rtrap
|
|
nop
|