/**
  * vfs_create - create new file
  * @idmap:     idmap of the mount the inode was found from
- * @dir:       inode of @dentry
- * @dentry:    pointer to dentry of the base directory
- * @mode:      mode of the new file
+ * @dir:       inode of the parent directory
+ * @dentry:    dentry of the child file
+ * @mode:      mode of the child file
  * @want_excl: whether the file must not yet exist
  *
  * Create a new file.
 /**
  * vfs_mknod - create device node or file
  * @idmap:     idmap of the mount the inode was found from
- * @dir:       inode of @dentry
- * @dentry:    pointer to dentry of the base directory
- * @mode:      mode of the new device node or file
+ * @dir:       inode of the parent directory
+ * @dentry:    dentry of the child device node
+ * @mode:      mode of the child device node
  * @dev:       device number of device to create
  *
  * Create a device node or file.
 /**
  * vfs_mkdir - create directory
  * @idmap:     idmap of the mount the inode was found from
- * @dir:       inode of @dentry
- * @dentry:    pointer to dentry of the base directory
- * @mode:      mode of the new directory
+ * @dir:       inode of the parent directory
+ * @dentry:    dentry of the child directory
+ * @mode:      mode of the child directory
  *
  * Create a directory.
  *
 /**
  * vfs_rmdir - remove directory
  * @idmap:     idmap of the mount the inode was found from
- * @dir:       inode of @dentry
- * @dentry:    pointer to dentry of the base directory
+ * @dir:       inode of the parent directory
+ * @dentry:    dentry of the child directory
  *
  * Remove a directory.
  *
 /**
  * vfs_symlink - create symlink
  * @idmap:     idmap of the mount the inode was found from
- * @dir:       inode of @dentry
- * @dentry:    pointer to dentry of the base directory
+ * @dir:       inode of the parent directory
+ * @dentry:    dentry of the child symlink file
  * @oldname:   name of the file to link to
  *
  * Create a symlink.