aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/nfs/client.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/nfs/client.c b/fs/nfs/client.c
index 27f64781444a..700bd5801223 100644
--- a/fs/nfs/client.c
+++ b/fs/nfs/client.c
@@ -208,6 +208,9 @@ static void nfs_free_client(struct nfs_client *clp)
208 */ 208 */
209void nfs_put_client(struct nfs_client *clp) 209void nfs_put_client(struct nfs_client *clp)
210{ 210{
211 if (!clp)
212 return;
213
211 dprintk("--> nfs_put_client({%d})\n", atomic_read(&clp->cl_count)); 214 dprintk("--> nfs_put_client({%d})\n", atomic_read(&clp->cl_count));
212 215
213 if (atomic_dec_and_lock(&clp->cl_count, &nfs_client_lock)) { 216 if (atomic_dec_and_lock(&clp->cl_count, &nfs_client_lock)) {