diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2013-07-12 16:31:45 (GMT) |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2013-07-23 22:18:53 (GMT) |
commit | b14b7979d70c19b7fa7c4d3244a4ea5916d77492 (patch) | |
tree | 4ca32999d19069c32671c03ac0ee14318e8da392 /fs/nfs/nfs4state.c | |
parent | 275448eb10cfb2b09b34b0b08498a3401222b413 (diff) | |
download | linux-fsl-qoriq-b14b7979d70c19b7fa7c4d3244a4ea5916d77492.tar.xz |
NFS: Fix return type of nfs4_end_drain_session() stub
Clean up: when NFSv4.1 support is compiled out,
nfs4_end_drain_session() becomes a stub. Make the synopsis of the
stub match the synopsis of the real version of the function.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/nfs4state.c')
-rw-r--r-- | fs/nfs/nfs4state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c index e22862f..ad1a753 100644 --- a/fs/nfs/nfs4state.c +++ b/fs/nfs/nfs4state.c @@ -2116,7 +2116,7 @@ static int nfs4_bind_conn_to_session(struct nfs_client *clp) } #else /* CONFIG_NFS_V4_1 */ static int nfs4_reset_session(struct nfs_client *clp) { return 0; } -static int nfs4_end_drain_session(struct nfs_client *clp) { return 0; } +static void nfs4_end_drain_session(struct nfs_client *clp) { } static int nfs4_bind_conn_to_session(struct nfs_client *clp) { |