The arch_domain struct has "msr", not "msrs". Reported-by: Andrew Cooper <andrew.coop...@citrix.com> Signed-off-by: Tamas K Lengyel <tamas.leng...@intel.com> --- I've build tested originally with "msr" but typod "msrs" when creating the patch that was sent in. Sorry for the noise. --- xen/arch/x86/mm/mem_sharing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/xen/arch/x86/mm/mem_sharing.c b/xen/arch/x86/mm/mem_sharing.c index a98a1709c2..c8a6d11b90 100644 --- a/xen/arch/x86/mm/mem_sharing.c +++ b/xen/arch/x86/mm/mem_sharing.c @@ -1781,7 +1781,7 @@ static int fork(struct domain *cd, struct domain *d) domain_pause(d); cd->max_pages = d->max_pages; *cd->arch.cpuid = *d->arch.cpuid; - *cd->arch.msrs = *d->arch.msrs; + *cd->arch.msr = *d->arch.msr; cd->parent = d; } -- 2.25.1