diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2009-08-09 15:14:15 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2009-08-09 15:14:15 -0400 |
commit | b693ba4a338da15db1db4b5ebaa36e4ab9781c82 (patch) | |
tree | 6c16b9ef282af0e958fa216310d4552303b525d5 /fs/nfs | |
parent | 7b2aa037e878c939676675969983284a02958ae3 (diff) | |
download | linux-3.10-b693ba4a338da15db1db4b5ebaa36e4ab9781c82.tar.gz linux-3.10-b693ba4a338da15db1db4b5ebaa36e4ab9781c82.tar.bz2 linux-3.10-b693ba4a338da15db1db4b5ebaa36e4ab9781c82.zip |
SUNRPC: Constify rpc_pipe_ops...
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/idmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/idmap.c b/fs/nfs/idmap.c index 86147b0ab2c..fae0d3e52b4 100644 --- a/fs/nfs/idmap.c +++ b/fs/nfs/idmap.c @@ -101,7 +101,7 @@ static void idmap_pipe_destroy_msg(struct rpc_pipe_msg *); static unsigned int fnvhash32(const void *, size_t); -static struct rpc_pipe_ops idmap_upcall_ops = { +static const struct rpc_pipe_ops idmap_upcall_ops = { .upcall = idmap_pipe_upcall, .downcall = idmap_pipe_downcall, .destroy_msg = idmap_pipe_destroy_msg, |