diff --git a/components/dfs/src/dfs.c b/components/dfs/src/dfs.c index 459ab52793cb98591a1535a8a18d0d8c9977abc4..e7fd7394cf6a3d81fda05593e48291ee7b25b6dd 100644 --- a/components/dfs/src/dfs.c +++ b/components/dfs/src/dfs.c @@ -197,6 +197,7 @@ int fd_new(void) if (idx == fdt->maxfd) { idx = -(1 + DFS_FD_OFFSET); + dbg_log(DBG_ERROR, "DFS fd new is failed! Could not found an empty fd entry."); goto __result; } diff --git a/components/dfs/src/dfs_fs.c b/components/dfs/src/dfs_fs.c index 2090a7e363df23c608fc760bc31e79592b273a79..66740d647e571b623dc4ae788c02e2a938738028 100644 --- a/components/dfs/src/dfs_fs.c +++ b/components/dfs/src/dfs_fs.c @@ -69,6 +69,7 @@ int dfs_register(const struct dfs_filesystem_ops *ops) if (empty == NULL) { rt_set_errno(-ENOSPC); + dbg_log(DBG_ERROR, "There is no space to register this file system (%d).\n", ops->name); ret = -1; } else if (ret == RT_EOK) @@ -317,6 +318,7 @@ int dfs_mount(const char *device_name, if ((fs == NULL) && (iter == &filesystem_table[DFS_FILESYSTEMS_MAX])) { rt_set_errno(-ENOSPC); + dbg_log(DBG_ERROR, "There is no space to mount this file system (%s).\n", filesystemtype); goto err1; } @@ -449,6 +451,7 @@ int dfs_mkfs(const char *fs_name, const char *device_name) if (dev_id == NULL) { rt_set_errno(-ENODEV); + dbg_log(DBG_ERROR, "Device (%s) was not found\n", device_name); return -1; } @@ -469,6 +472,7 @@ int dfs_mkfs(const char *fs_name, const char *device_name) const struct dfs_filesystem_ops *ops = filesystem_operation_table[index]; if (ops->mkfs == NULL) { + dbg_log(DBG_ERROR, "The file system (%s) mkfs function was not implement\n", fs_name); rt_set_errno(-ENOSYS); return -1; } @@ -476,7 +480,8 @@ int dfs_mkfs(const char *fs_name, const char *device_name) return ops->mkfs(dev_id); } - rt_kprintf("Can not find the file system which named as %s.\n", fs_name); + dbg_log(DBG_ERROR, "File system (%s) was not found.\n", fs_name); + return -1; }