diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2009-12-15 16:46:48 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-16 07:20:05 -0800 |
commit | 28dfef8febe48f59cf1e7596e1992a6a1893ca24 (patch) | |
tree | eb2df6dd75e72db066062950f91c9ab2e8215280 /net | |
parent | 5116fa2b3a0a3ec625a10445ae45667f094c125b (diff) | |
download | linux-28dfef8febe48f59cf1e7596e1992a6a1893ca24.tar.gz linux-28dfef8febe48f59cf1e7596e1992a6a1893ca24.tar.bz2 linux-28dfef8febe48f59cf1e7596e1992a6a1893ca24.zip |
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 'net')
-rw-r--r-- | net/core/skbuff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c index bfa3e7865a8c..93c4e060c91e 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -93,7 +93,7 @@ static int sock_pipe_buf_steal(struct pipe_inode_info *pipe, /* Pipe buffer operations for a socket. */ -static struct pipe_buf_operations sock_pipe_buf_ops = { +static const struct pipe_buf_operations sock_pipe_buf_ops = { .can_merge = 0, .map = generic_pipe_buf_map, .unmap = generic_pipe_buf_unmap, |