Re: [Xen-devel] [PATCH v5 12/24] hvmloader: retrieve vNUMA information from hypervisor

2015-02-17 Thread Wei Liu
On Tue, Feb 17, 2015 at 11:36:06AM +, Jan Beulich wrote: > >>> On 12.02.15 at 20:44, wrote: > > Hvmloader issues XENMEM_get_vnumainfo hypercall and stores the > > information retrieved in scratch space for later use. > > > > Signed-off-by: Wei Liu > > Acked-by: Jan Beulich > > I take it t

Re: [Xen-devel] [PATCH v5 12/24] hvmloader: retrieve vNUMA information from hypervisor

2015-02-17 Thread Jan Beulich
>>> On 12.02.15 at 20:44, wrote: > Hvmloader issues XENMEM_get_vnumainfo hypercall and stores the > information retrieved in scratch space for later use. > > Signed-off-by: Wei Liu Acked-by: Jan Beulich I take it that these don't depend on the previous patches in this series, i.e. can be appl

Re: [Xen-devel] [PATCH v5 12/24] hvmloader: retrieve vNUMA information from hypervisor

2015-02-13 Thread Andrew Cooper
On 12/02/15 19:44, Wei Liu wrote: > Hvmloader issues XENMEM_get_vnumainfo hypercall and stores the > information retrieved in scratch space for later use. > > Signed-off-by: Wei Liu > Cc: Jan Beulich > --- > Changes in v5: > 1. Group scratch_alloc togeter. > 2. Use memset. > 3. Drop unnecessary "

[Xen-devel] [PATCH v5 12/24] hvmloader: retrieve vNUMA information from hypervisor

2015-02-12 Thread Wei Liu
Hvmloader issues XENMEM_get_vnumainfo hypercall and stores the information retrieved in scratch space for later use. Signed-off-by: Wei Liu Cc: Jan Beulich --- Changes in v5: 1. Group scratch_alloc togeter. 2. Use memset. 3. Drop unnecessary "return"; 4. Rebase onto Jan's errno ABI change. Chan