Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 44501
b: refs/heads/master
c: 6899320
h: refs/heads/master
i:
  44499: 3391294
v: v3
  • Loading branch information
J.Bruce Fields authored and Linus Torvalds committed Dec 13, 2006
1 parent 2a2771f commit 7da8ad0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 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: 4b41bd85d5f93af37c2730df172aeb54280be7c3
refs/heads/master: 6899320c2cefe5ae6b606f820ba8b762ba21f34a
6 changes: 2 additions & 4 deletions trunk/fs/nfsd/export.c
Original file line number Diff line number Diff line change
Expand Up @@ -1163,12 +1163,10 @@ exp_pseudoroot(struct auth_domain *clp, struct svc_fh *fhp,
mk_fsid_v1(fsidv, 0);

exp = exp_find(clp, 1, fsidv, creq);
if (IS_ERR(exp) && PTR_ERR(exp) == -EAGAIN)
return nfserr_dropit;
if (IS_ERR(exp))
return nfserrno(PTR_ERR(exp));
if (exp == NULL)
return nfserr_perm;
else if (IS_ERR(exp))
return nfserrno(PTR_ERR(exp));
rv = fh_compose(fhp, exp, exp->ex_dentry, NULL);
exp_put(exp);
return rv;
Expand Down

0 comments on commit 7da8ad0

Please sign in to comment.