diff options
author | Al Viro | 2012-06-10 23:13:09 +0200 |
---|---|---|
committer | Al Viro | 2012-07-14 14:34:32 +0200 |
commit | 00cd8dd3bf95f2cc8435b4cac01d9995635c6d0b (patch) | |
tree | d44be476ced0317ae79f28853734ebe2210ad38e /fs/exofs | |
parent | fs/namei.c: don't pass namedata to lookup_dcache() (diff) | |
download | kernel-qcow2-linux-00cd8dd3bf95f2cc8435b4cac01d9995635c6d0b.tar.gz kernel-qcow2-linux-00cd8dd3bf95f2cc8435b4cac01d9995635c6d0b.tar.xz kernel-qcow2-linux-00cd8dd3bf95f2cc8435b4cac01d9995635c6d0b.zip |
stop passing nameidata to ->lookup()
Just the flags; only NFS cares even about that, but there are
legitimate uses for such argument. And getting rid of that
completely would require splitting ->lookup() into a couple
of methods (at least), so let's leave that alone for now...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/exofs')
-rw-r--r-- | fs/exofs/namei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/exofs/namei.c b/fs/exofs/namei.c index fc7161d6bf6b..909ed6ea4cf6 100644 --- a/fs/exofs/namei.c +++ b/fs/exofs/namei.c @@ -46,7 +46,7 @@ static inline int exofs_add_nondir(struct dentry *dentry, struct inode *inode) } static struct dentry *exofs_lookup(struct inode *dir, struct dentry *dentry, - struct nameidata *nd) + unsigned int flags) { struct inode *inode; ino_t ino; |