ntfs_fuse_statfs: fix f_bsize comment about optimal transfer block size

master
szaka 2008-12-12 22:14:41 +00:00
parent 31026fb7b0
commit 9dc9eb60e9
1 changed files with 4 additions and 1 deletions

View File

@ -260,7 +260,10 @@ static int ntfs_fuse_statfs(const char *path __attribute__((unused)),
if (!vol)
return -ENODEV;
/* File system block size, used for optimal transfer block size. */
/*
* File system block size. Used to calculate used/free space by df.
* Incorrectly documented as "optimal transfer block size".
*/
sfs->f_bsize = vol->cluster_size;
/* Fundamental file system block size, used as the unit. */