Re: [Xen-devel] [PATCH 26/34] x86/mm/shadow: split out HVM only code

2018-08-23 Thread Tim Deegan
At 16:12 +0100 on 17 Aug (1534522364), Wei Liu wrote: > Move the code previously enclosed in CONFIG_HVM into its own file. > > Note that although some code explicitly check is_hvm_*, which hints it > can be used for PV too, I can't find a code path that would be the > case. > > Signed-off-by: Wei

Re: [Xen-devel] [PATCH 26/34] x86/mm/shadow: split out HVM only code

2018-08-21 Thread Jan Beulich
>>> On 17.08.18 at 17:12, wrote: > --- /dev/null > +++ b/xen/arch/x86/mm/shadow/hvm.c > @@ -0,0 +1,590 @@ > + > +/** > + * arch/x86/mm/shadow/hvm.c > + * > + * Shadow code that does not need to be multiply compiled and is

[Xen-devel] [PATCH 26/34] x86/mm/shadow: split out HVM only code

2018-08-17 Thread Wei Liu
Move the code previously enclosed in CONFIG_HVM into its own file. Note that although some code explicitly check is_hvm_*, which hints it can be used for PV too, I can't find a code path that would be the case. Signed-off-by: Wei Liu --- Can be squashed into previous patch if that's preferable.