From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH 2/3] examples/ethtool: fix build Date: Fri, 5 Feb 2016 15:54:08 +0100 Message-ID: <1454684049-27195-3-git-send-email-thomas.monjalon@6wind.com> References: <1454684049-27195-1-git-send-email-thomas.monjalon@6wind.com> Cc: dev@dpdk.org To: bruce.richardson@intel.com, remy.horton@intel.com Return-path: Received: from mail-wm0-f51.google.com (mail-wm0-f51.google.com [74.125.82.51]) by dpdk.org (Postfix) with ESMTP id 4DE8DC300 for ; Fri, 5 Feb 2016 15:55:32 +0100 (CET) Received: by mail-wm0-f51.google.com with SMTP id g62so30745179wme.0 for ; Fri, 05 Feb 2016 06:55:32 -0800 (PST) In-Reply-To: <1454684049-27195-1-git-send-email-thomas.monjalon@6wind.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 --- examples/ethtool/ethtool-app/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ethtool/ethtool-app/main.c b/examples/ethtool/ethtool-app/main.c index e21abcd..2c655d8 100644 --- a/examples/ethtool/ethtool-app/main.c +++ b/examples/ethtool/ethtool-app/main.c @@ -36,7 +36,7 @@ #include #include -#include +#include #include #include #include -- 2.7.0