diff mbox

linux-user/syscall.c: Add EAGAIN to host_to_target_errno_table for

Message ID 1441593306-3334-1-git-send-email-gang.chen.5i5j@gmail.com
State New
Headers show

Commit Message

Chen Gang Sept. 7, 2015, 2:35 a.m. UTC
From: Chen Gang <gang.chen.5i5j@gmail.com>

Under Alpha host, EAGAIN is redefined to 35, so it need be remapped too.

Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
---
 linux-user/syscall.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

Comments

Peter Maydell Sept. 8, 2015, 4:21 p.m. UTC | #1
On 7 September 2015 at 03:35,  <gang.chen.5i5j@gmail.com> wrote:
> From: Chen Gang <gang.chen.5i5j@gmail.com>
>
> Under Alpha host, EAGAIN is redefined to 35, so it need be remapped too.
>
> Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
> ---
>  linux-user/syscall.c |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index f62c698..380f5a8 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -457,6 +457,7 @@ static uint16_t target_to_host_errno_table[ERRNO_TABLE_SIZE] = {
>   * minus the errnos that are not actually generic to all archs.
>   */
>  static uint16_t host_to_target_errno_table[ERRNO_TABLE_SIZE] = {
> +    [EAGAIN]           = TARGET_EAGAIN,
>      [EIDRM]            = TARGET_EIDRM,
>      [ECHRNG]           = TARGET_ECHRNG,
>      [EL2NSYNC]         = TARGET_EL2NSYNC,

Reviewed-by: Peter Maydell <peter.maydell@linaro.org>

thanks
-- PMM
diff mbox

Patch

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index f62c698..380f5a8 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -457,6 +457,7 @@  static uint16_t target_to_host_errno_table[ERRNO_TABLE_SIZE] = {
  * minus the errnos that are not actually generic to all archs.
  */
 static uint16_t host_to_target_errno_table[ERRNO_TABLE_SIZE] = {
+    [EAGAIN]		= TARGET_EAGAIN,
     [EIDRM]		= TARGET_EIDRM,
     [ECHRNG]		= TARGET_ECHRNG,
     [EL2NSYNC]		= TARGET_EL2NSYNC,