linux-user: fix conversion of flock/flock64 l_type field
commitae68ad9fee4e51eae26e34b43a9e6999bd1c6819
authorLaurent Vivier <laurent@vivier.eu>
Wed, 9 May 2018 23:11:21 +0000 (10 01:11 +0200)
committerLaurent Vivier <laurent@vivier.eu>
Fri, 11 May 2018 17:05:19 +0000 (11 19:05 +0200)
tree6126eed6547bb2bd31314a89e52f11251f929b03
parent534cdbf56c2a72952ffde9a258160f5586cea886
linux-user: fix conversion of flock/flock64 l_type field

As l_type values (F_RDLCK, F_WRLCK, F_UNLCK, F_EXLCK, F_SHLCK)
are not bitmasks, we can't use target_to_host_bitmask() and
host_to_target_bitmask() to convert them.

Introduce target_to_host_flock() and host_to_target_flock()
to convert values between host and target.

Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Max Filippov <jcmvbkbc@gmail.com>
Message-Id: <20180509231123.20864-5-laurent@vivier.eu>
linux-user/syscall.c