We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 420c8cc commit ab5187bCopy full SHA for ab5187b
sysfs/vmstat_numa.go
@@ -86,6 +86,9 @@ type VMStat struct {
86
NrKernelMiscReclaimable uint64
87
NrFollPinAcquired uint64
88
NrFollPinReleased uint64
89
+ CompactStall uint64
90
+ CompactFail uint64
91
+ CompactSuccess uint64
92
}
93
94
func (fs FS) VMStatNUMA() (map[int]VMStat, error) {
@@ -242,6 +245,12 @@ func parseVMStatNUMA(r []byte) (VMStat, error) {
242
245
vmStat.NrFollPinAcquired = fv
243
246
case "nr_foll_pin_released":
244
247
vmStat.NrFollPinReleased = fv
248
+ case "compact_stall":
249
+ vmStat.CompactStall = fv
250
+ case "compact_fail":
251
+ vmStat.CompactFail = fv
252
+ case "compact_success":
253
+ vmStat.CompactSuccess = fv
254
255
256
0 commit comments