提交 4be62911 编写于 作者: P prife

show volume size in KBytes in df

上级 72bd8b99
...@@ -492,9 +492,10 @@ void mkfs(const char *fs_name, const char *device_name) ...@@ -492,9 +492,10 @@ void mkfs(const char *fs_name, const char *device_name)
} }
FINSH_FUNCTION_EXPORT(mkfs, make a file system); FINSH_FUNCTION_EXPORT(mkfs, make a file system);
void df(const char *path) int df(const char *path)
{ {
int result; int result;
long long cap;
struct statfs buffer; struct statfs buffer;
if (path == RT_NULL) if (path == RT_NULL)
...@@ -502,11 +503,16 @@ void df(const char *path) ...@@ -502,11 +503,16 @@ void df(const char *path)
else else
result = dfs_statfs(path, &buffer); result = dfs_statfs(path, &buffer);
if (result == 0) if (result != 0)
{ {
rt_kprintf("disk free: %d block[%d bytes per block]\n", rt_kprintf("dfs_statfs failed.\n");
buffer.f_bfree, buffer.f_bsize); return -1;
} }
cap = buffer.f_bsize * buffer.f_bfree / 1024;
rt_kprintf("disk free: %d KB [ %d block, %d bytes per block ]\n",
(unsigned long)cap, buffer.f_bfree, buffer.f_bsize);
return 0;
} }
FINSH_FUNCTION_EXPORT(df, get disk free); FINSH_FUNCTION_EXPORT(df, get disk free);
#endif #endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册