File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -627,6 +627,18 @@ func (g *Generator) SetLinuxIntelRdtClosID(clos string) {
627627 g .Config .Linux .IntelRdt .ClosID = clos
628628}
629629
630+ // SetLinuxIntelRdtEnableMonitoring sets g.Config.Linux.IntelRdt.EnableMonitoring
631+ func (g * Generator ) SetLinuxIntelRdtEnableMonitoring (value bool ) {
632+ g .initConfigLinuxIntelRdt ()
633+ g .Config .Linux .IntelRdt .EnableMonitoring = value
634+ }
635+
636+ // SetLinuxIntelRdtSchemata sets g.Config.Linux.IntelRdt.Schemata
637+ func (g * Generator ) SetLinuxIntelRdtSchemata (schemata []string ) {
638+ g .initConfigLinuxIntelRdt ()
639+ g .Config .Linux .IntelRdt .Schemata = slices .Clone (schemata )
640+ }
641+
630642// SetLinuxIntelRdtL3CacheSchema sets g.Config.Linux.IntelRdt.L3CacheSchema
631643func (g * Generator ) SetLinuxIntelRdtL3CacheSchema (schema string ) {
632644 g .initConfigLinuxIntelRdt ()
You can’t perform that action at this time.
0 commit comments