File lock block wait when conflict writing
F_SETLKW should be used to wait for lock release.
EINTR error number require to set "F_SETLKW",
the conflict process will block there and wait for
the lock relasesd. In this code, it will goto "retry",
or it would never try again.
Signed-off-by: yuan ren <yren@suse.com>