[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH] x86/mem_sharing: fix wrong field name used in 2c5119d
The arch_domain struct has "msr", not "msrs". Reported-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Signed-off-by: Tamas K Lengyel <tamas.lengyel@xxxxxxxxx> --- 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
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |