scripts: dbgflags.py: Better indented *COMPAT flags

Just to avoid the awkward escaped newlines when possible. Note this has
no effect on the output of dbgflags.py.
This commit is contained in:
Christopher Haster
2025-10-22 15:10:31 -05:00
parent b49d9e9ece
commit 4dced81abc

View File

@ -178,36 +178,30 @@ t_CKPOINTED = 0x02000000 # i- Filesystem ckpointed during traversal
alloc_ERASE = 0x00000001 # i- Please erase the block alloc_ERASE = 0x00000001 # i- Please erase the block
# Read-compat flags # Read-compat flags
RCOMPAT_NONSTANDARD \ RCOMPAT_NONSTANDARD = 0x00000001 # -- Non-standard filesystem format
= 0x00000001 # -- Non-standard filesystem format RCOMPAT_WRONLY = 0x00000002 # -- Reading is disallowed
RCOMPAT_WRONLY = 0x00000002 # -- Reading is disallowed RCOMPAT_BMOSS = 0x00000010 # -- Files may use inlined data
RCOMPAT_BMOSS = 0x00000010 # -- Files may use inlined data RCOMPAT_BSPROUT = 0x00000020 # -- Files may use block pointers
RCOMPAT_BSPROUT = 0x00000020 # -- Files may use block pointers RCOMPAT_BSHRUB = 0x00000040 # -- Files may use inlined btrees
RCOMPAT_BSHRUB = 0x00000040 # -- Files may use inlined btrees RCOMPAT_BTREE = 0x00000080 # -- Files may use btrees
RCOMPAT_BTREE = 0x00000080 # -- Files may use btrees RCOMPAT_MMOSS = 0x00000100 # -- May use an inlined mdir
RCOMPAT_MMOSS = 0x00000100 # -- May use an inlined mdir RCOMPAT_MSPROUT = 0x00000200 # -- May use an mdir pointer
RCOMPAT_MSPROUT = 0x00000200 # -- May use an mdir pointer RCOMPAT_MSHRUB = 0x00000400 # -- May use an inlined mtree
RCOMPAT_MSHRUB = 0x00000400 # -- May use an inlined mtree RCOMPAT_MTREE = 0x00000800 # -- May use an mdir btree
RCOMPAT_MTREE = 0x00000800 # -- May use an mdir btree RCOMPAT_GRM = 0x00001000 # -- Global-remove in use
RCOMPAT_GRM = 0x00001000 # -- Global-remove in use rcompat_OVERFLOW = 0x80000000 # i- Can't represent all flags
rcompat_OVERFLOW \
= 0x80000000 # i- Can't represent all flags
# Write-compat flags # Write-compat flags
WCOMPAT_NONSTANDARD \ WCOMPAT_NONSTANDARD = 0x00000001 # -- Non-standard filesystem format
= 0x00000001 # -- Non-standard filesystem format WCOMPAT_RDONLY = 0x00000002 # -- Writing is disallowed
WCOMPAT_RDONLY = 0x00000002 # -- Writing is disallowed WCOMPAT_DIR = 0x00000010 # -- Directory file types in use
WCOMPAT_DIR = 0x00000010 # -- Directory file types in use WCOMPAT_GCKSUM = 0x00001000 # -- Global-checksum in use
WCOMPAT_GCKSUM = 0x00001000 # -- Global-checksum in use WCOMPAT_GBMAP = 0x00002000 # -- Global on-disk block-map in use
WCOMPAT_GBMAP = 0x00002000 # -- Global on-disk block-map in use wcompat_OVERFLOW = 0x80000000 # i- Can't represent all flags
wcompat_OVERFLOW \
= 0x80000000 # i- Can't represent all flags
# Optional-compat flags # Optional-compat flags
OCOMPAT_NONSTANDARD \ OCOMPAT_NONSTANDARD = 0x00000001 # -- Non-standard filesystem format
= 0x00000001 # -- Non-standard filesystem format ocompat_OVERFLOW = 0x80000000 # i- Can't represent all flags
ocompat_OVERFLOW \
= 0x80000000 # i- Can't represent all flags
# self-parsing prefixes # self-parsing prefixes