diff options
Diffstat (limited to 'fs/pipe.c')
-rw-r--r-- | fs/pipe.c | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -127,8 +127,15 @@ static void anon_pipe_buf_unmap(struct pipe_inode_info *pipe, | |||
127 | static int anon_pipe_buf_steal(struct pipe_inode_info *pipe, | 127 | static 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 | ||
134 | static void anon_pipe_buf_get(struct pipe_inode_info *info, | 141 | static void anon_pipe_buf_get(struct pipe_inode_info *info, |