projects
/
linux-2.6
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
rt2x00: Fix txdone_entry_desc_flags
[linux-2.6]
/
fs
/
nfsctl.c
diff --git
a/fs/nfsctl.c
b/fs/nfsctl.c
index
51f1b31
..
aed8145
100644
(file)
--- a/
fs/nfsctl.c
+++ b/
fs/nfsctl.c
@@
-41,9
+41,9
@@
static struct file *do_open(char *name, int flags)
error = may_open(&nd, MAY_WRITE, FMODE_WRITE);
if (!error)
- return dentry_open(nd.
dentry, nd
.mnt, flags);
+ return dentry_open(nd.
path.dentry, nd.path
.mnt, flags);
- path_
release(&nd
);
+ path_
put(&nd.path
);
return ERR_PTR(error);
}