Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'ceph-for-6.2-rc8' of https://github.com/ceph/ceph-client

Pull ceph fix from Ilya Dryomov:
"A fix for a pretty embarrassing omission in the session flush handler
from Xiubo, marked for stable"

* tag 'ceph-for-6.2-rc8' of https://github.com/ceph/ceph-client:
ceph: flush cap releases when the session is flushed

+6
+6
fs/ceph/mds_client.c
··· 3685 3685 break; 3686 3686 3687 3687 case CEPH_SESSION_FLUSHMSG: 3688 + /* flush cap releases */ 3689 + spin_lock(&session->s_cap_lock); 3690 + if (session->s_num_cap_releases) 3691 + ceph_flush_cap_releases(mdsc, session); 3692 + spin_unlock(&session->s_cap_lock); 3693 + 3688 3694 send_flushmsg_ack(mdsc, session, seq); 3689 3695 break; 3690 3696