From b1d2e476e94cb215d9e19fef1049d413b414ffc2 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Thu, 14 Jan 2021 14:36:02 -0800 Subject: 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 Reviewed-by: Laurent Vivier Message-Id: <20210114223602.9004-1-mforney@mforney.org> Signed-off-by: Laurent Vivier --- linux-user/generic/fcntl.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'linux-user/generic/fcntl.h') diff --git a/linux-user/generic/fcntl.h b/linux-user/generic/fcntl.h index c85c5b9..4568d1f 100644 --- a/linux-user/generic/fcntl.h +++ b/linux-user/generic/fcntl.h @@ -119,11 +119,6 @@ struct target_f_owner_ex { #define TARGET_F_UNLCK 2 #endif -#ifndef TARGET_F_EXLCK -#define TARGET_F_EXLCK 4 -#define TARGET_F_SHLCK 8 -#endif - #ifndef TARGET_HAVE_ARCH_STRUCT_FLOCK #ifndef TARGET_ARCH_FLOCK_PAD #define TARGET_ARCH_FLOCK_PAD -- cgit v1.1