lkml.org 
[lkml]   [2017]   [Jan]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: 4.9.0 regression in pipe-backed iov_iter with systemd-nspawn
On Fri, Jan 13, 2017 at 11:33 AM, Linus Torvalds
<torvalds@linux-foundation.org> wrote:
> This function looks so broken that I must be missing something. Why
> doesn't pipe_advance() just look like the following:
>
> static void pipe_advance(struct iov_iter *i, size_t size)
> {
...
> pipe_buf_release(pipe, buf);
> pipe->nrbufs--;
...

I think this part needs to update "curbufs" too, so something like

pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);

although I think that "idx" has to track curbuf here anyway, so I
guess it could just be combined with the idx update and look something
like

pipe->curbuf = idx = next_idx(idx, pipe);

in there. Otherwise we get out of sync with the pipe state.

Or maybe I'm just full of it.

Linus

\
 
 \ /
  Last update: 2017-01-13 21:11    [W:1.618 / U:0.924 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site