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.18-185-g995a05b


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  995a05b173d110e6259d35bdd0aa7e4754b7ac87 (commit)
      from  b2179107f3eabb5e349333cd5adc6e2fb4431990 (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=995a05b173d110e6259d35bdd0aa7e4754b7ac87

commit 995a05b173d110e6259d35bdd0aa7e4754b7ac87
Author: Andrew Pinski <andrew.pinski@caviumnetworks.com>
Date:   Mon Sep 30 10:58:26 2013 +0100

    [AArch64] Fix BE access to errno.

diff --git a/ports/ChangeLog.aarch64 b/ports/ChangeLog.aarch64
index 3daf3ed..cebf505 100644
--- a/ports/ChangeLog.aarch64
+++ b/ports/ChangeLog.aarch64
@@ -1,3 +1,8 @@
+2013-09-30  Andrew Pinski <andrew.pinski@caviumnetworks.com>
+
+	* sysdeps/unix/sysv/linux/aarch64/sysdep.h (SYSCALL_ERROR_HANDLER):
+	Fix store to errno to use 32bits.
+
 2013-09-24  Venkataramanan Kumar  <venkataramanan.kumar@linaro.org>
 
 	* sysdeps/aarch64/machine-gmon.h (__mcount): Accept parameter and
diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/sysdep.h b/ports/sysdeps/unix/sysv/linux/aarch64/sysdep.h
index 849c904..9a7b167 100644
--- a/ports/sysdeps/unix/sysv/linux/aarch64/sysdep.h
+++ b/ports/sysdeps/unix/sysv/linux/aarch64/sysdep.h
@@ -134,7 +134,7 @@ __local_syscall_error:						\
         str     x19, [sp,16];					\
 	neg	x19, x0;					\
 	bl	C_SYMBOL_NAME(__errno_location);		\
-	str	x19, [x0];					\
+	str	w19, [x0];					\
 	mov	x0, -1;						\
         ldr     x19, [sp,16];					\
         ldp     x29, x30, [sp], 32;				\

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

Summary of changes:
 ports/ChangeLog.aarch64                        |    5 +++++
 ports/sysdeps/unix/sysv/linux/aarch64/sysdep.h |    2 +-
 2 files changed, 6 insertions(+), 1 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]