From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qa0-f44.google.com (mail-qa0-f44.google.com [209.85.216.44]) by dpdk.org (Postfix) with ESMTP id 7594968BB for ; Mon, 9 Jun 2014 23:10:51 +0200 (CEST) Received: by mail-qa0-f44.google.com with SMTP id j7so8428801qaq.3 for ; Mon, 09 Jun 2014 14:11:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:date:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=87Sg1SXxZ3AYojbDQkJxnrwrPTsdHbaRo7OjUZ9Ge8g=; b=jWHsTkDtNYFYuZGOrfz4szpkohziWcUQ4WMnyaDeOIkPMNK9/4gkBk7+2YYF7qMmDE NOEePRvEnie6x3WslQaKQJnOUYL5BIGlqokNsG7uNrq/Vgc7HNvEg06gYToi97fEteOD SguymoQUtdB9P+MdKk6B1YRcIh9l6wQxvCRpFsDcvESep2xgaxjzqN010HfL79GvhDwy lUhwFjQcfs1/MADalnLud40v1S/5KfyyC/hCsKR0kZTxmB5fli4puQVe/gdjR2YghaSd Ob5dhlhwvySya2jn2J3pbOY4P+kKZjV5MmLOkqA2U4DX17QN9e8ifDSb5ytKn8422V6K IytQ== X-Received: by 10.224.50.205 with SMTP id a13mr35640661qag.19.1402348265702; Mon, 09 Jun 2014 14:11:05 -0700 (PDT) Received: from gmail.com (pool-108-31-46-105.washdc.fios.verizon.net. [108.31.46.105]) by mx.google.com with ESMTPSA id q1sm6980736qay.18.2014.06.09.14.11.04 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Mon, 09 Jun 2014 14:11:05 -0700 (PDT) From: Eric Kinzie X-Google-Original-From: "Eric Kinzie" Received: by gmail.com (sSMTP sendmail emulation); Mon, 9 Jun 2014 17:11:03 -0400 Date: Mon, 9 Jun 2014 17:11:03 -0400 To: Declan Doherty Message-ID: <20140609211054.GA4853@roosta.home> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v2 1/4] Link Bonding Library 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: Mon, 09 Jun 2014 21:10:51 -0000 On Wed Jun 04 16:18:53 +0100 2014, Declan Doherty wrote: > - Broadcast TX burst broadcast bug fix > - Add/remove slave behavior fix > - Checkpatch fixes Declan, would you consider the following change to rte_bond.c? The two header files from librte_cmdline don't seem to be necessary. Eric --- a/lib/librte_bond/rte_bond.c +++ b/lib/librte_bond/rte_bond.c @@ -44,9 +44,6 @@ #include #include -#include -#include - #include "rte_bond.h" static const char *driver_name = "Link Bonding PMD";