From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f172.google.com (mail-wi0-f172.google.com [209.85.212.172]) by dpdk.org (Postfix) with ESMTP id A4E9730D for ; Wed, 2 Jul 2014 11:22:14 +0200 (CEST) Received: by mail-wi0-f172.google.com with SMTP id hi2so9234694wib.17 for ; Wed, 02 Jul 2014 02:22:35 -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=NffQoapVZDtMyCI22VzPDLlS01zBgO7zGaQpFB4+TYI=; b=BM3pQ9YdSpJf4rP1PrSxAvjXOCj9ppDnD9axBlw2AwAbqyb3WwZvFZdFN8n/splPHD L/R4BPuROVNESeBt+5XlDljQQUbE/ztEDWahEvABJJiZsflv4g4Vj3SQDChtA9c6mepm P5ZtRT7sCHG33qsxpsNH7Vn5wTma1201Rdj/h5OwhEDbhQSgWLPp3lJMvt9FB53/s8L0 eQSj2gnV8BPfe1eYNdjFdxjERuXgCdH7vuySYXjaw09HegUUad8keObdS2xUwSqnGrgT 1CMRsb8kmNDr1GtXmJ03BkM92EhuaDcLO2qjEZ/xVTiuV1owHmYPXm0+ycOOKQZJaqSc wIWA== X-Gm-Message-State: ALoCoQkS0p335jOnzsykAykK19P63TxRUqYpkauOheuy2ltAP0f/3B3G/imrLfkOcGkHTTzEoWvK X-Received: by 10.180.73.106 with SMTP id k10mr41425628wiv.11.1404292954454; Wed, 02 Jul 2014 02:22:34 -0700 (PDT) Received: from XPS13.dev.6wind.com (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id o3sm53062910wiz.24.2014.07.02.02.22.33 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 02 Jul 2014 02:22:33 -0700 (PDT) From: Thomas Monjalon To: dev@dpdk.org Date: Wed, 2 Jul 2014 11:22:24 +0200 Message-Id: <1404292944-5964-1-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.0.0 In-Reply-To: References: Subject: [dpdk-dev] [PATCH] 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 09:22:14 -0000 When adding link bonding to EAL initialization (a155d430119), an include was missing for BSD. Signed-off-by: Thomas Monjalon --- lib/librte_eal/bsdapp/eal/eal.c | 1 + 1 file changed, 1 insertion(+) Please, a quick test and acknowledgement of this fix would be helpful. diff --git a/lib/librte_eal/bsdapp/eal/eal.c b/lib/librte_eal/bsdapp/eal/eal.c index ec57b26..69ead31 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