Lines Matching defs:alias
27 * If new entry was created in the parent, it could create the 8.3 alias (the
29 * matches the created 8.3 alias.
714 struct dentry *alias;
737 alias = d_find_alias(inode);
740 * Checking "alias->d_parent == dentry->d_parent" to make sure
743 if (alias && alias->d_parent == dentry->d_parent &&
744 !exfat_d_anon_disconn(alias)) {
747 * Unhashed alias is able to exist because of revalidate()
750 * In such case, we reuse an alias instead of new dentry
752 if (d_unhashed(alias)) {
753 WARN_ON(alias->d_name.hash_len !=
756 alias);
758 d_rehash(alias);
763 * another name (longname vs 8.3 alias of it) in past.
767 d_move(alias, dentry);
771 return alias;
773 dput(alias);