commit | 533a2818dd1a00cdd32d638fea0178e25a683053 | [log] [tgz] |
---|---|---|
author | Jeff Layton <jlayton@kernel.org> | Fri Jul 19 15:22:28 2019 -0400 |
committer | Ilya Dryomov <idryomov@gmail.com> | Mon Sep 16 12:06:24 2019 +0200 |
tree | 17865c460392d46480ccc1cbb09b0f828f6447c7 | |
parent | 606d102327a45a49d293557527802ee7fbfd7af1 [diff] |
ceph: eliminate session->s_trim_caps It's only used to keep count of caps being trimmed, but that requires that we hold the session->s_mutex to prevent multiple trimming operations from running concurrently. We can achieve the same effect using an integer on the stack, which allows us to (eventually) not need the s_mutex. Signed-off-by: Jeff Layton <jlayton@kernel.org> Reviewed-by: "Yan, Zheng" <zyan@redhat.com> Signed-off-by: Ilya Dryomov <idryomov@gmail.com>