Browse Source

ceph: remove useless check

rc is only ever 0 or negative in this method.

Signed-off-by: Sage Weil <sage@newdream.net>
Sage Weil 14 years ago
parent
commit
6b4a3b517a
1 changed files with 0 additions and 2 deletions
  1. 0 2
      fs/ceph/addr.c

+ 0 - 2
fs/ceph/addr.c

@@ -880,8 +880,6 @@ release_pvec_pages:
 out:
 	if (req)
 		ceph_osdc_put_request(req);
-	if (rc > 0)
-		rc = 0;  /* vfs expects us to return 0 */
 	ceph_put_snap_context(snapc);
 	dout("writepages done, rc = %d\n", rc);
 	return rc;