[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <190d38fc17268badc401b7de1a87f09acd0b1a2a.camel@intel.com>
Date: Mon, 19 Jun 2023 23:58:26 +0000
From: "Huang, Kai" <kai.huang@...el.com>
To: "kvm@...r.kernel.org" <kvm@...r.kernel.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"david@...hat.com" <david@...hat.com>
CC: "Hansen, Dave" <dave.hansen@...el.com>,
"Luck, Tony" <tony.luck@...el.com>,
"bagasdotme@...il.com" <bagasdotme@...il.com>,
"ak@...ux.intel.com" <ak@...ux.intel.com>,
"Wysocki, Rafael J" <rafael.j.wysocki@...el.com>,
"kirill.shutemov@...ux.intel.com" <kirill.shutemov@...ux.intel.com>,
"Christopherson,, Sean" <seanjc@...gle.com>,
"Chatre, Reinette" <reinette.chatre@...el.com>,
"pbonzini@...hat.com" <pbonzini@...hat.com>,
"tglx@...utronix.de" <tglx@...utronix.de>,
"linux-mm@...ck.org" <linux-mm@...ck.org>,
"Yamahata, Isaku" <isaku.yamahata@...el.com>,
"peterz@...radead.org" <peterz@...radead.org>,
"Shahar, Sagi" <sagis@...gle.com>,
"imammedo@...hat.com" <imammedo@...hat.com>,
"Gao, Chao" <chao.gao@...el.com>,
"Brown, Len" <len.brown@...el.com>,
"sathyanarayanan.kuppuswamy@...ux.intel.com"
<sathyanarayanan.kuppuswamy@...ux.intel.com>,
"Huang, Ying" <ying.huang@...el.com>,
"Williams, Dan J" <dan.j.williams@...el.com>
Subject: Re: [PATCH v11 02/20] x86/virt/tdx: Detect TDX during kernel boot
[...]
> > + /*
> > + * Just use the first TDX KeyID as the 'global KeyID' and
> > + * leave the rest for TDX guests.
> > + */
> > + tdx_global_keyid = tdx_keyid_start;
> > + tdx_guest_keyid_start = ++tdx_keyid_start;
> > + tdx_nr_guest_keyids = --nr_tdx_keyids;
>
> tdx_guest_keyid_start = tdx_keyid_start + 1;
> tdx_nr_guest_keyids = nr_tdx_keyids - 1;
>
> Easier to get, because the modified values are unused.
Will do.
>
> I'd probably avoid the "tdx" terminology in the local variables
> ("keid_start", "nr_keyids") to give a better hint what the global
> variables are (tdx_*), but just a personal preference.
>
Yeah in general I agree but I chose to have "tdx_*" because it allows me to
easily distinguish function local variables and static variables, especially
this file contains more than ~1500 LoC (it also makes life easier to name the
local variables). So I'd like to keep the "tdx_*".
>
> Apart from that,
>
> Reviewed-by: David Hildenbrand <david@...hat.com>
>
Thanks!
Powered by blists - more mailing lists