mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-02-08 12:29:28 +00:00
24 lines
455 B
Go
24 lines
455 B
Go
|
package intelrdt
|
||
|
|
||
|
var cmtEnabled bool
|
||
|
|
||
|
// Check if Intel RDT/CMT is enabled.
|
||
|
func IsCMTEnabled() bool {
|
||
|
featuresInit()
|
||
|
return cmtEnabled
|
||
|
}
|
||
|
|
||
|
func getCMTNumaNodeStats(numaPath string) (*CMTNumaNodeStats, error) {
|
||
|
stats := &CMTNumaNodeStats{}
|
||
|
|
||
|
if enabledMonFeatures.llcOccupancy {
|
||
|
llcOccupancy, err := getIntelRdtParamUint(numaPath, "llc_occupancy")
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
stats.LLCOccupancy = llcOccupancy
|
||
|
}
|
||
|
|
||
|
return stats, nil
|
||
|
}
|