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 'pull-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs

Pull coredump fix from Al Viro:
"Brown paper bag bug fix for the coredumping fix late in the 6.0
release cycle"

* tag 'pull-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
[brown paperbag] fix coredump breakage

+2 -1
+2 -1
fs/coredump.c
··· 841 841 }; 842 842 struct iov_iter iter; 843 843 struct file *file = cprm->file; 844 - loff_t pos = file->f_pos; 844 + loff_t pos; 845 845 ssize_t n; 846 846 847 847 if (cprm->to_skip) { ··· 853 853 return 0; 854 854 if (dump_interrupted()) 855 855 return 0; 856 + pos = file->f_pos; 856 857 iov_iter_bvec(&iter, WRITE, &bvec, 1, PAGE_SIZE); 857 858 n = __kernel_write_iter(cprm->file, &iter, &pos); 858 859 if (n != PAGE_SIZE)