diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2009-12-15 19:46:48 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-16 10:20:05 -0500 |
commit | 28dfef8febe48f59cf1e7596e1992a6a1893ca24 (patch) | |
tree | eb2df6dd75e72db066062950f91c9ab2e8215280 /kernel/trace/trace.c | |
parent | 5116fa2b3a0a3ec625a10445ae45667f094c125b (diff) |
const: constify remaining pipe_buf_operations
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/trace/trace.c')
-rw-r--r-- | kernel/trace/trace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c index bb6b5e7fa2a2..31118ae16f03 100644 --- a/kernel/trace/trace.c +++ b/kernel/trace/trace.c | |||
@@ -3133,7 +3133,7 @@ static void tracing_spd_release_pipe(struct splice_pipe_desc *spd, | |||
3133 | __free_page(spd->pages[idx]); | 3133 | __free_page(spd->pages[idx]); |
3134 | } | 3134 | } |
3135 | 3135 | ||
3136 | static struct pipe_buf_operations tracing_pipe_buf_ops = { | 3136 | static const struct pipe_buf_operations tracing_pipe_buf_ops = { |
3137 | .can_merge = 0, | 3137 | .can_merge = 0, |
3138 | .map = generic_pipe_buf_map, | 3138 | .map = generic_pipe_buf_map, |
3139 | .unmap = generic_pipe_buf_unmap, | 3139 | .unmap = generic_pipe_buf_unmap, |
@@ -3617,7 +3617,7 @@ static void buffer_pipe_buf_get(struct pipe_inode_info *pipe, | |||
3617 | } | 3617 | } |
3618 | 3618 | ||
3619 | /* Pipe buffer operations for a buffer. */ | 3619 | /* Pipe buffer operations for a buffer. */ |
3620 | static struct pipe_buf_operations buffer_pipe_buf_ops = { | 3620 | static const struct pipe_buf_operations buffer_pipe_buf_ops = { |
3621 | .can_merge = 0, | 3621 | .can_merge = 0, |
3622 | .map = generic_pipe_buf_map, | 3622 | .map = generic_pipe_buf_map, |
3623 | .unmap = generic_pipe_buf_unmap, | 3623 | .unmap = generic_pipe_buf_unmap, |