From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Hildenbrand Subject: [PATCH kvm-unit-tests v3 03/11] s390x: set initital stack pointer to stackptr, not stacktop Date: Tue, 13 Feb 2018 17:23:13 +0100 Message-ID: <20180213162321.20522-4-david@redhat.com> References: <20180213162321.20522-1-david@redhat.com> Cc: Paolo Bonzini , =?UTF-8?q?Radim=20Kr=C4=8Dm=C3=A1=C5=99?= , Thomas Huth , Cornelia Huck , Christian Borntraeger , David Hildenbrand To: kvm@vger.kernel.org Return-path: Received: from mx3-rdu2.redhat.com ([66.187.233.73]:57670 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S934712AbeBMQX2 (ORCPT ); Tue, 13 Feb 2018 11:23:28 -0500 In-Reply-To: <20180213162321.20522-1-david@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: ... was wrong from the beginning and remained unnoticed until we started playing with dynamic memory allocation. Reviewed-by: Thomas Huth Signed-off-by: David Hildenbrand --- s390x/cstart64.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s390x/cstart64.S b/s390x/cstart64.S index 4d0c877..9a26ed3 100644 --- a/s390x/cstart64.S +++ b/s390x/cstart64.S @@ -18,7 +18,7 @@ .globl start start: /* setup stack */ - larl %r15, stacktop + larl %r15, stackptr /* setup initial PSW mask + control registers*/ larl %r1, initital_psw lpswe 0(%r1) -- 2.14.3