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

Pull ceph fix from Ilya Dryomov:
"A fix for a 4.7 performance regression, caused by a typo in an if
condition"

* tag 'ceph-for-4.8-rc6' of git://github.com/ceph/ceph-client:
ceph: do not modify fi->frag in need_reset_readdir()

+1 -1
+1 -1
fs/ceph/dir.c
··· 597 597 if (is_hash_order(new_pos)) { 598 598 /* no need to reset last_name for a forward seek when 599 599 * dentries are sotred in hash order */ 600 - } else if (fi->frag |= fpos_frag(new_pos)) { 600 + } else if (fi->frag != fpos_frag(new_pos)) { 601 601 return true; 602 602 } 603 603 rinfo = fi->last_readdir ? &fi->last_readdir->r_reply_info : NULL;