Re: [PATCH v14 08/17] splice: Do splice read from a file without using ITER_PIPE

From: David Howells
Date: Sat Feb 18 2023 - 04:19:22 EST


Alexander Egorenkov <egorenar@xxxxxxxxxxxxx> wrote:

> > + n = min_t(loff_t, len, isize - *ppos);
> > + n = splice_folio_into_pipe(pipe, folio, *ppos, n);
> > if (!n)
> > goto out;
> > len -= n;
>
> Yes, this change fixed the problem.

Thanks!

David