From b89ac9db78def244fca8a38636709a14ff39dcd9 Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 5 Oct 2016 15:52:36 +1100 Subject: [PATCH] stmhal/moduos: Implement total-number-of-blocks field in statvfs. --- stmhal/moduos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stmhal/moduos.c b/stmhal/moduos.c index 0a369ef380..c6afc22103 100644 --- a/stmhal/moduos.c +++ b/stmhal/moduos.c @@ -307,7 +307,7 @@ STATIC mp_obj_t os_statvfs(mp_obj_t path_in) { t->items[0] = MP_OBJ_NEW_SMALL_INT(fatfs->csize * 512); // f_bsize - block size t->items[1] = t->items[0]; // f_frsize - fragment size - t->items[2] = MP_OBJ_NEW_SMALL_INT(0); // f_blocks - total number of blocks + t->items[2] = MP_OBJ_NEW_SMALL_INT((fatfs->n_fatent - 2) * fatfs->csize); // f_blocks - total number of blocks t->items[3] = MP_OBJ_NEW_SMALL_INT(nclst); // f_bfree - number of free blocks t->items[4] = t->items[3]; // f_bavail - free blocks avail to unpriviledged users t->items[5] = MP_OBJ_NEW_SMALL_INT(0); // f_files - # inodes