All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] linux-user/syscall.c: Add EAGAIN to host_to_target_errno_table for
@ 2015-09-07  2:35 gang.chen.5i5j
  2015-09-08 16:21 ` Peter Maydell
  0 siblings, 1 reply; 2+ messages in thread
From: gang.chen.5i5j @ 2015-09-07  2:35 UTC (permalink / raw)
  To: riku.voipio, rth
  Cc: peter.maydell, Chen Gang, agraf, xili_gchen_5257, qemu-devel

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,
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [Qemu-devel] [PATCH] linux-user/syscall.c: Add EAGAIN to host_to_target_errno_table for
  2015-09-07  2:35 [Qemu-devel] [PATCH] linux-user/syscall.c: Add EAGAIN to host_to_target_errno_table for gang.chen.5i5j
@ 2015-09-08 16:21 ` Peter Maydell
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Maydell @ 2015-09-08 16:21 UTC (permalink / raw)
  To: Chen Gang
  Cc: QEMU Developers, Riku Voipio, Alexander Graf, Chen Gang,
	Richard Henderson

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

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-09-08 16:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-07  2:35 [Qemu-devel] [PATCH] linux-user/syscall.c: Add EAGAIN to host_to_target_errno_table for gang.chen.5i5j
2015-09-08 16:21 ` Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.