Blame SOURCES/fix_ARM64_bt-f_SIGSEGV.patch

394337
commit 9c102f994856d1de5a62644822d07a99318073cb
394337
Author: Dave Anderson <anderson@redhat.com>
394337
Date:   Mon Aug 3 13:55:02 2015 -0400
394337
394337
    Fix for a segmentation violation generated by the ARM64 "bt -[f|F]"
394337
    options when analyzing the active tasks in vmcores generated by the
394337
    kdump facility.  This bug is a regression that was introduced in
394337
    crash-7.1.2 by commit 15a58e4070486efa2aa965bdd636626e62b65cc7, which
394337
    was an enhancement of the ARM64 backtrace capability for active tasks
394337
    in kdump vmcores.
394337
    (anderson@redhat.com)
394337
394337
diff --git a/arm64.c b/arm64.c
394337
index d9bef10..a4c3b51 100644
394337
--- a/arm64.c
394337
+++ b/arm64.c
394337
@@ -1144,6 +1144,7 @@ arm64_back_trace_cmd(struct bt_info *bt)
394337
 		stackframe.fp = GET_STACK_ULONG(bt->bptr - 8);
394337
 		stackframe.pc = GET_STACK_ULONG(bt->bptr);
394337
 		stackframe.sp = bt->bptr + 8;
394337
+		bt->frameptr = stackframe.sp;
394337
 	} else if (bt->hp && bt->hp->esp) {
394337
 		stackframe.fp = GET_STACK_ULONG(bt->hp->esp - 8);
394337
 		stackframe.pc = bt->hp->eip ? 
394337