From 6c1f98f52a8503ab065e981397775b371e13cb00 Mon Sep 17 00:00:00 2001 From: linzhecheng Date: Sun, 26 Apr 2026 13:55:32 +0800 Subject: [PATCH] feat: add new qos region type Signed-off-by: linzhecheng --- pkg/apis/config/v1alpha1/adminqos.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/apis/config/v1alpha1/adminqos.go b/pkg/apis/config/v1alpha1/adminqos.go index 2c68de3..2a7df1a 100644 --- a/pkg/apis/config/v1alpha1/adminqos.go +++ b/pkg/apis/config/v1alpha1/adminqos.go @@ -184,16 +184,16 @@ type QoSRegionType string const ( // QoSRegionTypeShare for each share pool - QoSRegionTypeShare QoSRegionType = "share" - + QoSRegionTypeShare QoSRegionType = "share" QoSRegionTypeDedicated QoSRegionType = "dedicated" - // QoSRegionTypeIsolation for each isolation pool QoSRegionTypeIsolation QoSRegionType = "isolation" + // QoSRegionEmptyNUMA for NUMAs without real workloads + QoSRegionEmptyNUMA QoSRegionType = "empty-numa" // QoSRegionTypeDedicatedNumaExclusive for each dedicated core with numa binding // and numa exclusive container - // deprecated, will be removed later, use QoSRegionTypeDedicated instead + // DEPRECATED, will be removed later, use QoSRegionTypeDedicated instead QoSRegionTypeDedicatedNumaExclusive QoSRegionType = "dedicated-numa-exclusive" )