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/viro/vfs

Pull iov iter fix from Al Viro.

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
fix a braino in ITER_PIPE iov_iter_revert()

+1 -1
+1 -1
lib/iov_iter.c
··· 798 while (1) { 799 size_t n = off - pipe->bufs[idx].offset; 800 if (unroll < n) { 801 - off -= (n - unroll); 802 break; 803 } 804 unroll -= n;
··· 798 while (1) { 799 size_t n = off - pipe->bufs[idx].offset; 800 if (unroll < n) { 801 + off -= unroll; 802 break; 803 } 804 unroll -= n;