From patchwork Fri Feb 5 14:54:08 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 10395 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 7FF5CC31C; Fri, 5 Feb 2016 15:55:35 +0100 (CET) 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) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=m4s00MD6OTXx1iY8GeEnhsUTpYUZdxRKBKE3OJT2V1k=; b=K4oYM5JahJJ1pJRKGVc+IgBzVSIctEHmUObqSVD9/ppBc6UphK331J/s4LVLV0vbH0 QH8v8fai9+X3bIfLRsGGpojOQAhXNaLETq54SiqT85T1y1gS1ypco9hvi6fDTzw9JckZ p/BBho5VlcoILR0NZRSHGLxdAUUQQ6Xo9AUub+R6arwvqDvhsz+HVs7oCUybeFUccDId KdhAmMUgcw0fYtXDbv8IJWZN0vBvUnrRBeMO6OCBfC9qcLutITQs5w0GKICUoyFvsc1G 8Kgc0kvtmm0LRckXxt5ssRHmQdFR+cPFUotdp2Y/P3oOUswDa3bTKeMiKZl+CXxcuiAA jltg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=m4s00MD6OTXx1iY8GeEnhsUTpYUZdxRKBKE3OJT2V1k=; b=Des017M2308sxCD7kSBptcHndNEM0dTFP7en1kiy0cMpCb+t4at3wKSNpez2hBAZqI bljQ47UUV2TabJ3DRPcXy5KVo0oCrYa4xGGYtX+68SfI20Jr1JM05sBEQq1bFex6d/iQ PfKHiQ7Ze3qPI7+PVD1FC9TMaudtu6dLkY1tk2+D9sXJofAvGaO61vf6BBHkfv5z3YMf 6GTCoKZ/Vf6qSJG4LvK2oPW1OTsuwLtO3VDwt5i8fjGO+Iwtu5/p4FwkNUG9VJLgT4VB 9epHGR/+kPPL786mwju/Qb75cnqhJoYZRaX/KiVCoHOW/B9Tuq2qRYViAad8j0A4wX+7 /b4A== X-Gm-Message-State: AG10YOTZIJ5tybuIy554si2lpaNFI3ssh0FQsBN3pNJqtJE5Dqt/pLy+jlCzw9SFsjNqcbVs X-Received: by 10.28.188.195 with SMTP id m186mr6673877wmf.64.1454684132178; Fri, 05 Feb 2016 06:55:32 -0800 (PST) Received: from localhost.localdomain (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id pu8sm16257933wjc.17.2016.02.05.06.55.31 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 05 Feb 2016 06:55:31 -0800 (PST) From: Thomas Monjalon To: bruce.richardson@intel.com, remy.horton@intel.com Date: Fri, 5 Feb 2016 15:54:08 +0100 Message-Id: <1454684049-27195-3-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.7.0 In-Reply-To: <1454684049-27195-1-git-send-email-thomas.monjalon@6wind.com> References: <1454684049-27195-1-git-send-email-thomas.monjalon@6wind.com> Cc: dev@dpdk.org Subject: [dpdk-dev] [PATCH 2/3] examples/ethtool: fix build X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list 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 Acked-by: Remy Horton --- 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