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")

Signed-off-by: Olivier Matz <olivier.matz at 6wind.com>
---
 lib/librte_eal/linuxapp/eal/eal_xen_memory.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/librte_eal/linuxapp/eal/eal_xen_memory.c 
b/lib/librte_eal/linuxapp/eal/eal_xen_memory.c
index 0b612bb..bddbdb0 100644
--- a/lib/librte_eal/linuxapp/eal/eal_xen_memory.c
+++ b/lib/librte_eal/linuxapp/eal/eal_xen_memory.c
@@ -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;
                        }
-- 
2.8.1

Reply via email to