xen: fix build
authorOlivier Matz <olivier.matz@6wind.com>
Mon, 11 Jul 2016 10:20:25 +0000 (12:20 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 11 Jul 2016 16:47:20 +0000 (18:47 +0200)
Fix the compilation with CONFIG_RTE_LIBRTE_XEN_DOM0=y, by correcting the
typo in variable names.

Fixes: 8dab48370129 ("xen: return machine address without knowing memseg id")

Reported-by: Huilong Xu <huilongx.xu@intel.com>
Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
lib/librte_eal/linuxapp/eal/eal_xen_memory.c

index 0b612bb..bddbdb0 100644 (file)
@@ -167,8 +167,8 @@ rte_xen_mem_phy2mch(int32_t memseg_id, const phys_addr_t phy_addr)
        if (memseg_id == -1) {
                for (i = 0; i < RTE_MAX_MEMSEG; i++) {
                        if ((phy_addr >= memseg[i].phys_addr) &&
-                                       (phys_addr < memseg[i].phys_addr +
-                                               memseg[i].size)) {
+                                       (phy_addr < memseg[i].phys_addr +
+                                               memseg[i].len)) {
                                memseg_id = i;
                                break;
                        }