diff options
| author | Eric Dumazet <dada1@cosmosbay.com> | 2006-12-13 03:34:04 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-13 12:05:47 -0500 |
| commit | d4c3cca941b64a938eaa9734585a93547c6be323 (patch) | |
| tree | 48b78bda9d4da9c3bdfb30548cb65f0bc4015733 /include/linux | |
| parent | 426d62e2158c2fd3aa1ed1fd62122afd2ccb89ae (diff) | |
[PATCH] constify pipe_buf_operations
- pipe/splice should use const pipe_buf_operations and file_operations
- struct pipe_inode_info has an unused field "start" : get rid of it.
Signed-off-by: Eric Dumazet <dada1@cosmosbay.com>
Cc: Jens Axboe <jens.axboe@oracle.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/pipe_fs_i.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/pipe_fs_i.h b/include/linux/pipe_fs_i.h index ea4f7cd7bfd8..cc902d242c41 100644 --- a/include/linux/pipe_fs_i.h +++ b/include/linux/pipe_fs_i.h | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | struct pipe_buffer { | 12 | struct pipe_buffer { |
| 13 | struct page *page; | 13 | struct page *page; |
| 14 | unsigned int offset, len; | 14 | unsigned int offset, len; |
| 15 | struct pipe_buf_operations *ops; | 15 | const struct pipe_buf_operations *ops; |
| 16 | unsigned int flags; | 16 | unsigned int flags; |
| 17 | }; | 17 | }; |
| 18 | 18 | ||
| @@ -43,7 +43,6 @@ struct pipe_inode_info { | |||
| 43 | unsigned int nrbufs, curbuf; | 43 | unsigned int nrbufs, curbuf; |
| 44 | struct pipe_buffer bufs[PIPE_BUFFERS]; | 44 | struct pipe_buffer bufs[PIPE_BUFFERS]; |
| 45 | struct page *tmp_page; | 45 | struct page *tmp_page; |
| 46 | unsigned int start; | ||
| 47 | unsigned int readers; | 46 | unsigned int readers; |
| 48 | unsigned int writers; | 47 | unsigned int writers; |
| 49 | unsigned int waiting_writers; | 48 | unsigned int waiting_writers; |
