diff options
author | Andy Adamson <andros@netapp.com> | 2011-03-09 13:13:46 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2011-03-10 15:05:01 -0500 |
commit | c34c32ea97718bb24fc06158733580003ba89211 (patch) | |
tree | e11ca3f95ecc237499cd5d06f2377cc327c208b1 /fs | |
parent | 114f64b5f24abac33a42f4f1856eb3a9766d497e (diff) | |
download | op-kernel-dev-c34c32ea97718bb24fc06158733580003ba89211.zip op-kernel-dev-c34c32ea97718bb24fc06158733580003ba89211.tar.gz |
NFSv4.1 reclaim complete must wait for completion
Signed-off-by: Andy Adamson <andros@netapp.com>
[Trond: fix whitespace errors]
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/nfs/nfs4proc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index d3c705a..0a13ae7 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c @@ -5359,6 +5359,9 @@ static int nfs41_proc_reclaim_complete(struct nfs_client *clp) status = PTR_ERR(task); goto out; } + status = nfs4_wait_for_completion_rpc_task(task); + if (status == 0) + status = task->tk_status; rpc_put_task(task); return 0; out: |