aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorFengguang Wu <fengguang.wu@intel.com>2013-07-10 09:17:14 +0800
committerTrond Myklebust <Trond.Myklebust@netapp.com>2013-07-09 21:35:27 -0400
commit4f8568cb5290295c384d5c1328c52790e33a8a0d (patch)
tree48235459134c28186c40d5a79cb1d9934a2f7240 /net
parentNFS: Allow nfs_updatepage to extend a write under additional circumstances (diff)
downloadlinux-dev-4f8568cb5290295c384d5c1328c52790e33a8a0d.tar.xz
linux-dev-4f8568cb5290295c384d5c1328c52790e33a8a0d.zip
rpc_pipe: rpc_dir_inode_operations can be static
Hi Jeff, FYI, there are new sparse warnings show up in tree: git://git.linux-nfs.org/projects/trondmy/linux-nfs.git nfs-for-next head: 296afe1f58d55fd56ed85daaafafcfee39f59ece commit: 76fa66657900071016f2bae61de28f059f3f2abf [2/5] rpc_pipe: set dentry operations at d_alloc time >> net/sunrpc/rpc_pipe.c:496:31: sparse: symbol 'rpc_dir_inode_operations' was not declared. Should it be static? Please consider folding the attached diff :-) Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net')
-rw-r--r--net/sunrpc/rpc_pipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/rpc_pipe.c b/net/sunrpc/rpc_pipe.c
index c5f6812ca06a..61239a2cb786 100644
--- a/net/sunrpc/rpc_pipe.c
+++ b/net/sunrpc/rpc_pipe.c
@@ -493,7 +493,7 @@ rpc_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
return NULL;
}
-const struct inode_operations rpc_dir_inode_operations = {
+static const struct inode_operations rpc_dir_inode_operations = {
.lookup = rpc_lookup,
};