[PATCH] kill nameidata passing to permission(), rename to inode_permission()

Incidentally, the name that gives hundreds of false positives on grep
is not a good idea...

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro 2008-07-22 00:07:17 -04:00
parent 30524472c2
commit f419a2e3b6
8 changed files with 17 additions and 21 deletions

View file

@ -830,7 +830,7 @@ out:
static int
ecryptfs_permission(struct inode *inode, int mask)
{
return permission(ecryptfs_inode_to_lower(inode), mask, NULL);
return inode_permission(ecryptfs_inode_to_lower(inode), mask);
}
/**