diff options
author | H Hartley Sweeten <hartleys@visionengravers.com> | 2010-01-26 15:42:03 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-01-26 15:42:03 -0500 |
commit | 0aa05887af728b058af91197f0ae9b3ae63dd74a (patch) | |
tree | 81175366e25e4ccbcf79969bfada1c29e612369a /fs/nfs/write.c | |
parent | 82be934a59ff891cac598727e5a862ba2b9d1fac (diff) | |
download | linux-0aa05887af728b058af91197f0ae9b3ae63dd74a.tar.gz linux-0aa05887af728b058af91197f0ae9b3ae63dd74a.tar.bz2 linux-0aa05887af728b058af91197f0ae9b3ae63dd74a.zip |
NFS: Make nfs_commitdata_release static
The symbol nfs_commitdata_release is only used locally
in this file. Make it static to prevent the following sparse warning:
warning: symbol 'nfs_commitdata_release' was not declared. Should it be static?
Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Trond Myklebust <Trond.Myklebust@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Reviewed-by: Chuck Lever <chuck.lever@oracle.com>
Diffstat (limited to 'fs/nfs/write.c')
-rw-r--r-- | fs/nfs/write.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/write.c b/fs/nfs/write.c index dac8d7676aff..7b54b8bb101f 100644 --- a/fs/nfs/write.c +++ b/fs/nfs/write.c @@ -1233,7 +1233,7 @@ int nfs_writeback_done(struct rpc_task *task, struct nfs_write_data *data) #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4) -void nfs_commitdata_release(void *data) +static void nfs_commitdata_release(void *data) { struct nfs_write_data *wdata = data; |