[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] lock in vhpet
> -----Original Message----- > From: Andres Lagar-Cavilla [mailto:andres@xxxxxxxxxxxxxxxx] > Sent: Wednesday, April 25, 2012 11:34 AM > > Thanks. Can you please try this: > http://lists.xen.org/archives/html/xen-devel/2012-04/msg01861.html > > in conjunction with the patch below? > Andres > > diff -r 7a7443e80b99 xen/arch/x86/hvm/hvm.c > --- a/xen/arch/x86/hvm/hvm.c > +++ b/xen/arch/x86/hvm/hvm.c > @@ -2383,6 +2383,8 @@ static enum hvm_copy_result __hvm_copy( > > while ( todo > 0 ) > { > + struct page_info *pg; > + > count = min_t(int, PAGE_SIZE - (addr & ~PAGE_MASK), todo); > > if ( flags & HVMCOPY_virt ) > @@ -2427,7 +2429,11 @@ static enum hvm_copy_result __hvm_copy( > put_gfn(curr->domain, gfn); > return HVMCOPY_bad_gfn_to_mfn; > } > + > ASSERT(mfn_valid(mfn)); > + pg = mfn_to_page(mfn); > + ASSERT(get_page(pg, curr->domain)); > + put_gfn(curr->domain, gfn); > > p = (char *)map_domain_page(mfn) + (addr & ~PAGE_MASK); > > @@ -2457,7 +2463,7 @@ static enum hvm_copy_result __hvm_copy( > addr += count; > buf += count; > todo -= count; > - put_gfn(curr->domain, gfn); > + put_page(pg); > } > > return HVMCOPY_okay; No, it doesn't work. On the contrary, the competition is more fiercer than before: Here is the p2m_lock competition with 10 seconds with 16 vcpus: lock: 560583(00000000:83362735), block: 321453(00000009:364CA49B) yang _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |