From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 659B71A5A2 for ; Tue, 9 Apr 2024 12:47:42 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=193.142.43.55 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712666864; cv=none; b=kkgbr3N1hS75Swo1p8hkUTZwLJ0ZCMxJG9+2hSkEbH/PA1ToLVQ/qkkY8vw8CHCxyjuPGfHg8VGDZLDbMi36hBMvocCJQyZ+IiIm6/FyDemdjWE9EAZLwx/WZOF2huvUy+c7ekn9HHiqb1d4DAGXM2oB45nCZrqI71oqZiZWGMs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712666864; c=relaxed/simple; bh=2BduV1MhlfmiZ71kHAagJQHGqP9OV0Fo9ytj3l6Rggo=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=ONl/W8ccbUdq09F4nWb1I8dRIvY0lR2367b0M4LF1zTWgwSYxOJ11VldZLnRsWwprhIU+UtI4bIT77xwmHNA4kbQD/1h5LayeNwBnYO12q3BMyeROmsZIGbwH0rikpSzQbhx+uc5hlKwH+cSwNVTlAQKIN8vYdrCpaj503A1bI0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linutronix.de; spf=pass smtp.mailfrom=linutronix.de; dkim=pass (2048-bit key) header.d=linutronix.de header.i=@linutronix.de header.b=PjuRp+1P; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b=uGTTSxsd; arc=none smtp.client-ip=193.142.43.55 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linutronix.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linutronix.de Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="PjuRp+1P"; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="uGTTSxsd" From: Thomas Gleixner DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1712666861; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=2BduV1MhlfmiZ71kHAagJQHGqP9OV0Fo9ytj3l6Rggo=; b=PjuRp+1PsPooC1A+rBMxCXHW1o1TxVrSyPkxZzrBU/VT43dD0pOYD1V1QwsmFSrLDWgLu0 lRa7xO6iZIVgigttImcJR6+CgMjsf+DdZRxyB2yebrQgZd4GzyMfskBgTbJCHF/E93Kc3R 8F9BNDWbQSdvAy7mVhTQB2GPV+UwKu0+YwB69CoUVKVRZfnxvs4g0p3AAa5crYyqjl3Rrp 6Wuz0LMGPBGGBeF1Uc9N4mNwhA3JKK705sKcH9bgHbJD9sEgIc/pgzMDtzzdnZTqWmFm/k VyEpCdBDU0Ak6uy0hR338Mrivfba1W0Zy4GOPuhlV0+zp06M4Gte34ZGxx7OQA== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1712666861; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=2BduV1MhlfmiZ71kHAagJQHGqP9OV0Fo9ytj3l6Rggo=; b=uGTTSxsdrHoUdfhbYmb/18f9HDWuINuL60/63D/5VH/boLnjQOs7LFGBK5jsPA6mIfnCyx diyatjGZfRztheBA== To: Tony Luck , x86@kernel.org Cc: linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 02/74] x86/cpu/vfm: Add new macros to work with (vendor/family/model) values In-Reply-To: References: <20240328163746.243023-1-tony.luck@intel.com> <20240328163746.243023-3-tony.luck@intel.com> Date: Tue, 09 Apr 2024 14:47:41 +0200 Message-ID: <87y19m66tu.ffs@tglx> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain On Mon, Apr 01 2024 at 11:24, Tony Luck wrote: > To avoid adding a slew of new macros for each new Intel CPU family > switch over from providing CPU model number #defines to a new > scheme that encodes vendor, family, and model in a single number. > > Signed-off-by: Tony Luck Reviewed-by: Thomas Gleixner