[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v4 2/7] x86/HVM: rename a variable in __hvm_copy()
This is to reflect its actual purpose. Also use in a 2nd place. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> --- v4: New. --- a/xen/arch/x86/hvm/hvm.c +++ b/xen/arch/x86/hvm/hvm.c @@ -3255,9 +3255,9 @@ static enum hvm_translation_result __hvm while ( todo > 0 ) { enum hvm_translation_result res; - paddr_t gpa = addr & ~PAGE_MASK; + unsigned int pgoff = addr & ~PAGE_MASK; - count = min_t(int, PAGE_SIZE - gpa, todo); + count = min_t(int, PAGE_SIZE - pgoff, todo); res = hvm_translate_get_page(v, addr, flags & HVMCOPY_linear, pfec, pfinfo, &page, &gfn, &p2mt); @@ -3279,7 +3279,7 @@ static enum hvm_translation_result __hvm return HVMTRANS_need_retry; } - p = (char *)__map_domain_page(page) + (addr & ~PAGE_MASK); + p = __map_domain_page(page) + pgoff; if ( flags & HVMCOPY_to_guest ) { _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |