diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2022-12-14 10:35:47 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-12-14 10:35:47 -0800 |
commit | cfb3162495fe5b8702cf3854995508ef78a3f962 (patch) | |
tree | f27c689b448433f2308b43a3789ea1114e343464 /fs/ceph/addr.c | |
parent | 87be949912eedb73690d8eaeb086f24bfe17438d (diff) | |
parent | 68c62bee9d081cf815310b3a96e38d94fc16007d (diff) | |
download | linux-stable-cfb3162495fe5b8702cf3854995508ef78a3f962.tar.gz linux-stable-cfb3162495fe5b8702cf3854995508ef78a3f962.tar.bz2 linux-stable-cfb3162495fe5b8702cf3854995508ef78a3f962.zip |
Merge tag 'ceph-for-6.2-rc1' of https://github.com/ceph/ceph-client
Pull cph update from Ilya Dryomov:
"A fix to facilitate prompt cap releases on async creates from Xiubo.
This should address sporadic "client isn't responding to mclientcaps
(revoke) ..." warnings and potential associated MDS hangs"
* tag 'ceph-for-6.2-rc1' of https://github.com/ceph/ceph-client:
ceph: try to check caps immediately after async creating finishes
ceph: remove useless session parameter for check_caps()
Diffstat (limited to 'fs/ceph/addr.c')
-rw-r--r-- | fs/ceph/addr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/addr.c b/fs/ceph/addr.c index 61f47debec5a..8c74871e37c9 100644 --- a/fs/ceph/addr.c +++ b/fs/ceph/addr.c @@ -1367,7 +1367,7 @@ out: folio_put(folio); if (check_cap) - ceph_check_caps(ceph_inode(inode), CHECK_CAPS_AUTHONLY, NULL); + ceph_check_caps(ceph_inode(inode), CHECK_CAPS_AUTHONLY); return copied; } |