NFS: remove pointless if statement in nfs_direct_write_result
authorFred Isaman <iisaman@netapp.com>
Fri, 11 Feb 2011 15:42:37 +0000 (15:42 +0000)
committerTrond Myklebust <Trond.Myklebust@netapp.com>
Fri, 11 Mar 2011 20:38:40 +0000 (15:38 -0500)
The code was doing nothing more in either branch of the if.

Signed-off-by: Fred Isaman <iisaman@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
fs/nfs/direct.c

index 9943a75bb6d1d94766c7992be26034372152e4ad..f493bdd74f78c8c495bec568dc1a2875d32bfc73 100644 (file)
@@ -649,8 +649,7 @@ static void nfs_direct_write_result(struct rpc_task *task, void *calldata)
 {
        struct nfs_write_data *data = calldata;
 
-       if (nfs_writeback_done(task, data) != 0)
-               return;
+       nfs_writeback_done(task, data);
 }
 
 /*