feat: Add documentation to ext2.go

This commit is contained in:
Myzel394 2024-08-04 19:21:00 +02:00
parent 32903ad94b
commit 62b9947ddc
No known key found for this signature in database
GPG Key ID: DEC4AAB876F73185

View File

@ -1,3 +1,4 @@
// This file contains documentation for ext2 filesystem options
package commondocumentation
import docvalues "config-lsp/doc-values"
@ -158,4 +159,12 @@ var Ext2DocumentationEnums = []docvalues.EnumString{
"orlov",
"Use Orlov block allocator for new inodes (default)",
),
docvalues.CreateEnumStringWithDoc(
"user_xattr",
"Support \"user.\" extended attributes",
),
docvalues.CreateEnumStringWithDoc(
"nouser_xattr",
"Do not support \"user.\" extended attributes",
),
}