From: Dhairya Parmar Date: Wed, 11 Oct 2023 07:27:04 +0000 (+0530) Subject: mds: erase clients getting evicted from laggy_clients X-Git-Tag: v16.2.15~138^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=4f2c462923c0636c38e14c2d3fb37f759bd3739d;p=ceph.git mds: erase clients getting evicted from laggy_clients Fixes: https://tracker.ceph.com/issues/63105 Signed-off-by: Dhairya Parmar (cherry picked from commit 754b6022fb9fda075d38dcb1d058482f75dcff4d) --- diff --git a/src/mds/Server.cc b/src/mds/Server.cc index b98d9650146c..7d11d20903e5 100644 --- a/src/mds/Server.cc +++ b/src/mds/Server.cc @@ -1247,6 +1247,8 @@ void Server::find_idle_sessions() kill_session(session, NULL); } } + // clear as there's no use to keep the evicted clients in laggy_clients + clear_laggy_clients(); } void Server::evict_cap_revoke_non_responders() {