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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3C3D0C433EF for ; Mon, 23 May 2022 08:38:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231903AbiEWIii (ORCPT ); Mon, 23 May 2022 04:38:38 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50784 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231855AbiEWIie (ORCPT ); Mon, 23 May 2022 04:38:34 -0400 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 85ED265C3 for ; Mon, 23 May 2022 01:38:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1653295111; 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=vZ4Hz1nQWB6CT/JwotTjgVD4R4kTe0eJe0FBrhrJfjY=; b=aDhZKd8YPuYdtXxoumAM6tHXBYBu84sC1agX5OAiSWH//17ja1iuj/BaHpDN+hNq5dXajY tO4w+VDLCgxMrdGsDHRmCAJz5wRgR7R3Q299JVLeIyFz7sp5BSFEdhaBNrMSsBgMGGN8bB QXbXgJQ6bwIr2aZW6YAJZG0rD5cR6Q4= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-352-zPbnne3sN6K7BlGwDsui3w-1; Mon, 23 May 2022 04:38:28 -0400 X-MC-Unique: zPbnne3sN6K7BlGwDsui3w-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.rdu2.redhat.com [10.11.54.7]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id D1DD7802803; Mon, 23 May 2022 08:38:27 +0000 (UTC) Received: from sirius.home.kraxel.org (unknown [10.39.192.41]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 8964A1400E75; Mon, 23 May 2022 08:38:27 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id 9899618000B4; Mon, 23 May 2022 10:38:25 +0200 (CEST) Date: Mon, 23 May 2022 10:38:25 +0200 From: Gerd Hoffmann To: Xiaoyao Li Cc: Paolo Bonzini , Isaku Yamahata , isaku.yamahata@intel.com, Daniel P =?utf-8?B?LiBCZXJyYW5nw6k=?= , Philippe =?utf-8?Q?Mathieu-Daud=C3=A9?= , Richard Henderson , "Michael S . Tsirkin" , Marcel Apfelbaum , Cornelia Huck , Marcelo Tosatti , Laszlo Ersek , Eric Blake , Connor Kuehl , erdemaktas@google.com, kvm@vger.kernel.org, qemu-devel@nongnu.org, seanjc@google.com Subject: Re: [RFC PATCH v4 05/36] i386/tdx: Implement tdx_kvm_init() to initialize TDX VM context Message-ID: <20220523083825.3opso4pkzd5g55lz@sirius.home.kraxel.org> References: <20220512031803.3315890-1-xiaoyao.li@intel.com> <20220512031803.3315890-6-xiaoyao.li@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220512031803.3315890-6-xiaoyao.li@intel.com> X-Scanned-By: MIMEDefang 2.85 on 10.11.54.7 Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org On Thu, May 12, 2022 at 11:17:32AM +0800, Xiaoyao Li wrote: > Introduce tdx_kvm_init() and invoke it in kvm_confidential_guest_init() > if it's a TDX VM. More initialization will be added later. > > Signed-off-by: Xiaoyao Li Acked-by: Gerd Hoffmann