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-5.2-rc7' of git://github.com/ceph/ceph-client

Pull ceph fix from Ilya Dryomov:
"A small fix for a potential -rc1 regression from Jeff"

* tag 'ceph-for-5.2-rc7' of git://github.com/ceph/ceph-client:
ceph: fix ceph_mdsc_build_path to not stop on first component

+2 -1
+2 -1
fs/ceph/mds_client.c
··· 2121 2121 if (inode && ceph_snap(inode) == CEPH_SNAPDIR) { 2122 2122 dout("build_path path+%d: %p SNAPDIR\n", 2123 2123 pos, temp); 2124 - } else if (stop_on_nosnap && inode && 2124 + } else if (stop_on_nosnap && inode && dentry != temp && 2125 2125 ceph_snap(inode) == CEPH_NOSNAP) { 2126 2126 spin_unlock(&temp->d_lock); 2127 + pos++; /* get rid of any prepended '/' */ 2127 2128 break; 2128 2129 } else { 2129 2130 pos -= temp->d_name.len;