[PATCH v2 1/8] linux-user/syscall: Fix RF-kill errno (typo in ERFKILL)

Philippe Mathieu-Daudé posted 8 patches 4 years, 7 months ago
Maintainers: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>, "Philippe Mathieu-Daudé" <f4bug@amsat.org>, Jiaxun Yang <jiaxun.yang@flygoat.com>, Aurelien Jarno <aurelien@aurel32.net>
There is a newer version of this series
[PATCH v2 1/8] linux-user/syscall: Fix RF-kill errno (typo in ERFKILL)
Posted by Philippe Mathieu-Daudé 4 years, 7 months ago
Affected targets: alpha, hppa, mips/64, sparc

Fixes: fe8ed7d5794 ("linux-user: Handle ERFKILL and EHWPOISON")
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 linux-user/syscall.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 2e826206d22..4842a1987b7 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -629,7 +629,7 @@ static uint16_t host_to_target_errno_table[ERRNO_TABLE_SIZE] = {
 #ifdef ENOMSG
     [ENOMSG]            = TARGET_ENOMSG,
 #endif
-#ifdef ERKFILL
+#ifdef ERFKILL
     [ERFKILL]           = TARGET_ERFKILL,
 #endif
 #ifdef EHWPOISON
-- 
2.31.1

Re: [PATCH v2 1/8] linux-user/syscall: Fix RF-kill errno (typo in ERFKILL)
Posted by Laurent Vivier 4 years, 7 months ago
Le 08/07/2021 à 16:11, Philippe Mathieu-Daudé a écrit :
> Affected targets: alpha, hppa, mips/64, sparc
> 
> Fixes: fe8ed7d5794 ("linux-user: Handle ERFKILL and EHWPOISON")
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>  linux-user/syscall.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index 2e826206d22..4842a1987b7 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -629,7 +629,7 @@ static uint16_t host_to_target_errno_table[ERRNO_TABLE_SIZE] = {
>  #ifdef ENOMSG
>      [ENOMSG]            = TARGET_ENOMSG,
>  #endif
> -#ifdef ERKFILL
> +#ifdef ERFKILL
>      [ERFKILL]           = TARGET_ERFKILL,
>  #endif
>  #ifdef EHWPOISON
> 

Reviewed-by: Laurent Vivier <laurent@vivier.eu>

Re: [PATCH v2 1/8] linux-user/syscall: Fix RF-kill errno (typo in ERFKILL)
Posted by Richard Henderson 4 years, 7 months ago
On 7/8/21 7:11 AM, Philippe Mathieu-Daudé wrote:
> Affected targets: alpha, hppa, mips/64, sparc
> 
> Fixes: fe8ed7d5794 ("linux-user: Handle ERFKILL and EHWPOISON")
> Signed-off-by: Philippe Mathieu-Daudé<f4bug@amsat.org>
> ---
>   linux-user/syscall.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~