From 2859f8e602d6e0a146d0dc6b340b2bbc953978ae Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Tue, 26 Aug 2025 12:41:38 +0300 Subject: [PATCH] pkg/cdi: drop deprecated RDT fields Complements 3ebd90eabc93bb2c24a706919528627058680bbd. Signed-off-by: Markus Lehtonen --- pkg/cdi/oci.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkg/cdi/oci.go b/pkg/cdi/oci.go index e7d18cd..b0d37d5 100644 --- a/pkg/cdi/oci.go +++ b/pkg/cdi/oci.go @@ -56,8 +56,6 @@ func (d *DeviceNode) toOCI() spec.LinuxDevice { // toOCI returns the opencontainers runtime Spec LinuxIntelRdt for this IntelRdt config. func (i *IntelRdt) toOCI() *spec.LinuxIntelRdt { return &spec.LinuxIntelRdt{ - ClosID: i.ClosID, - L3CacheSchema: i.L3CacheSchema, - MemBwSchema: i.MemBwSchema, + ClosID: i.ClosID, } }