]> xenbits.xensource.com Git - people/jgross/xen.git/commitdiff
VT-d: use clear_page() in alloc_pgtable_maddr()
authorJan Beulich <jbeulich@suse.com>
Fri, 17 Jul 2020 15:49:29 +0000 (17:49 +0200)
committerJan Beulich <jbeulich@suse.com>
Fri, 17 Jul 2020 15:49:29 +0000 (17:49 +0200)
For full pages this is (meant to be) more efficient. Also change the
type and reduce the scope of the involved local variable.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Roger Pau Monné <roger.pau@citrix.com>
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
xen/drivers/passthrough/vtd/iommu.c

index ef2fea0a0e69ae82a38d221ce40761dae27823b2..01dc44477141d483ee2beb1a5ce1a9526d849745 100644 (file)
@@ -199,7 +199,6 @@ static void sync_cache(const void *addr, unsigned int size)
 uint64_t alloc_pgtable_maddr(unsigned long npages, nodeid_t node)
 {
     struct page_info *pg, *cur_pg;
-    u64 *vaddr;
     unsigned int i;
 
     pg = alloc_domheap_pages(NULL, get_order_from_pages(npages),
@@ -210,8 +209,9 @@ uint64_t alloc_pgtable_maddr(unsigned long npages, nodeid_t node)
     cur_pg = pg;
     for ( i = 0; i < npages; i++ )
     {
-        vaddr = __map_domain_page(cur_pg);
-        memset(vaddr, 0, PAGE_SIZE);
+        void *vaddr = __map_domain_page(cur_pg);
+
+        clear_page(vaddr);
 
         if ( (iommu_ops.init ? &iommu_ops : &vtd_ops)->sync_cache )
             sync_cache(vaddr, PAGE_SIZE);