eal/linux: never check iopl for arm
authorSantosh Shukla <sshukla@mvista.com>
Sun, 21 Feb 2016 14:17:59 +0000 (19:47 +0530)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 24 Feb 2016 10:44:55 +0000 (11:44 +0100)
iopl() syscall not supported in linux-arm/arm64 so always return 0 value.

Suggested-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: Santosh Shukla <sshukla@mvista.com>
Acked-by: Jan Viktorin <viktorin@rehivetech.com>
Acked-by: David Marchand <david.marchand@6wind.com>
Reviewed-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
lib/librte_eal/linuxapp/eal/eal.c

index 4d3e0de..ceac435 100644 (file)
@@ -716,6 +716,8 @@ rte_eal_iopl_init(void)
        if (iopl(3) != 0)
                return -1;
        return 0;
+#elif defined(RTE_ARCH_ARM) || defined(RTE_ARCH_ARM64)
+       return 0; /* iopl syscall not supported for ARM/ARM64 */
 #else
        return -1;
 #endif