Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 38393
b: refs/heads/master
c: f38b20c
h: refs/heads/master
i:
  38391: 45ae195
v: v3
  • Loading branch information
J.Bruce Fields authored and Linus Torvalds committed Oct 4, 2006
1 parent de1d7f1 commit e86b8c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 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: 8f8e05c5708d7e9017c47f395f8b1498f7f52922
refs/heads/master: f38b20c64519bb812a49b9ef4e10d90367a5af5c
12 changes: 3 additions & 9 deletions trunk/fs/nfsd/export.c
Original file line number Diff line number Diff line change
Expand Up @@ -1048,30 +1048,24 @@ int
exp_pseudoroot(struct auth_domain *clp, struct svc_fh *fhp,
struct cache_req *creq)
{
struct svc_expkey *fsid_key;
struct svc_export *exp;
int rv;
u32 fsidv[2];

mk_fsid_v1(fsidv, 0);

fsid_key = exp_find_key(clp, 1, fsidv, creq);
if (IS_ERR(fsid_key) && PTR_ERR(fsid_key) == -EAGAIN)
exp = exp_find(clp, 1, fsidv, creq);
if (IS_ERR(exp) && PTR_ERR(exp) == -EAGAIN)
return nfserr_dropit;
if (!fsid_key || IS_ERR(fsid_key))
return nfserr_perm;

exp = exp_get_by_name(clp, fsid_key->ek_mnt, fsid_key->ek_dentry, creq);
if (exp == NULL)
rv = nfserr_perm;
else if (IS_ERR(exp))
rv = nfserrno(PTR_ERR(exp));
else {
rv = fh_compose(fhp, exp,
fsid_key->ek_dentry, NULL);
exp->ex_dentry, NULL);
exp_put(exp);
}
cache_put(&fsid_key->h, &svc_expkey_cache);
return rv;
}

Expand Down

0 comments on commit e86b8c5

Please sign in to comment.