diff options
author | Xiubo Li <xiubli@redhat.com> | 2022-06-10 10:12:49 +0800 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2022-08-03 00:54:12 +0200 |
commit | e19feff96380e7a98ed55446ae08c3c52ce6a994 (patch) | |
tree | cbb3861974472c2a8eef9b4877bb6d70094f7c39 /fs/ceph | |
parent | b53aca4b460ae2ece453963ef01667ee8ee78f52 (diff) | |
download | linux-stable-e19feff96380e7a98ed55446ae08c3c52ce6a994.tar.gz linux-stable-e19feff96380e7a98ed55446ae08c3c52ce6a994.tar.bz2 linux-stable-e19feff96380e7a98ed55446ae08c3c52ce6a994.zip |
ceph: make change_auth_cap_ses a global symbol
Signed-off-by: Xiubo Li <xiubli@redhat.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'fs/ceph')
-rw-r--r-- | fs/ceph/caps.c | 4 | ||||
-rw-r--r-- | fs/ceph/super.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/fs/ceph/caps.c b/fs/ceph/caps.c index 2b1f22322e8f..2677199efbce 100644 --- a/fs/ceph/caps.c +++ b/fs/ceph/caps.c @@ -602,8 +602,8 @@ static void __check_cap_issue(struct ceph_inode_info *ci, struct ceph_cap *cap, * @ci: inode to be moved * @session: new auth caps session */ -static void change_auth_cap_ses(struct ceph_inode_info *ci, - struct ceph_mds_session *session) +void change_auth_cap_ses(struct ceph_inode_info *ci, + struct ceph_mds_session *session) { lockdep_assert_held(&ci->i_ceph_lock); diff --git a/fs/ceph/super.h b/fs/ceph/super.h index 59469253592b..3c940a8457de 100644 --- a/fs/ceph/super.h +++ b/fs/ceph/super.h @@ -767,6 +767,8 @@ extern void ceph_unreserve_caps(struct ceph_mds_client *mdsc, extern void ceph_reservation_status(struct ceph_fs_client *client, int *total, int *avail, int *used, int *reserved, int *min); +extern void change_auth_cap_ses(struct ceph_inode_info *ci, + struct ceph_mds_session *session); |