From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f43.google.com (mail-wg0-f43.google.com [74.125.82.43]) by dpdk.org (Postfix) with ESMTP id 10D6BAF87 for ; Wed, 2 Jul 2014 17:03:02 +0200 (CEST) Received: by mail-wg0-f43.google.com with SMTP id b13so893703wgh.26 for ; Wed, 02 Jul 2014 08:03:16 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=EpWlfXaB2MIKiEXv60vkmm3Ee4qA8kfcoCv5mxmWKto=; b=h1wYzmaZR0V5L/brTuCww1Z3ow3CD/a1rVm+9A3Ny3YEAtxIoDNT6B3VSUoPWEE1UM aV4cyporRJc9zddc/nqaaHBvRQRGOWZ2iowutTgS14RL6uaaFlyNqFo3vavZaNTe4TJn W24k45L02StE6+TWvHouSUscNCid+ryxJd2HK5IUgReZXHQq4wPaSkO2we/Xy50Uf9mF hOSvz8o7h8SNaM2D+9+OrgnGIumo2LtMKFm4CQZcqxqZTLytNJTabh6TQi9TgOfNvxJa bGM+y/1K4Dvb7eSUyikpdvt6gI3VM3Ge6q4JotQ5G6ciE3cZdbFpcfOSuIsO/NTeZASv 6a3w== X-Gm-Message-State: ALoCoQmEtRAydZGGhcD/Fv2b2GCKpwaXMoDWKKicQXqt6o0OhJ/mrVPgz0wpYwRMcdNxRdIDAwSr X-Received: by 10.180.99.97 with SMTP id ep1mr44444259wib.64.1404313396371; Wed, 02 Jul 2014 08:03:16 -0700 (PDT) Received: from XPS13.dev.6wind.com (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id fc7sm55588765wjc.37.2014.07.02.08.03.14 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 02 Jul 2014 08:03:15 -0700 (PDT) From: Thomas Monjalon To: dev@dpdk.org Date: Wed, 2 Jul 2014 17:02:49 +0200 Message-Id: <1404313375-2205-2-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.0.0 In-Reply-To: <1404313375-2205-1-git-send-email-thomas.monjalon@6wind.com> References: <1404313375-2205-1-git-send-email-thomas.monjalon@6wind.com> Subject: [dpdk-dev] [PATCH 1/7] eal: fix build for bsd 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: , X-List-Received-Date: Wed, 02 Jul 2014 15:03:03 -0000 When adding link bonding to EAL initialization (a155d430119), an include was missing for BSD. Signed-off-by: Thomas Monjalon Tested-by: Zhaochen Zhan --- lib/librte_eal/bsdapp/eal/eal.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_eal/bsdapp/eal/eal.c b/lib/librte_eal/bsdapp/eal/eal.c index c53f63e..38c6cfc 100644 --- a/lib/librte_eal/bsdapp/eal/eal.c +++ b/lib/librte_eal/bsdapp/eal/eal.c @@ -66,6 +66,7 @@ #include #include #include +#include #include #include #include -- 2.0.0