eal/linux: fix remaining checks for 64-bit architectures
authorDavid Marchand <david.marchand@6wind.com>
Mon, 24 Nov 2014 15:18:51 +0000 (16:18 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Thu, 27 Nov 2014 07:46:22 +0000 (08:46 +0100)
RTE_ARCH_X86_64 can not be used as a way to determine if we are building for
64bits cpus. Instead, RTE_ARCH_64 should be used.

Signed-off-by: David Marchand <david.marchand@6wind.com>
Acked-by: Chao Zhu <chaozhu@linux.vnet.ibm.com>
lib/librte_eal/linuxapp/eal/eal.c
lib/librte_eal/linuxapp/eal/eal_hugepage_info.c

index 1d1fbdd..89f3b5e 100644 (file)
@@ -448,7 +448,7 @@ eal_parse_base_virtaddr(const char *arg)
                return -1;
 
        /* make sure we don't exceed 32-bit boundary on 32-bit target */
-#ifndef RTE_ARCH_X86_64
+#ifndef RTE_ARCH_64
        if (addr >= UINTPTR_MAX)
                return -1;
 #endif
index 73d1cdb..590cb56 100644 (file)
@@ -324,7 +324,7 @@ eal_hugepage_info_init(void)
                                 * later they will be sorted */
                                hpi->num_pages[0] = get_num_hugepages(dirent->d_name);
 
-#ifndef RTE_ARCH_X86_64
+#ifndef RTE_ARCH_64
                                /* for 32-bit systems, limit number of hugepages to 1GB per page size */
                                hpi->num_pages[0] = RTE_MIN(hpi->num_pages[0],
                                                RTE_PGSIZE_1G / hpi->hugepage_sz);