linux-user/syscall: Remove ERRNO_TABLE_SIZE check
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>
Thu, 8 Jul 2021 17:05:50 +0000 (19:05 +0200)
committerLaurent Vivier <laurent@vivier.eu>
Mon, 12 Jul 2021 19:53:35 +0000 (21:53 +0200)
Now than target_to_host_errno() always return an errno, we can
remove the unused and arbitrary ERRNO_TABLE_SIZE definition.

Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20210708170550.1846343-9-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
linux-user/syscall.c

index 94ec6f730b3f05690fa3869a1ef7312e8ea37a35..376629c68915683144a5585500545513dbdbafd3 100644 (file)
@@ -507,8 +507,6 @@ static inline int next_free_host_timer(void)
 }
 #endif
 
-#define ERRNO_TABLE_SIZE 1200
-
 static inline int host_to_target_errno(int host_errno)
 {
     switch (host_errno) {
@@ -548,9 +546,6 @@ const char *target_strerror(int err)
         return "Successful exit from sigreturn";
     }
 
-    if ((err >= ERRNO_TABLE_SIZE) || (err < 0)) {
-        return NULL;
-    }
     return strerror(target_to_host_errno(err));
 }