aboutsummaryrefslogtreecommitdiffstats
path: root/fs/pipe.c
diff options
context:
space:
mode:
authorJens Axboe <axboe@suse.de>2006-05-02 09:29:57 -0400
committerJens Axboe <axboe@suse.de>2006-05-02 09:29:57 -0400
commit330ab71619bacc4d4494227a6cfc9b7f5500403d (patch)
tree43a9045011116f1afa506b80de1ede9872f45935 /fs/pipe.c
parenta893b99be71f1d669b74f840e3a683dd077d007b (diff)
[PATCH] vmsplice: restrict stealing a little more
Apply the same rules as the anon pipe pages, only allow stealing if no one else is using the page. Signed-off-by: Jens Axboe <axboe@suse.de>
Diffstat (limited to 'fs/pipe.c')
-rw-r--r--fs/pipe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/pipe.c b/fs/pipe.c
index 3941a7f78b5d..5acd8954aaa0 100644
--- a/fs/pipe.c
+++ b/fs/pipe.c
@@ -184,8 +184,8 @@ void generic_pipe_buf_unmap(struct pipe_inode_info *pipe,
184 kunmap(buf->page); 184 kunmap(buf->page);
185} 185}
186 186
187static int anon_pipe_buf_steal(struct pipe_inode_info *pipe, 187int generic_pipe_buf_steal(struct pipe_inode_info *pipe,
188 struct pipe_buffer *buf) 188 struct pipe_buffer *buf)
189{ 189{
190 struct page *page = buf->page; 190 struct page *page = buf->page;
191 191
@@ -213,7 +213,7 @@ static struct pipe_buf_operations anon_pipe_buf_ops = {
213 .unmap = generic_pipe_buf_unmap, 213 .unmap = generic_pipe_buf_unmap,
214 .pin = generic_pipe_buf_pin, 214 .pin = generic_pipe_buf_pin,
215 .release = anon_pipe_buf_release, 215 .release = anon_pipe_buf_release,
216 .steal = anon_pipe_buf_steal, 216 .steal = generic_pipe_buf_steal,
217 .get = generic_pipe_buf_get, 217 .get = generic_pipe_buf_get,
218}; 218};
219 219