aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/nfsd/nfsfh.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/fs/nfsd/nfsfh.c b/fs/nfsd/nfsfh.c
index 3f2ec2e6d06c..e3f3bbea8ae7 100644
--- a/fs/nfsd/nfsfh.c
+++ b/fs/nfsd/nfsfh.c
@@ -461,7 +461,7 @@ fh_update(struct svc_fh *fhp)
461 } else { 461 } else {
462 int size; 462 int size;
463 if (fhp->fh_handle.fh_fileid_type != 0) 463 if (fhp->fh_handle.fh_fileid_type != 0)
464 goto out_uptodate; 464 goto out;
465 datap = fhp->fh_handle.fh_auth+ 465 datap = fhp->fh_handle.fh_auth+
466 fhp->fh_handle.fh_size/4 -1; 466 fhp->fh_handle.fh_size/4 -1;
467 size = (fhp->fh_maxsize - fhp->fh_handle.fh_size)/4; 467 size = (fhp->fh_maxsize - fhp->fh_handle.fh_size)/4;
@@ -481,10 +481,6 @@ out_negative:
481 printk(KERN_ERR "fh_update: %s/%s still negative!\n", 481 printk(KERN_ERR "fh_update: %s/%s still negative!\n",
482 dentry->d_parent->d_name.name, dentry->d_name.name); 482 dentry->d_parent->d_name.name, dentry->d_name.name);
483 goto out; 483 goto out;
484out_uptodate:
485 printk(KERN_ERR "fh_update: %s/%s already up-to-date!\n",
486 dentry->d_parent->d_name.name, dentry->d_name.name);
487 goto out;
488} 484}
489 485
490/* 486/*