[PATCH 0/5] splice: locking changes and code refactoring
Al Viro
viro at ZenIV.linux.org.uk
Sat Jan 18 01:56:47 CST 2014
On Sat, Jan 18, 2014 at 07:46:49AM +0000, Al Viro wrote:
> Um...
> int pipe_to_file(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
> struct splice_desc *sd)
> ...
> if (buf->page != page) {
> char *src = buf->ops->map(pipe, buf, 1);
> char *dst = kmap_atomic(page);
>
> memcpy(dst + offset, src + buf->offset, this_len);
> flush_dcache_page(page);
> kunmap_atomic(dst);
> buf->ops->unmap(pipe, buf, src);
> }
BTW, that if (buf->page != page) is always true - it's a leftover from
before Nick's removal of ->steal() uses in pipe_to_file() (as well as
the big fat comment in front of that function that had lost any relation
to what it's doing 7 years ago)...
Is there anybody maintaining fs/splice.c these days? I'd been doing
massive RTFS in that area lately, but it would certainly be nice to
have some braindump on the design and issues in that thing, preferably
still matching the code...
More information about the xfs
mailing list