From 113bea2bc7080225ac58df6f437e6c926e120324 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Szulik?= Date: Tue, 17 Nov 2020 17:31:53 +0100 Subject: [PATCH] [Dependency: https://github.com/opencontainers/runtime-spec/pull/1076] config-linux: Add Intel RDT CMT and MBM Linux support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Szulik --- .../github.com/opencontainers/runtime-spec/specs-go/config.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vendor/github.com/opencontainers/runtime-spec/specs-go/config.go b/vendor/github.com/opencontainers/runtime-spec/specs-go/config.go index 5fceeb63533..86ae172e7cb 100644 --- a/vendor/github.com/opencontainers/runtime-spec/specs-go/config.go +++ b/vendor/github.com/opencontainers/runtime-spec/specs-go/config.go @@ -692,4 +692,7 @@ type LinuxIntelRdt struct { // The unit of memory bandwidth is specified in "percentages" by // default, and in "MBps" if MBA Software Controller is enabled. MemBwSchema string `json:"memBwSchema,omitempty"` + + // The flag to indicate if Intel RDT monitoring features (CMT and MBM) are enabled. + Monitoring bool `json:"monitoring,omitempty"` }