This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author David.Edelsohn
Recipients David.Edelsohn, Michael.Felt, xdegaye
Date 2018-01-02.15:27:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1514906856.59.0.467229070634.issue32390@psf.upfronthosting.co.za>
In-reply-to
Content
struct statvfs {
        ulong_t    f_bsize;     /* preferred file system block size          */
        ulong_t    f_frsize;    /* fundamental file system block size        */
        fsblkcnt_t f_blocks;    /* total # of blocks of f_frsize in fs       */ 
        fsblkcnt_t f_bfree;     /* total # of free blocks                    */
        fsblkcnt_t f_bavail;    /* # of blocks available to non super user   */
        fsfilcnt_t f_files;     /* total # of file nodes (inode in JFS)      */
        fsfilcnt_t f_ffree;     /* total # of free file nodes                */
        fsfilcnt_t f_favail;    /* # of nodes available to non super user    */
#ifdef _ALL_SOURCE
        fsid_t     f_fsid;      /* file system id                            */
#else
        ulong_t    f_fsid;      /* file system id                            */
#ifndef __64BIT__
        ulong_t    f_fstype;    /* file system type                          */
#endif
#endif  /* _ALL_SOURCE */
        char       f_basetype[_FSTYPSIZ]; /* Filesystem type name (eg. jfs)  */
        ulong_t    f_flag;      /* bit mask of flags                         */
        ulong_t    f_namemax;   /* maximum filename length                   */
        char       f_fstr[32];  /* filesystem-specific string */
        ulong_t    f_filler[16];/* reserved for future use                   */
};
History
Date User Action Args
2018-01-02 15:27:36David.Edelsohnsetrecipients: + David.Edelsohn, xdegaye, Michael.Felt
2018-01-02 15:27:36David.Edelsohnsetmessageid: <1514906856.59.0.467229070634.issue32390@psf.upfronthosting.co.za>
2018-01-02 15:27:36David.Edelsohnlinkissue32390 messages
2018-01-02 15:27:36David.Edelsohncreate