file-posix: check the use_lock before setting the file lock
authorLi Feng <fengli@smartx.com>
Mon, 7 Dec 2020 11:44:06 +0000 (19:44 +0800)
committerKevin Wolf <kwolf@redhat.com>
Fri, 11 Dec 2020 16:52:40 +0000 (17:52 +0100)
commiteb43ea16dcb7e6ab01db321b5edac3e593556e7d
treebff36c40fd24a15515c6596a5f241a45c2d59ba6
parente6c7964769f68c36e2b20c26f5bf4da91dfa0cac
file-posix: check the use_lock before setting the file lock

The scenario is that when accessing a volume on an NFS filesystem
without supporting the file lock,  Qemu will complain "Failed to lock
byte 100", even when setting the file.locking = off.

We should do file lock related operations only when the file.locking is
enabled, otherwise, the syscall of 'fcntl' will return non-zero.

Signed-off-by: Li Feng <fengli@smartx.com>
Message-Id: <1607341446-85506-1-git-send-email-fengli@smartx.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
block/file-posix.c