This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.21-78-g6f49e32


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  6f49e32aa5c7c188b6b8e78a91636eb5ee2e1841 (commit)
      from  e525154e84b6e9effadfbb5f162785e3aff24eb3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=6f49e32aa5c7c188b6b8e78a91636eb5ee2e1841

commit 6f49e32aa5c7c188b6b8e78a91636eb5ee2e1841
Author: Matthew Fortune <Matthew.Fortune@imgtec.com>
Date:   Mon Jan 5 15:07:50 2015 +0000

    ia64: remove fixed page size macros and others [BZ #17792]
    
    Remove IA64 PAGE_SIZE related macros as PAGE_SIZE is not defined.
    Also remove macros that are only used for BFD's trad-core support
    which is not relavant for IA64 according to the thread starting
    here:
    
    https://sourceware.org/ml/libc-ports/2013-11/msg00028.html
    
    This patch is neither built nor tested but is equivalent to a MIPS
    patch for the same fix.

diff --git a/ChangeLog b/ChangeLog
index 4da75ed..a0f0ae2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2015-02-15  Matthew Fortune <Matthew.Fortune@imgtec.com>
+
+	[BZ #17792]
+	* sysdeps/unix/sysv/linux/ia64/sys/user.h (NBPG): Remove.
+	(UPAGES, HOST_TEXT_START_ADDR, HOST_DATA_START_ADDR,
+	HOST_STACK_END_ADDR): Likewise.
+
 2015-02-13  Steve Ellcey  <sellcey@imgtec.com>
 
 	* sysdeps/mips/bits/endian.h (__MIPSEB): Use #ifdef instead of #if.
diff --git a/NEWS b/NEWS
index 89e48c8..781f7a7 100644
--- a/NEWS
+++ b/NEWS
@@ -9,8 +9,8 @@ Version 2.22
 
 * The following bugs are resolved with this release:
 
-  4719, 15467, 15790, 16560, 17569, 17912, 17932, 17944, 17949, 17964,
-  17965, 17967, 17969.
+  4719, 15467, 15790, 16560, 17569, 17792, 17912, 17932, 17944, 17949,
+  17964, 17965, 17967, 17969.
 
 Version 2.21
 
diff --git a/sysdeps/unix/sysv/linux/ia64/sys/user.h b/sysdeps/unix/sysv/linux/ia64/sys/user.h
index 56cd045..fbd4200 100644
--- a/sysdeps/unix/sysv/linux/ia64/sys/user.h
+++ b/sysdeps/unix/sysv/linux/ia64/sys/user.h
@@ -44,10 +44,4 @@ struct user
   char u_comm[32];				/* User command name.  */
 };
 
-#define NBPG			PAGE_SIZE
-#define UPAGES			1
-#define HOST_TEXT_START_ADDR	(u.start_code)
-#define HOST_DATA_START_ADDR	(u.start_data)
-#define HOST_STACK_END_ADDR	(u.start_stack + u.u_ssize * NBPG)
-
 #endif	/* sys/user.h */

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                               |    7 +++++++
 NEWS                                    |    4 ++--
 sysdeps/unix/sysv/linux/ia64/sys/user.h |    6 ------
 3 files changed, 9 insertions(+), 8 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]