From: Yan, Zheng Date: Thu, 29 Nov 2018 03:22:50 +0000 (+0800) Subject: ceph: don't update importing cap's mseq when handing cap export X-Git-Tag: v4.19.15~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9797226bf661499ddfb7d754d155f594d5742f5e;p=platform%2Fkernel%2Flinux-rpi.git ceph: don't update importing cap's mseq when handing cap export commit 3c1392d4c49962a31874af14ae9ff289cb2b3851 upstream. Updating mseq makes client think importer mds has accepted all prior cap messages and importer mds knows what caps client wants. Actually some cap messages may have been dropped because of mseq mismatch. If mseq is left untouched, importing cap's mds_wanted later will get reset by cap import message. Cc: stable@vger.kernel.org Signed-off-by: "Yan, Zheng" Signed-off-by: Ilya Dryomov Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/ceph/caps.c b/fs/ceph/caps.c index dd7dfdd..eadffaa 100644 --- a/fs/ceph/caps.c +++ b/fs/ceph/caps.c @@ -3566,7 +3566,6 @@ retry: tcap->cap_id = t_cap_id; tcap->seq = t_seq - 1; tcap->issue_seq = t_seq - 1; - tcap->mseq = t_mseq; tcap->issued |= issued; tcap->implemented |= issued; if (cap == ci->i_auth_cap)