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 eryksun
Recipients christian.heimes, corona10, eryksun, socketpair
Date 2021-01-30.20:50:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1612039843.43.0.317892897263.issue42939@roundup.psfhosted.org>
In-reply-to
Content
bpo-39533 is a related issue that seeks to support the Linux statx() system call. A statx record includes an stx_attributes field, which supports the following file attributes that can be set with chattr:

    [a]ppend    : STATX_ATTR_APPEND
    [c]ompressed: STATX_ATTR_COMPRESSED
    no [d]ump   : STATX_ATTR_NODUMP
    [i]mmutable : STATX_ATTR_IMMUTABLE
    da[x]       : STATX_ATTR_DAX (5.8)

and the following read-only file attributes that can be listed with lsattr:

    [E]ncrypted : STATX_ATTR_ENCRYPTED
    [V]erity    : STATX_ATTR_VERITY (5.5)
History
Date User Action Args
2021-01-30 20:50:43eryksunsetrecipients: + eryksun, christian.heimes, socketpair, corona10
2021-01-30 20:50:43eryksunsetmessageid: <1612039843.43.0.317892897263.issue42939@roundup.psfhosted.org>
2021-01-30 20:50:43eryksunlinkissue42939 messages
2021-01-30 20:50:43eryksuncreate