[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] lock in vhpet
>>> On 25.04.12 at 05:34, "Andres Lagar-Cavilla" <andres@xxxxxxxxxxxxxxxx> >>> wrote: > --- 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)); You really shouldn't ever put expressions with (side) effects inside an ASSERT(), not even for debugging patches that you want others to apply (you're of course free to shoot yourself in the foot ;-) ), as it just won't work in non-debug builds. Jan > + 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; _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |