dect
/
linux-2.6
Archived
13
0
Fork 0

LOOKUP_CREATE and LOOKUP_RENAME_TARGET can be set only on the last step

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro 2011-06-25 21:37:18 -04:00
parent dd7dd556e4
commit 407938e79e
3 changed files with 6 additions and 12 deletions

View File

@ -663,10 +663,8 @@ cifs_d_revalidate(struct dentry *direntry, struct nameidata *nd)
* case sensitive name which is specified by user if this is * case sensitive name which is specified by user if this is
* for creation. * for creation.
*/ */
if (!(nd->flags & (LOOKUP_CONTINUE | LOOKUP_PARENT))) { if (nd->flags & (LOOKUP_CREATE | LOOKUP_RENAME_TARGET))
if (nd->flags & (LOOKUP_CREATE | LOOKUP_RENAME_TARGET)) return 0;
return 0;
}
if (time_after(jiffies, direntry->d_time + HZ) || !lookupCacheEnabled) if (time_after(jiffies, direntry->d_time + HZ) || !lookupCacheEnabled)
return 0; return 0;

View File

@ -82,10 +82,8 @@ static int vfat_revalidate_ci(struct dentry *dentry, struct nameidata *nd)
* case sensitive name which is specified by user if this is * case sensitive name which is specified by user if this is
* for creation. * for creation.
*/ */
if (!(nd->flags & (LOOKUP_CONTINUE | LOOKUP_PARENT))) { if (nd->flags & (LOOKUP_CREATE | LOOKUP_RENAME_TARGET))
if (nd->flags & (LOOKUP_CREATE | LOOKUP_RENAME_TARGET)) return 0;
return 0;
}
return vfat_revalidate_shortname(dentry); return vfat_revalidate_shortname(dentry);
} }

View File

@ -1624,10 +1624,8 @@ static int jfs_ci_revalidate(struct dentry *dentry, struct nameidata *nd)
* case sensitive name which is specified by user if this is * case sensitive name which is specified by user if this is
* for creation. * for creation.
*/ */
if (!(nd->flags & (LOOKUP_CONTINUE | LOOKUP_PARENT))) { if (nd->flags & (LOOKUP_CREATE | LOOKUP_RENAME_TARGET))
if (nd->flags & (LOOKUP_CREATE | LOOKUP_RENAME_TARGET)) return 0;
return 0;
}
return 1; return 1;
} }