From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0DC24C433F5 for ; Sun, 17 Oct 2021 19:27:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id DA06260F23 for ; Sun, 17 Oct 2021 19:27:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1344520AbhJQT3P (ORCPT ); Sun, 17 Oct 2021 15:29:15 -0400 Received: from Galois.linutronix.de ([193.142.43.55]:33884 "EHLO galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1344515AbhJQT3O (ORCPT ); Sun, 17 Oct 2021 15:29:14 -0400 From: Thomas Gleixner DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1634498823; 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=ikovorioz8gMBGU+W9S1DqGvKVHkmoozZpCXJ/7SMaI=; b=DtDXrNM48X1P21mUbkHaIIJVPfN6mSJSBvEAk7IbRNXwwAui7OVZYSpvtf412mwID+Uz2t IEFnrVThEE3ru84hAz+uUiMwSZmQ2tDTbrYaO8Qvsf5YjB/1IKepkwgRrnktvU56GK8249 axUSDpydma0XzTJWt/ijho7VK/yGaGgwc8GoJ5Ig8owNoh31ntvUEU+R2G+x/3mjR9DP97 /YbJV/wyFXJ0pt341VPDOkrfwbEhmYDiSw8yGP6fFunU9anu7D+aoRNkOlxjIBiwoAZXHH KPJaycv8N3QyOPl+J4d4Dc4IMHphgR4AHJCeOpROv9RqVNaODI8riuOSNXqthA== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1634498823; 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=ikovorioz8gMBGU+W9S1DqGvKVHkmoozZpCXJ/7SMaI=; b=vkSfz2IdgstDleB7Vfhew1FOxT+FF2Gjrfe+XTcL4Gjh+3IvdwYZ+tlS5MyUv3utD4M8VJ IgxZoU+YYMA1lgDw== To: Kuppuswamy Sathyanarayanan , Ingo Molnar , Borislav Petkov , x86@kernel.org, Paolo Bonzini , David Hildenbrand , Andrea Arcangeli , Josh Poimboeuf , "H . Peter Anvin" Cc: Dave Hansen , Tony Luck , Dan Williams , Andi Kleen , Kirill Shutemov , Sean Christopherson , Kuppuswamy Sathyanarayanan , linux-kernel@vger.kernel.org Subject: Re: [PATCH v7 01/10] x86/io: Allow to override inX() and outX() implementation In-Reply-To: <20211005204136.1812078-2-sathyanarayanan.kuppuswamy@linux.intel.com> References: <20211005204136.1812078-1-sathyanarayanan.kuppuswamy@linux.intel.com> <20211005204136.1812078-2-sathyanarayanan.kuppuswamy@linux.intel.com> Date: Sun, 17 Oct 2021 21:27:02 +0200 Message-ID: <874k9f4fll.ffs@tglx> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Oct 05 2021 at 13:41, Kuppuswamy Sathyanarayanan wrote: > From: "Kirill A. Shutemov" > > The patch allows to override the implementation of the port IO git grep 'This patch' Documentation/process > helpers. TDX code will provide an implementation that redirect the > helpers to paravirt calls. Thanks, tglx