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 branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse

Pull fuse fix from Miklos Szeredi:
"This fixes a longstanding bug, which can be triggered by interrupting
a directory reading syscall"

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse:
fuse: fix READDIRPLUS skipping an entry

+2 -1
+2 -1
fs/fuse/dir.c
··· 1308 1308 */ 1309 1309 over = !dir_emit(ctx, dirent->name, dirent->namelen, 1310 1310 dirent->ino, dirent->type); 1311 - ctx->pos = dirent->off; 1311 + if (!over) 1312 + ctx->pos = dirent->off; 1312 1313 } 1313 1314 1314 1315 buf += reclen;