Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 190396
b: refs/heads/master
c: acf82b8
h: refs/heads/master
v: v3
  • Loading branch information
Dan Carpenter authored and Trond Myklebust committed Apr 28, 2010
1 parent 86e674c commit 2cc9aad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 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: ba8b06e67ed7a560b0e7c80091bcadda4f4727a5
refs/heads/master: acf82b85a70f39786e3cbb1ffed8655bcc972424
5 changes: 4 additions & 1 deletion trunk/fs/nfs/nfs4proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -5218,9 +5218,12 @@ static int nfs41_proc_reclaim_complete(struct nfs_client *clp)
msg.rpc_resp = &calldata->res;
task_setup_data.callback_data = calldata;
task = rpc_run_task(&task_setup_data);
if (IS_ERR(task))
if (IS_ERR(task)) {
status = PTR_ERR(task);
goto out;
}
rpc_put_task(task);
return 0;
out:
dprintk("<-- %s status=%d\n", __func__, status);
return status;
Expand Down

0 comments on commit 2cc9aad

Please sign in to comment.