NFS: Fix warning introduced by NFSv4.0 transport blocking patches
authorChuck Lever <chuck.lever@oracle.com>
Wed, 4 Sep 2013 16:26:05 +0000 (12:26 -0400)
committerTrond Myklebust <Trond.Myklebust@netapp.com>
Wed, 4 Sep 2013 16:26:30 +0000 (12:26 -0400)
commitb6a85258d8223a87e7ecf25791e634617a159f79
treee1c4bd82ea3a3bf3310f7b42d285162a7ff7e3c0
parent1cec16abf23d644b0e261956cb2b37a668354f5a
NFS: Fix warning introduced by NFSv4.0 transport blocking patches

When CONFIG_NFS_V4_1 is not enabled, gcc emits this warning:

linux/fs/nfs/nfs4state.c:255:12: warning:
 ‘nfs4_begin_drain_session’ defined but not used [-Wunused-function]
 static int nfs4_begin_drain_session(struct nfs_client *clp)
            ^

Eventually NFSv4.0 migration recovery will invoke this function, but
that has not yet been merged.  Hide nfs4_begin_drain_session()
behind CONFIG_NFS_V4_1 for now.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
fs/nfs/nfs4state.c