Added LFSR_WCOMPAT_GCKSUM wcompat flag

The gcksum isn't actually implemented yet, I mostly just wanted to
measure this code cost separately:

           code          stack          ctx
  before: 37768           2608          620
  after:  37796 (+0.1%)   2608 (+0.0%)  620 (+0.0%)

I may be procrastinating a little bit...
This commit is contained in:
Christopher Haster
2025-01-10 16:12:40 -06:00
parent b6ab323eb1
commit 7cd2d4dd11
2 changed files with 11 additions and 3 deletions

View File

@@ -152,7 +152,7 @@ FLAGS = [
('RCOMPAT', 'WRONLY',
0x00000002, "Reading is disallowed" ),
('RCOMPAT', 'GRM',
0x00000004, "May use a global-remove" ),
0x00000004, "Global-remove in use" ),
('RCOMPAT', 'MMOSS',
0x00000010, "May use an inlined mdir" ),
('RCOMPAT', 'MSPROUT',
@@ -177,6 +177,8 @@ FLAGS = [
0x00000001, "Non-standard filesystem format" ),
('WCOMPAT', 'RDONLY',
0x00000002, "Writing is disallowed" ),
('WCOMPAT', 'GCKSUM',
0x00000004, "Global-checksum in use" ),
('wcompat', 'OVERFLOW',
0x80000000, "Can't represent all flags" ),