aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJens Axboe <axboe@suse.de>2006-04-30 10:36:32 -0400
committerJens Axboe <axboe@suse.de>2006-04-30 10:36:32 -0400
commit46e678c96bbd775abd05d3ddbe2fd334794f9157 (patch)
treef82b77d9f2fd5d4eb5e66bc2bb8ff5df63db3c7f
parente0a515bc6a2188f02916e976f419a8640312e32a (diff)
[PATCH] splice: fix bugs with stealing regular pipe pages
- Check that page has suitable count for stealing in the regular pipes. - pipe_to_file() assumes that the page is locked on succesful steal, so do that in the pipe steal hook - Missing unlock_page() in add_to_page_cache() failure. Signed-off-by: Jens Axboe <axboe@suse.de>
-rw-r--r--fs/pipe.c11
-rw-r--r--fs/splice.c4
2 files changed, 12 insertions, 3 deletions
diff --git a/fs/pipe.c b/fs/pipe.c
index 7fefb10db8d9..5a369273c51b 100644
--- a/fs/pipe.c
+++ b/fs/pipe.c
@@ -127,8 +127,15 @@ static void anon_pipe_buf_unmap(struct pipe_inode_info *pipe,
127static int anon_pipe_buf_steal(struct pipe_inode_info *pipe, 127static int anon_pipe_buf_steal(struct pipe_inode_info *pipe,
128 struct pipe_buffer *buf) 128 struct pipe_buffer *buf)
129{ 129{
130 buf->flags |= PIPE_BUF_FLAG_STOLEN; 130 struct page *page = buf->page;
131 return 0; 131
132 if (page_count(page) == 1) {
133 buf->flags |= PIPE_BUF_FLAG_STOLEN;
134 lock_page(page);
135 return 0;
136 }
137
138 return 1;
132} 139}
133 140
134static void anon_pipe_buf_get(struct pipe_inode_info *info, 141static void anon_pipe_buf_get(struct pipe_inode_info *info,
diff --git a/fs/splice.c b/fs/splice.c
index a46ddd28561e..9df28d30efa0 100644
--- a/fs/splice.c
+++ b/fs/splice.c
@@ -599,8 +599,10 @@ static int pipe_to_file(struct pipe_inode_info *info, struct pipe_buffer *buf,
599 goto find_page; 599 goto find_page;
600 600
601 page = buf->page; 601 page = buf->page;
602 if (add_to_page_cache(page, mapping, index, gfp_mask)) 602 if (add_to_page_cache(page, mapping, index, gfp_mask)) {
603 unlock_page(page);
603 goto find_page; 604 goto find_page;
605 }
604 606
605 if (!(buf->flags & PIPE_BUF_FLAG_LRU)) 607 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
606 lru_cache_add(page); 608 lru_cache_add(page);