Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 39737
b: refs/heads/master
c: 0942176
h: refs/heads/master
i:
  39735: 4955a0d
v: v3
  • Loading branch information
J. Bruce Fields authored and Linus Torvalds committed Oct 17, 2006
1 parent 9f15a8b commit 5241806
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9801d8a39cfe6c34f39f9552a246a6bd002e735e
refs/heads/master: 0942176f4353ffebcd6e3f95abce9fd8e24f2cb1
4 changes: 2 additions & 2 deletions trunk/fs/nfsd/nfs4callback.c
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ nfsd4_probe_callback(struct nfs4_client *clp)

/* Create RPC client */
cb->cb_client = rpc_create(&args);
if (!cb->cb_client) {
if (IS_ERR(cb->cb_client)) {
dprintk("NFSD: couldn't create callback client\n");
goto out_err;
}
Expand All @@ -448,10 +448,10 @@ nfsd4_probe_callback(struct nfs4_client *clp)
out_rpciod:
atomic_dec(&clp->cl_count);
rpciod_down();
cb->cb_client = NULL;
out_clnt:
rpc_shutdown_client(cb->cb_client);
out_err:
cb->cb_client = NULL;
dprintk("NFSD: warning: no callback path to client %.*s\n",
(int)clp->cl_name.len, clp->cl_name.data);
}
Expand Down

0 comments on commit 5241806

Please sign in to comment.