Re: [PATCH v2] target/i386: Add ARCH_CAPABILITIES related bits into Icelake-Server CPU model

2020-03-23 Thread Tao Xu
On 3/24/2020 2:39 AM, Eduardo Habkost wrote: On Mon, Mar 23, 2020 at 10:58:16AM +0800, Xiaoyao Li wrote: On 3/23/2020 10:32 AM, Tao Xu wrote: Hi Xiaoyao, May be you can add .note for this new version. for example: +    .version = 3, +    .note =

Re: [PATCH v2] target/i386: Add ARCH_CAPABILITIES related bits into Icelake-Server CPU model

2020-03-23 Thread Eduardo Habkost
On Mon, Mar 23, 2020 at 10:58:16AM +0800, Xiaoyao Li wrote: > On 3/23/2020 10:32 AM, Tao Xu wrote: > > Hi Xiaoyao, > > > > May be you can add .note for this new version. > > > > for example: > > > > +    .version = 3, > > +    .note = "ARCH_CAPABILITIES", > > +   

Re: [PATCH v2] target/i386: Add ARCH_CAPABILITIES related bits into Icelake-Server CPU model

2020-03-22 Thread Xiaoyao Li
On 3/23/2020 10:32 AM, Tao Xu wrote: Hi Xiaoyao, May be you can add .note for this new version. for example: +    .version = 3, +    .note = "ARCH_CAPABILITIES", +    .props = (PropValue[]) { Hi Paolo and Eduardo, Need I spin a new version to add the

Re: [PATCH v2] target/i386: Add ARCH_CAPABILITIES related bits into Icelake-Server CPU model

2020-03-22 Thread Tao Xu
Hi Xiaoyao, May be you can add .note for this new version. for example: +.version = 3, +.note = "ARCH_CAPABILITIES", +.props = (PropValue[]) { On 3/16/2020 5:56 PM, Xiaoyao Li wrote: Current Icelake-Server CPU model lacks all the features

[PATCH v2] target/i386: Add ARCH_CAPABILITIES related bits into Icelake-Server CPU model

2020-03-16 Thread Xiaoyao Li
Current Icelake-Server CPU model lacks all the features enumerated by MSR_IA32_ARCH_CAPABILITIES. Add them, so that guest of "Icelake-Server" can see all of them. Signed-off-by: Xiaoyao Li --- v2: - Add it as a new version. --- target/i386/cpu.c | 13 + 1 file changed, 13