don't pass nameidata to ->follow_link()
its only use is getting passed to nd_jump_link(), which can obtain it from current->nameidata Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
8402752ecf
commit
6e77137b36
31 changed files with 44 additions and 44 deletions
|
@ -642,11 +642,11 @@ static int hppfs_readlink(struct dentry *dentry, char __user *buffer,
|
|||
buflen);
|
||||
}
|
||||
|
||||
static const char *hppfs_follow_link(struct dentry *dentry, void **cookie, struct nameidata *nd)
|
||||
static const char *hppfs_follow_link(struct dentry *dentry, void **cookie)
|
||||
{
|
||||
struct dentry *proc_dentry = HPPFS_I(d_inode(dentry))->proc_dentry;
|
||||
|
||||
return d_inode(proc_dentry)->i_op->follow_link(proc_dentry, cookie, nd);
|
||||
return d_inode(proc_dentry)->i_op->follow_link(proc_dentry, cookie);
|
||||
}
|
||||
|
||||
static void hppfs_put_link(struct dentry *dentry, void *cookie)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue