Skip to content

Commit 3c3dfc4

Browse files
committed
Add descriptions to statvfs_Result members
1 parent 37968fe commit 3c3dfc4

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

Doc/library/os.rst

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3831,14 +3831,38 @@ features:
38313831
See :manpage:`statvfs(3)` for the meaning of each member.
38323832

38333833
.. attribute:: f_bsize
3834+
3835+
Block size.
3836+
38343837
.. attribute:: f_frsize
3838+
3839+
Fragment size.
3840+
38353841
.. attribute:: f_blocks
3842+
3843+
Number of :attr:`~startvfs_result.f_frsize` sized blocks the filesystem
3844+
can contain.
3845+
38363846
.. attribute:: f_bfree
3847+
3848+
Number of free blocks.
3849+
38373850
.. attribute:: f_bavail
3851+
3852+
Number of free blocks for unprivileged users.
3853+
38383854
.. attribute:: f_files
3855+
3856+
Number of file entries, inodes, the filesystem can contain.
3857+
38393858
.. attribute:: f_ffree
3859+
3860+
Number of free files entries.
3861+
38403862
.. attribute:: f_favail
38413863

3864+
Number of free file entries for unprivileged users.
3865+
38423866
.. attribute:: f_flag
38433867

38443868
Bit-mask of mount flags. The following flags are defined:
@@ -3849,8 +3873,14 @@ features:
38493873

38503874
.. attribute:: f_namemax
38513875

3876+
Filesystem max filename length. OS specific limitations such as
3877+
:ref:`Windows MAX_PATH <max-path>` and those described in Linux
3878+
:manpage:`pathname(7)` may exist.
3879+
38523880
.. attribute:: f_fsid
38533881

3882+
Filesystem ID.
3883+
38543884
.. versionadded:: 3.7
38553885

38563886

0 commit comments

Comments
 (0)