Movatterモバイル変換
[0]ホーム
This is the mail archive of thelibc-alpha@sourceware.orgmailing list for theglibc project.
[PATCH] S390: Add new s390 platform z14.
- From: Stefan Liebler <stli at linux dot vnet dot ibm dot com>
- To: libc-alpha at sourceware dot org
- Date: Fri, 11 Aug 2017 13:48:40 +0200
- Subject: [PATCH] S390: Add new s390 platform z14.
- Authentication-results: sourceware.org; auth=none
Hi,This patch adds the new IBM z14 to the platform string array.The macro _DL_PLATFORMS_COUNT is incremented.ChangeLog:* sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Add z14.* sysdeps/s390/dl-procinfo.h (_DL_PLATFORMS_COUNT): Increased.ByeStefan
commit b314628ed3b10b035308c3e4bb55c23f8b1e55bfAuthor: Stefan Liebler <stli@linux.vnet.ibm.com>Date: Fri Aug 11 13:38:03 2017 +0200 S390: Add new s390 platform z14. The new IBM z14 is added to platform string array. The macro _DL_PLATFORMS_COUNT is incremented. ChangeLog: * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Add z14. * sysdeps/s390/dl-procinfo.h (_DL_PLATFORMS_COUNT): Increased.diff --git a/sysdeps/s390/dl-procinfo.c b/sysdeps/s390/dl-procinfo.cindex 436e205..e71bc1f 100644--- a/sysdeps/s390/dl-procinfo.c+++ b/sysdeps/s390/dl-procinfo.c@@ -63,11 +63,11 @@ PROCINFO_CLASS const char _dl_s390_cap_flags[15][9] #if !defined PROCINFO_DECL && defined SHARED ._dl_s390_platforms #else-PROCINFO_CLASS const char _dl_s390_platforms[8][7]+PROCINFO_CLASS const char _dl_s390_platforms[9][7] #endif #ifndef PROCINFO_DECL = {- "g5", "z900", "z990", "z9-109", "z10", "z196", "zEC12", "z13"+ "g5", "z900", "z990", "z9-109", "z10", "z196", "zEC12", "z13", "z14" } #endif #if !defined SHARED || defined PROCINFO_DECLdiff --git a/sysdeps/s390/dl-procinfo.h b/sysdeps/s390/dl-procinfo.hindex 1645cf3..6db283e 100644--- a/sysdeps/s390/dl-procinfo.h+++ b/sysdeps/s390/dl-procinfo.h@@ -23,7 +23,7 @@ #define _DL_HWCAP_COUNT 15 -#define _DL_PLATFORMS_COUNT8+#define _DL_PLATFORMS_COUNT9 /* The kernel provides up to 32 capability bits with elf_hwcap. */ #define _DL_FIRST_PLATFORM32
[8]ページ先頭