From: John Wolfe Date: Tue, 27 Jul 2021 17:37:24 +0000 (-0700) Subject: Common header file change not applicable to open-vm-tools. X-Git-Tag: stable-12.0.0~135 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8db9ab140d15787064745c4ba0497fc7d162ab84;p=thirdparty%2Fopen-vm-tools.git Common header file change not applicable to open-vm-tools. --- diff --git a/open-vm-tools/lib/include/x86cpuid.h b/open-vm-tools/lib/include/x86cpuid.h index f44393b84..b737354c6 100644 --- a/open-vm-tools/lib/include/x86cpuid.h +++ b/open-vm-tools/lib/include/x86cpuid.h @@ -1651,6 +1651,7 @@ CPUIDCheck(int32 eaxIn, int32 eaxInCheck, #define CPUID_MODEL_CANNONLAKE_66 0x66 // Cannon Lake #define CPUID_MODEL_ICELAKE_7E 0x7e // Ice Lake U/Y #define CPUID_MODEL_ICELAKE_6A 0x6a // Ice Lake SP (ICX) +#define CPUID_MODEL_ICELAKE_6C 0x6c // Ice Lake D #define CPUID_MODEL_TIGERLAKE_8C 0x8c // Tiger Lake #define CPUID_MODEL_KNM_85 0x85 // Knights Mill #define CPUID_MODEL_KABYLAKE_8E 0x8e // Kaby Lake U/Y QS @@ -2018,7 +2019,8 @@ CPUID_MODEL_IS_ICELAKE(uint32 v) // IN: %eax from CPUID with %eax=1. /* Assumes the CPU manufacturer is Intel. */ return CPUID_FAMILY_IS_P6(v) && (CPUID_EFFECTIVE_MODEL(v) == CPUID_MODEL_ICELAKE_7E || - CPUID_EFFECTIVE_MODEL(v) == CPUID_MODEL_ICELAKE_6A); + CPUID_EFFECTIVE_MODEL(v) == CPUID_MODEL_ICELAKE_6A || + CPUID_EFFECTIVE_MODEL(v) == CPUID_MODEL_ICELAKE_6C); } static INLINE Bool