File 0004-s390x-assembly-pack-fix-formal-interface-bug-in-chac.patch of Package openssl-1_1
32
1
From b2b580fe445e064da50c13d3e00f71022da16ece Mon Sep 17 00:00:00 2001
2
From: Patrick Steuer <patrick.steuer@de.ibm.com>
3
Date: Fri, 15 Feb 2019 22:59:09 +0100
4
Subject: [PATCH] s390x assembly pack: fix formal interface bug in chacha
5
module
6
7
Signed-off-by: Patrick Steuer <patrick.steuer@de.ibm.com>
8
9
Reviewed-by: Tim Hudson <tjh@openssl.org>
10
Reviewed-by: Richard Levitte <levitte@openssl.org>
11
(Merged from https://github.com/openssl/openssl/pull/8257)
12
---
13
crypto/chacha/asm/chacha-s390x.pl | 2 +-
14
1 file changed, 1 insertion(+), 1 deletion(-)
15
16
diff --git a/crypto/chacha/asm/chacha-s390x.pl b/crypto/chacha/asm/chacha-s390x.pl
17
index 005c810e20..abf7283dd8 100755
18
--- a/crypto/chacha/asm/chacha-s390x.pl
19
+++ b/crypto/chacha/asm/chacha-s390x.pl
20
21
larl ("%r1","OPENSSL_s390xcap_P");
22
23
lghi ("%r0",64);
24
-&{$z? \&cgr:\&cr} ($len,"%r0");
25
+&{$z? \&clgr:\&clr} ($len,"%r0");
26
jle ("_s390x_chacha_novx");
27
28
lg ("%r0","S390X_STFLE+16(%r1)");
29
--
30
2.21.0
31
32