Lines Matching defs:info
1319 int fatfs_statfs(struct Mount *mnt, struct statfs *info)
1326 info->f_type = MSDOS_SUPER_MAGIC;
1328 info->f_bsize = fs->ssize * fs->csize;
1330 info->f_bsize = FF_MIN_SS * fs->csize;
1332 info->f_blocks = fs->n_fatent;
1341 info->f_bfree = fs->free_clst;
1342 info->f_bavail = fs->free_clst;
1347 info->f_namelen = FF_MAX_LFN;
1350 info->f_namelen = (8 + 1 + 3);
1352 info->f_fsid.__val[0] = MSDOS_SUPER_MAGIC;
1353 info->f_fsid.__val[1] = 1;
1354 info->f_frsize = SS(fs) * fs->csize;
1355 info->f_files = 0;
1356 info->f_ffree = 0;
1357 info->f_flags = mnt->mountFlags;
1743 /* update new dir entry with old info */
1800 /* If there is no MBR before, the partition info needs to be changed after mkfs */