diff options
author | Michael Forney <mforney@mforney.org> | 2021-01-14 14:36:02 -0800 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2021-01-21 13:27:34 +0100 |
commit | b1d2e476e94cb215d9e19fef1049d413b414ffc2 (patch) | |
tree | 6c4e10cf23bb7861a6f63a65210faf2c7b9f3c77 /linux-user/syscall.c | |
parent | 38987eabb18ad6ba2ef71b19b43d7c869c58f4bb (diff) |
linux-user: Remove obsolete F_SHLCK and F_EXLCK translation
These lock types are unsupported by Linux since v2.2[0][1] and
always return EINVAL (except on SPARC up until v2.6, which just
warned).
musl libc does not define these constants, so just remove them from
the translation cases.
[0] https://github.com/mpe/linux-fullhistory/blob/v2.2.0/fs/locks.c#L322-L324
[1] https://github.com/mpe/linux-fullhistory/blob/v2.2.0/fs/locks.c#L429-L445
Signed-off-by: Michael Forney <mforney@mforney.org>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20210114223602.9004-1-mforney@mforney.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/syscall.c')
-rw-r--r-- | linux-user/syscall.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 5d482dcbef..34760779c8 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -6679,8 +6679,6 @@ static int target_to_host_fcntl_cmd(int cmd) TRANSTBL_CONVERT(F_RDLCK); \ TRANSTBL_CONVERT(F_WRLCK); \ TRANSTBL_CONVERT(F_UNLCK); \ - TRANSTBL_CONVERT(F_EXLCK); \ - TRANSTBL_CONVERT(F_SHLCK); \ } static int target_to_host_flock(int type) |