public inbox for libc-ports@sourceware.org
 help / color / mirror / Atom feed
From: Andrew Pinski <andrew.pinski@caviumnetworks.com>
To: libc-ports@sourceware.org
Subject: [AARCH64] Fix syscall setting of errno on bigendian
Date: Wed, 11 Sep 2013 21:19:00 -0000	[thread overview]
Message-ID: <CA+=Sn1=P-o0ZjzPQboW6tx8u4MY-ZLwFsZKNCo8n3KCchdy2uw@mail.gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 590 bytes --]

Hi,
  When we (Cavium) has been testing aarch64 on bigendian, we noticed
that errno sometimes was not being set correctly.  The problem is that
the store to errno was being a 64bit rather than the correct 32bit so
the value that was being loaded later on from errno was just 0.

OK?  Build and tested on aarch64-linux-gnu and aarch64_be-linux-gnu
without any regressions.

Thanks,ports/sysdeps/unix/sysv/linux/aarch64/sysdep.h
Andrew Pinski

ChangeLog:
* sysdeps/unix/sysv/linux/aarch64/sysdep.h (SYSCALL_ERROR_HANDLER):
Fix store to errno to use 32bits.

PS I don't have git write access.

[-- Attachment #2: fixbigendian-aarch64errno.diff.txt --]
[-- Type: text/plain, Size: 540 bytes --]

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;				\

             reply	other threads:[~2013-09-11 21:19 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-09-11 21:19 Andrew Pinski [this message]
2013-09-26 17:56 ` pinskia
2013-09-30 10:00 ` Marcus Shawcroft

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CA+=Sn1=P-o0ZjzPQboW6tx8u4MY-ZLwFsZKNCo8n3KCchdy2uw@mail.gmail.com' \
    --to=andrew.pinski@caviumnetworks.com \
    --cc=libc-ports@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).