|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] [PATCH] Fix domheap structure allocation when NUMA=on
Jan Beulich wrote:
"Yang, Xiaowei" <xiaowei.yang@xxxxxxxxx> 20.03.09 06:05 >>>
DIRECTMAP_VIRT_END can't be passed to virt_to_mfn(), as it's just beyond
direct map boundary and triggers ASSERT very early at boot time.
While I agree to the analysis, I would think that this
+ mfn + needed <= virt_to_mfn(DIRECTMAP_VIRT_END - PAGE_SIZE) )
should rather be
+ mfn + needed <= virt_to_mfn(DIRECTMAP_VIRT_END - 1) + 1 )
virt_to_mfn(DIRECTMAP_VIRT_END - 1) is equal to
virt_to_mfn(DIRECTMAP_VIRT_END - PAGE_SIZE). Why +1? We use '<=' here.
Thanks,
xiaowei
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|