]> git.apps.os.sepia.ceph.com Git - ceph.git/commit
client: wake up the front pos waiter 40771/head
authorXiubo Li <xiubli@redhat.com>
Fri, 19 Feb 2021 14:05:23 +0000 (22:05 +0800)
committerNathan Cutler <ncutler@suse.com>
Sat, 10 Apr 2021 21:13:03 +0000 (23:13 +0200)
commitb8aebba5979d15a8b9a262fe5a698fc6ea3cbae7
tree7140e03cde796eb1c4b7e97ff4a1a0452cd6f3df
parent1976598f645ad1935a5e428219713b8856796d83
client: wake up the front pos waiter

The old code was buggy, why it ran well without any problem is that
the big client_lock will make sure that the read/write won't run in
parallel, so it won't be any problem here.

But when introducing inode lock to break the client_lock, which will
allow the read/write to run parallelly, the pos waiters won't get any
chance to be woke up.

In unlock_fh_pos(), it will always wake up the frontest waiter.

Fixes: https://tracker.ceph.com/issues/49379
Signed-off-by: Xiubo Li <xiubli@redhat.com>
(cherry picked from commit 66bcb880abe56c08e04876e98d3d751e78f8fd2f)
src/client/Client.cc