From: Boris Ostrovsky <boris.ostrovsky@oracle.com>
To: Doug Goldstein <cardoe@cardoe.com>,
David Vrabel <david.vrabel@citrix.com>,
konrad.wilk@oracle.com
Cc: xen-devel@lists.xenproject.org, mcgrof@suse.com,
linux-kernel@vger.kernel.org, roger.pau@citrix.com
Subject: Re: [Xen-devel] [PATCH v2 07/11] xen/hvmlite: Initialize context for secondary VCPUs
Date: Thu, 4 Feb 2016 14:08:41 -0500 [thread overview]
Message-ID: <56B3A1B9.9000809@oracle.com> (raw)
In-Reply-To: <56B34B01.50000@cardoe.com>
On 02/04/2016 07:58 AM, Doug Goldstein wrote:
> On 2/2/16 10:58 AM, Boris Ostrovsky wrote:
>> On 02/02/2016 11:21 AM, David Vrabel wrote:
>>> This needs some more description in the commit message.
>>>
>>>> --- a/arch/x86/xen/smp.c
>>>> +++ b/arch/x86/xen/smp.c
>>> [...]
>>>> + hctxt->cpu_regs.x86_32.cs_base = 0;
>>>> + hctxt->cpu_regs.x86_32.cs_limit = ~0u;
>>>> + hctxt->cpu_regs.x86_32.cs_ar = 0xc9b;
>>>> + hctxt->cpu_regs.x86_32.ds_base = 0;
>>>> + hctxt->cpu_regs.x86_32.ds_limit = ~0u;
>>>> + hctxt->cpu_regs.x86_32.ds_ar = 0xc93;
>>>> + hctxt->cpu_regs.x86_32.es_base = 0;
>>>> + hctxt->cpu_regs.x86_32.es_limit = ~0u;
>>>> + hctxt->cpu_regs.x86_32.es_ar = 0xc93;
>>>> + hctxt->cpu_regs.x86_32.ss_base = 0;
>>>> + hctxt->cpu_regs.x86_32.ss_limit = ~0u;
>>>> + hctxt->cpu_regs.x86_32.ss_ar = 0xc93;
>>>> + hctxt->cpu_regs.x86_32.tr_base = 0;
>>>> + hctxt->cpu_regs.x86_32.tr_limit = 0xff;
>>>> + hctxt->cpu_regs.x86_32.tr_ar = 0x8b;
>>> Lots of hard-coded values here. Should this be #defined somewhere?
>> We also don't need to set bases to zero since hctxt is kzalloc'd. I'll
>> remove that and add a comment.
>>
>> As for macros --- I couldn't find the bits defined symbolically anywhere
>> and since this is the only place this is used the macros would be local
>> here.
>>
>> -boris
>>
> It could be useful to have them defined locally if only to give them
> some more meaning by having a name rather than 0x8b. Just a thought.
Yes, I'll do that (or at least have a comment explaining the bits).
Looks like this we should wait with this series though until we figure
out APIC emulation status.
-boris
next prev parent reply other threads:[~2016-02-04 19:08 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-01 15:38 [PATCH v2 00/11] HVMlite domU support Boris Ostrovsky
2016-02-01 15:38 ` [PATCH v2 01/11] xen/hvmlite: Import hvmlite-related Xen public interfaces Boris Ostrovsky
2016-02-02 16:06 ` [Xen-devel] " David Vrabel
2016-02-01 15:38 ` [PATCH v2 02/11] xen/hvmlite: Bootstrap HVMlite guest Boris Ostrovsky
2016-02-02 16:39 ` [Xen-devel] " David Vrabel
2016-02-02 17:19 ` Boris Ostrovsky
2016-02-03 18:55 ` Luis R. Rodriguez
2016-02-03 20:11 ` Boris Ostrovsky
2016-02-03 23:40 ` Luis R. Rodriguez
2016-02-04 19:54 ` Boris Ostrovsky
2016-02-04 20:57 ` Luis R. Rodriguez
2016-02-04 22:28 ` Boris Ostrovsky
2016-02-03 20:52 ` [Xen-devel] " Andrew Cooper
2016-02-03 23:59 ` Luis R. Rodriguez
2016-02-04 0:08 ` Luis R. Rodriguez
2016-02-04 0:51 ` Andrew Cooper
2016-02-04 23:10 ` Luis R. Rodriguez
2016-04-05 22:02 ` Luis R. Rodriguez
2016-04-24 20:23 ` Borislav Petkov
2016-04-25 13:21 ` Boris Ostrovsky
2016-04-25 13:47 ` Borislav Petkov
2016-04-25 13:54 ` Boris Ostrovsky
2016-04-25 14:11 ` Borislav Petkov
2016-04-25 14:42 ` Boris Ostrovsky
2016-04-25 15:22 ` Borislav Petkov
2016-04-25 15:48 ` Boris Ostrovsky
2016-04-26 10:53 ` Borislav Petkov
2016-04-25 17:24 ` [Xen-devel] " David Vrabel
2016-02-01 15:38 ` [PATCH v2 03/11] xen/hvmlite: Initialize HVMlite kernel Boris Ostrovsky
2016-02-17 20:08 ` [Xen-devel] " Luis R. Rodriguez
2016-02-01 15:38 ` [PATCH v2 04/11] xen/hvmlite: Allow HVMlite guests delay initializing grant table Boris Ostrovsky
2016-02-02 16:13 ` [Xen-devel] " David Vrabel
2016-02-02 16:49 ` Boris Ostrovsky
2016-02-03 18:59 ` Luis R. Rodriguez
2016-02-01 15:38 ` [PATCH v2 05/11] xen/hvmlite: HVMlite guests always have PV devices Boris Ostrovsky
2016-02-01 15:38 ` [PATCH v2 06/11] xen/hvmlite: Prepare cpu_initialize_context() routine for HVMlite SMP Boris Ostrovsky
2016-02-02 16:16 ` [Xen-devel] " David Vrabel
2016-02-01 15:38 ` [PATCH v2 07/11] xen/hvmlite: Initialize context for secondary VCPUs Boris Ostrovsky
2016-02-02 16:21 ` [Xen-devel] " David Vrabel
2016-02-02 16:58 ` Boris Ostrovsky
2016-02-04 10:07 ` David Vrabel
2016-02-04 12:58 ` Doug Goldstein
2016-02-04 19:08 ` Boris Ostrovsky [this message]
2016-02-01 15:38 ` [PATCH v2 08/11] xen/hvmlite: Extend APIC operations for HVMlite guests Boris Ostrovsky
2016-02-04 10:04 ` [Xen-devel] " David Vrabel
2016-02-04 12:14 ` Roger Pau Monné
2016-02-04 14:01 ` Boris Ostrovsky
2016-02-01 15:38 ` [PATCH v2 09/11] xen/hvmlite: Use x86's default timer init " Boris Ostrovsky
2016-02-02 16:27 ` [Xen-devel] " David Vrabel
2016-02-02 17:01 ` Boris Ostrovsky
2016-02-01 15:38 ` [PATCH v2 10/11] xen/hvmlite: Boot secondary CPUs Boris Ostrovsky
2016-02-04 10:38 ` [Xen-devel] " David Vrabel
2016-02-04 13:51 ` Boris Ostrovsky
2016-02-01 15:38 ` [PATCH v2 11/11] xen/hvmlite: Enable CPU on-/offlining Boris Ostrovsky
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=56B3A1B9.9000809@oracle.com \
--to=boris.ostrovsky@oracle.com \
--cc=cardoe@cardoe.com \
--cc=david.vrabel@citrix.com \
--cc=konrad.wilk@oracle.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mcgrof@suse.com \
--cc=roger.pau@citrix.com \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).