Re: [Xen-devel] [PATCH 4/6] x86/vmx: Simplify PAT handling during vcpu construction

2018-06-06 Thread Roger Pau Monné
On Mon, May 28, 2018 at 03:27:56PM +0100, Andrew Cooper wrote: > The host PAT value is a compile time constant, and doesn't need to be read out > of hardware. Merge this if block into the previous block, which has an > identical condition. > > Signed-off-by: Andrew Cooper Reviewed-by: Roger

Re: [Xen-devel] [PATCH 4/6] x86/vmx: Simplify PAT handling during vcpu construction

2018-06-05 Thread Tian, Kevin
> From: Andrew Cooper [mailto:andrew.coop...@citrix.com] > Sent: Monday, May 28, 2018 10:28 PM > > The host PAT value is a compile time constant, and doesn't need to be read > out > of hardware. Merge this if block into the previous block, which has an > identical condition. > > Signed-off-by:

Re: [Xen-devel] [PATCH 4/6] x86/vmx: Simplify PAT handling during vcpu construction

2018-05-29 Thread Jan Beulich
>>> On 28.05.18 at 16:27, wrote: > The host PAT value is a compile time constant, and doesn't need to be read out > of hardware. Merge this if block into the previous block, which has an > identical condition. > > Signed-off-by: Andrew Cooper Reviewed-by: Jan Beulich

[Xen-devel] [PATCH 4/6] x86/vmx: Simplify PAT handling during vcpu construction

2018-05-28 Thread Andrew Cooper
The host PAT value is a compile time constant, and doesn't need to be read out of hardware. Merge this if block into the previous block, which has an identical condition. Signed-off-by: Andrew Cooper --- CC: Jan Beulich CC: Jun Nakajima