]> git.droids-corp.org - dpdk.git/commitdiff
examples/ethtool: fix build
authorThomas Monjalon <thomas.monjalon@6wind.com>
Fri, 5 Feb 2016 14:38:02 +0000 (15:38 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 16 Feb 2016 06:33:44 +0000 (07:33 +0100)
When building for ARM, the spinlock structure was not found.
It appears to be a mismatch with rwlock which is not used in this file.

Fixes: bda68ab9d1e7 ("examples/ethtool: add user-space ethtool sample application")
Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Acked-by: Remy Horton <remy.horton@intel.com>
examples/ethtool/ethtool-app/main.c

index e21abcd54b8b3b660015c203b35bff212f5d5593..2c655d83e99cdcf8e82a1d6a005a1901686a3c32 100644 (file)
@@ -36,7 +36,7 @@
 #include <stdlib.h>
 
 #include <rte_common.h>
-#include <rte_rwlock.h>
+#include <rte_spinlock.h>
 #include <rte_eal.h>
 #include <rte_ethdev.h>
 #include <rte_ether.h>