Description: Upgrade nuttx according to the upstream community (upgrade some files to V12.2.0)

IssueNo: https://gitee.com/openharmony/third_party_NuttX/issues/I8SZE6
Feature or Bugfix: Bugfix
Binary Source:No
Signed-off-by: cuifeihe <cuifeihe@huawei.com>
This commit is contained in:
cuifeihe
2024-01-02 17:29:22 +08:00
parent 14a7c23a5f
commit c8685a95aa
12 changed files with 206 additions and 1929 deletions
+8 -8
View File
@@ -101,14 +101,14 @@
struct statfs
{
uint32_t f_type; /* Type of filesystem (see definitions above) */
size_t f_namelen; /* Maximum length of filenames */
size_t f_bsize; /* Optimal block size for transfers */
off_t f_blocks; /* Total data blocks in the file system of this size */
off_t f_bfree; /* Free blocks in the file system */
off_t f_bavail; /* Free blocks avail to non-superuser */
off_t f_files; /* Total file nodes in the file system */
off_t f_ffree; /* Free file nodes in the file system */
uint32_t f_type; /* Type of filesystem (see definitions above) */
size_t f_namelen; /* Maximum length of filenames */
size_t f_bsize; /* Optimal block size for transfers */
fsblkcnt_t f_blocks; /* Total data blocks in the file system of this size */
fsblkcnt_t f_bfree; /* Free blocks in the file system */
fsblkcnt_t f_bavail; /* Free blocks avail to non-superuser */
fsfilcnt_t f_files; /* Total file nodes in the file system */
fsfilcnt_t f_ffree; /* Free file nodes in the file system */
};
/****************************************************************************