Received: by 2002:a05:6a11:4021:0:0:0:0 with SMTP id ky33csp4806264pxb; Tue, 28 Sep 2021 04:40:48 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyp0opFECIeJR6PGY/EnzQ45uniboBe30RkhBPawi/68c808mrY4qhLBf7TCfo0SqgvvPQx X-Received: by 2002:a17:90a:49:: with SMTP id 9mr5012596pjb.80.1632829247849; Tue, 28 Sep 2021 04:40:47 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1632829247; cv=none; d=google.com; s=arc-20160816; b=xNKDOqgk3kcx8hzS1B8/Qcgd5TZc6ftzdmkBSbooOMMyL8yziAoWH8bVHedahJOs+P vdfDjDm1Nu2xQfHzuDNP1fHb24oCGGBqMoahI4Hf7EHXL/+ITX30iTY1aXIoe4o1vG7R b4/taf74foDGD/vMBbVpoen/WSJzuBHkAm6rTULwX51GE/3APiechaYQi1vOljZ5bTj4 eLn0a4YMq172w8zZ0AsLDk732XdTlZLGabR/jfSZecq5BW5BwrUyBoX5M8b20MV2qaVJ NttBx6Ixx9Jh9KcALgvqL2DH+jFR9h9di1kUONu8wsjl3bQxDWYlZ8TcMW2h5bvu5GWk ghRw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:in-reply-to:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=JLosmZQ8EKp13neIfo6Qus6E3XYPaRqtx2S8tCyg89c=; b=kQlimBCFAUQOsHaTHTz3Cam+a4bAiSxfMuW/sxsiURI8+JNSeBkgx5ZM0CxlOAfqat xa71srkCUdrHTaOSqjf8K6G6qNHNbiGQ1Duz3dgRII+TavT/8fmnmAMBM3VD5jrlzkiL I3pD3CQsVX7EwnS1TIv7fheBqZz+dv2hOe0rhl7obUthhsSCOF4XnBBTqnJTpcQSNnV2 kcZjjsXPCoxwmnirdYPYkf6bCSAWlC6KYQXJWgJ2PqJJuD4zJCB3ErQM6e5guCOppKX8 Y98ovNDQA45jOUbJ056CAwyPk636ECZMyzqyWEq1CVu2v1AK9bmzPmeL/BC53z8Xo/De jXXw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=8bytes.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id s66si24530393pfb.288.2021.09.28.04.40.33; Tue, 28 Sep 2021 04:40:47 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=8bytes.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240385AbhI1LlP (ORCPT + 99 others); Tue, 28 Sep 2021 07:41:15 -0400 Received: from 8bytes.org ([81.169.241.247]:39916 "EHLO theia.8bytes.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240362AbhI1LlN (ORCPT ); Tue, 28 Sep 2021 07:41:13 -0400 Received: by theia.8bytes.org (Postfix, from userid 1000) id D2D90208; Tue, 28 Sep 2021 13:39:32 +0200 (CEST) Date: Tue, 28 Sep 2021 13:39:31 +0200 From: Joerg Roedel To: Kuppuswamy Sathyanarayanan Cc: Thomas Gleixner , Ingo Molnar , Borislav Petkov , x86@kernel.org, Paolo Bonzini , Juergen Gross , Deep Shah , VMware Inc , Vitaly Kuznetsov , Wanpeng Li , Jim Mattson , Peter H Anvin , Dave Hansen , Tony Luck , Dan Williams , Andi Kleen , Kirill Shutemov , Sean Christopherson , Kuppuswamy Sathyanarayanan , linux-kernel@vger.kernel.org Subject: Re: [PATCH v6 03/11] x86/cpufeatures: Add TDX Guest CPU feature Message-ID: References: <20210903172812.1097643-1-sathyanarayanan.kuppuswamy@linux.intel.com> <20210903172812.1097643-4-sathyanarayanan.kuppuswamy@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210903172812.1097643-4-sathyanarayanan.kuppuswamy@linux.intel.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Sep 03, 2021 at 10:28:04AM -0700, Kuppuswamy Sathyanarayanan wrote: > +++ b/arch/x86/kernel/tdx.c > @@ -0,0 +1,29 @@ > +// SPDX-License-Identifier: GPL-2.0 > +/* Copyright (C) 2020 Intel Corporation */ > + > +#undef pr_fmt > +#define pr_fmt(fmt) "x86/tdx: " fmt The 'x86' is implicit already and don't need to be in the printk prefix. How about just 'tdx' or 'intel-tdx' instead?