exfat: don't pass nameidata to ->create() / stop passing nameidata to ->lookup()

This commit is contained in:
followmsi 2020-10-05 12:24:49 +02:00
parent db77a3c64d
commit 997eab3f62
1 changed files with 2 additions and 2 deletions

View File

@ -506,7 +506,7 @@ static int exfat_create(struct inode *dir, struct dentry *dentry, umode_t mode,
bool excl) bool excl)
#elif LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,00) #elif LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,00)
static int exfat_create(struct inode *dir, struct dentry *dentry, umode_t mode, static int exfat_create(struct inode *dir, struct dentry *dentry, umode_t mode,
struct nameidata *nd) bool excl)
#else #else
static int exfat_create(struct inode *dir, struct dentry *dentry, int mode, static int exfat_create(struct inode *dir, struct dentry *dentry, int mode,
struct nameidata *nd) struct nameidata *nd)
@ -591,7 +591,7 @@ static struct dentry *exfat_lookup(struct inode *dir, struct dentry *dentry,
unsigned int flags) unsigned int flags)
#else #else
static struct dentry *exfat_lookup(struct inode *dir, struct dentry *dentry, static struct dentry *exfat_lookup(struct inode *dir, struct dentry *dentry,
struct nameidata *nd) unsigned int flags)
#endif #endif
{ {
struct super_block *sb = dir->i_sb; struct super_block *sb = dir->i_sb;