From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-we0-f173.google.com (mail-we0-f173.google.com [74.125.82.173]) by dpdk.org (Postfix) with ESMTP id E45D7B0A9 for ; Fri, 27 Jun 2014 01:57:48 +0200 (CEST) Received: by mail-we0-f173.google.com with SMTP id t60so4509914wes.4 for ; Thu, 26 Jun 2014 16:58:07 -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:cc:subject:date:message-id:in-reply-to :references:mime-version:content-type:content-transfer-encoding; bh=/Id/lLmvIriFX7HBS0payVq/7//FsqFSEb2j91L2xBA=; b=mg0R9l4wyUNxk/zsejS6n0LXEpSYnR1+Ygx8L9M7Up55c3sdiY+artz+Vt8UO9/2Tx f9wO1+oShBf5c4S/T1XB7IXd12Y3ydDgyvx4SpbhtUtLl7RhIvvI2D725bWE2GHHzoko NZJp1vgUB0gnRj1JZXWBL+NxfPRRi0BNpecWXrN/8PNC8BcqGGNdMTHRPvx5uG3tc7RB wnRcL0lxzm67sTqfrb1Oa7FdDhNRiXlykRPfWfppTzhGXX1EAWGZqcMYCiqvGiJ6ZCzJ poY0skIWHU7ATmTswQURpsn6s86cEqFWtysmNS61G1W3/tHsPuA2OCEY61o0T+pAqi44 t+Yw== X-Gm-Message-State: ALoCoQm61A1z7p1ESv8roObWNz/lk7BT6VEQoIcVvhHBzjpia7eqHFAKKWYq1kWUcT/dmKHYyfvQ X-Received: by 10.180.73.116 with SMTP id k20mr7956706wiv.16.1403827087634; Thu, 26 Jun 2014 16:58:07 -0700 (PDT) Received: from localhost.localdomain (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id gh16sm9820655wic.3.2014.06.26.16.58.05 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 26 Jun 2014 16:58:06 -0700 (PDT) From: Thomas Monjalon To: Declan Doherty Date: Fri, 27 Jun 2014 01:57:50 +0200 Message-Id: <1403827075-9192-1-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.0.0 In-Reply-To: <1403726868-8161-1-git-send-email-declan.doherty@intel.com> References: <1403726868-8161-1-git-send-email-declan.doherty@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: dev@dpdk.org Subject: [dpdk-dev] [PATCH v9 0/5] link bonding 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: Thu, 26 Jun 2014 23:57:49 -0000 Hi Declan, I've made some adjustments in your patches. * Some renaming: - RTE_PMD_BOND / PMD_BOND_KVARG -> PMD_BOND_NAME - rte_pmd_bond_init -> bond_init - rte_pmd_bond_drv -> bond_drv - rte_eth_bond_vargs.c -> rte_eth_bond_args.c * Some moves in doxygen configuration * Removed rte_snprintf usages * Reword commit logs bond: new link bonding library ethdev: add unique name to devices eal: support link bonding device initialization bond: unit tests bond: testpmd support But there is still something wrong in the Makefile: the copyright is missing. I cannot add it by myself, so please send a v10 based on this v9 with copyright added. Thanks