1
0
Fork 0

nfsd: Drop reference in expkey_parse error cases

Drop reference to export key on error. Compile tested.

Signed-off-by: Krishna Kumar <krkumar2@in.ibm.com>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
hifive-unleashed-5.1
Krishna Kumar 2008-10-20 11:44:40 +05:30 committed by J. Bruce Fields
parent 6c6a426fdc
commit 6dfcde98a2
1 changed files with 6 additions and 2 deletions

View File

@ -151,8 +151,10 @@ static int expkey_parse(struct cache_detail *cd, char *mesg, int mlen)
/* now we want a pathname, or empty meaning NEGATIVE */
err = -EINVAL;
if ((len=qword_get(&mesg, buf, PAGE_SIZE)) < 0)
if ((len=qword_get(&mesg, buf, PAGE_SIZE)) < 0) {
cache_put(&ek->h, &svc_expkey_cache);
goto out;
}
dprintk("Path seems to be <%s>\n", buf);
err = 0;
if (len == 0) {
@ -164,8 +166,10 @@ static int expkey_parse(struct cache_detail *cd, char *mesg, int mlen)
} else {
struct nameidata nd;
err = path_lookup(buf, 0, &nd);
if (err)
if (err) {
cache_put(&ek->h, &svc_expkey_cache);
goto out;
}
dprintk("Found the path %s\n", buf);
key.ek_path = nd.path;