···144144}145145146146/**147147- * ecryptfs_create_underlying_file148148- * @lower_dir_inode: inode of the parent in the lower fs of the new file149149- * @dentry: New file's dentry150150- * @mode: The mode of the new file151151- *152152- * Creates the file in the lower file system.153153- *154154- * Returns zero on success; non-zero on error condition155155- */156156-static int157157-ecryptfs_create_underlying_file(struct inode *lower_dir_inode,158158- struct dentry *dentry, int mode)159159-{160160- struct dentry *lower_dentry = ecryptfs_dentry_to_lower(dentry);161161- return vfs_create(lower_dir_inode, lower_dentry, mode, NULL);162162-}163163-164164-/**165147 * ecryptfs_do_create166148 * @directory_inode: inode of the new file's dentry's parent in ecryptfs167149 * @ecryptfs_dentry: New file's dentry in ecryptfs···173191 inode = ERR_CAST(lower_dir_dentry);174192 goto out;175193 }176176- rc = ecryptfs_create_underlying_file(lower_dir_dentry->d_inode,177177- ecryptfs_dentry, mode);194194+ rc = vfs_create(lower_dir_dentry->d_inode, lower_dentry, mode, NULL);178195 if (rc) {179196 printk(KERN_ERR "%s: Failure to create dentry in lower fs; "180197 "rc = [%d]\n", __func__, rc);