blob: 49318447844ab06a50adc419941e12354c5e5269 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package btrfsitem
import (
"lukeshu.com/btrfs-tools/pkg/binstruct"
)
type FreeSpaceInfo struct { // FREE_SPACE_INFO=198
ExtentCount int32 `bin:"off=0, siz=4"`
Flags uint32 `bin:"off=4, siz=4"`
binstruct.End `bin:"off=8"`
}
|