* @brief Create a new directory entry (dentry) with absolute path * * @param[in] mnt Pointer to the mount point structure * @param[in] fullpath Absolute path string for the dentry * * @return struct dfs_dentry* Pointer to newly created dentry, or NULL if creation failed * * @note This is a wrapper for _dentry_create() with is_rela_path set to RT_FALSE * @see _dentry_create() */
| 106 | * @see _dentry_create() |
| 107 | */ |
| 108 | struct dfs_dentry *dfs_dentry_create(struct dfs_mnt *mnt, char *fullpath) |
| 109 | { |
| 110 | return _dentry_create(mnt, fullpath, RT_FALSE); |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * @brief Create a new directory entry (dentry) with relative path |
no test coverage detected