Blame SOURCES/glibc-rh1268008-7.patch

147e83
From 9bcfc74b3097eb84973b7b91fd676f116e206938 Mon Sep 17 00:00:00 2001
147e83
From: Stefan Liebler <stli@linux.vnet.ibm.com>
147e83
Date: Thu, 8 Oct 2015 10:45:58 +0200
147e83
Subject: [PATCH 07/30] S390: Add new s390 platform.
147e83
147e83
upstream-commit-id: a1b0488fc9df3d895a2e5eefbcd348d3f7fe0e52
147e83
https://www.sourceware.org/ml/libc-alpha/2015-07/msg00081.html
147e83
147e83
The new IBM z13 is added to platform string array.
147e83
The macro _DL_PLATFORMS_COUNT is incremented to 8,
147e83
because it was not incremented by commit
147e83
"S/390: Sync AUXV capabilities and archs with kernel".
147e83
147e83
ChangeLog:
147e83
147e83
	* sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Add z13.
147e83
	* sysdeps/s390/dl-procinfo.h (_DL_PLATFORMS_COUNT): Increased.
147e83
---
147e83
 sysdeps/s390/dl-procinfo.c | 4 ++--
147e83
 sysdeps/s390/dl-procinfo.h | 2 +-
147e83
 2 files changed, 3 insertions(+), 3 deletions(-)
147e83
147e83
diff --git a/sysdeps/s390/dl-procinfo.c b/sysdeps/s390/dl-procinfo.c
147e83
index 96d438a..f353528 100644
147e83
--- a/sysdeps/s390/dl-procinfo.c
147e83
+++ b/sysdeps/s390/dl-procinfo.c
147e83
@@ -62,11 +62,11 @@ PROCINFO_CLASS const char _dl_s390_cap_flags[12][9]
147e83
 #if !defined PROCINFO_DECL && defined SHARED
147e83
   ._dl_s390_platforms
147e83
 #else
147e83
-PROCINFO_CLASS const char _dl_s390_platforms[7][7]
147e83
+PROCINFO_CLASS const char _dl_s390_platforms[8][7]
147e83
 #endif
147e83
 #ifndef PROCINFO_DECL
147e83
 = {
147e83
-    "g5", "z900", "z990", "z9-109", "z10", "z196", "zEC12"
147e83
+    "g5", "z900", "z990", "z9-109", "z10", "z196", "zEC12", "z13"
147e83
   }
147e83
 #endif
147e83
 #if !defined SHARED || defined PROCINFO_DECL
147e83
diff --git a/sysdeps/s390/dl-procinfo.h b/sysdeps/s390/dl-procinfo.h
147e83
index 89766e0..80747f0 100644
147e83
--- a/sysdeps/s390/dl-procinfo.h
147e83
+++ b/sysdeps/s390/dl-procinfo.h
147e83
@@ -23,7 +23,7 @@
147e83
 
147e83
 #define _DL_HWCAP_COUNT 12
147e83
 
147e83
-#define _DL_PLATFORMS_COUNT	5
147e83
+#define _DL_PLATFORMS_COUNT	8
147e83
 
147e83
 /* The kernel provides up to 32 capability bits with elf_hwcap.  */
147e83
 #define _DL_FIRST_PLATFORM	32
147e83
-- 
147e83
2.3.0
147e83