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 4A846282 for ; Mon, 24 Nov 2014 21:43:51 +0100 (CET) Received: by mail-wi0-f172.google.com with SMTP id n3so7059320wiv.5 for ; Mon, 24 Nov 2014 12:54:40 -0800 (PST) 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:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=m8sKTE0X+NJ9cmgGBOvdNRjgyoqD+nC8dqQVgVqiNcI=; b=jt6b59BwNq82K7nYQHDF2aun0bPK4N0XcBM2ENcla5eD5ZM2WKyh5/ttz4Gwn90sDq fAq/dyZAzHBxtu1kW5aufYZOWh2XHZ+HS63r9D4I1aAJhzq5n10AYYpIhSa9GEaOO27v OgjwUm4EuBI6l2VLY0fJAArAE3791YNj61Xypyoa9rzGgOKnfNeCK127sNc6M3kBD0Jn ttchO2Tga5DApJqWekI1q3jZFu2tRkQAiFd0ux7dlBt8Vg1ivwXf+UPE6rqP6nijTF4o ViZ0maPDXoeM67kDli6wdBk3Hml49oCgI3vbTpvmcsKQLuMOtHYPB86+B6VPNWLTeNwe C90Q== X-Gm-Message-State: ALoCoQlDRvASi8fqMtMYz27/unAD8lB76AGOFsCQvvnzvNijWsmZCK7NGa+ssa2jDMTXa99ZXhzI X-Received: by 10.180.12.75 with SMTP id w11mr13717834wib.9.1416862480616; Mon, 24 Nov 2014 12:54:40 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id kv6sm13890220wjb.9.2014.11.24.12.54.39 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 24 Nov 2014 12:54:39 -0800 (PST) From: Thomas Monjalon To: Declan Doherty Date: Mon, 24 Nov 2014 21:54:16 +0100 Message-ID: <6086797.0Uzru5Vpmk@xps13> Organization: 6WIND User-Agent: KMail/4.14.2 (Linux/3.17.2-1-ARCH; KDE/4.14.2; x86_64; ; ) In-Reply-To: <1416846822-26897-1-git-send-email-declan.doherty@intel.com> References: <1416832054-24086-1-git-send-email-declan.doherty@intel.com> <1416846822-26897-1-git-send-email-declan.doherty@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v8 0/7] 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: Mon, 24 Nov 2014 20:43:51 -0000 2014-11-24 16:33, Declan Doherty: > v8: > - Missing typo fix > - Missing whitespace > > v7: > - Fixes for checkpatch issues and typo fixes > - Removed patch "test app: adding support for generating variable sized" as this > was already committed in commit aca4360340f169dcc11b1a9be955b44de8b9f6eb > > v6: > - Re-based to dpdk.org addressing associated issues for MBUF_REFCNT > - Added details to testpmd user guide for new command to set link status polling interval. > > v5: > - Fix uninitialized variable in broadcast_tx_burst function which caused a > build error in 32-bit build > - Address unit test issue which is exposed by new test in mode 4/5 patch sets > > v4: > - Re-based to account for changes in master. > - Fix for rte_eth_bond_slaves_get() introduced in v3 patch set > - Addressed issue around disabling/enabling link status polling around adding/ > removing slaves devices. > > v3 : > - Typo fix for the bond free mbufs patch. > - Re-based to account for changes in the mbuf patches. > - Add support for slave devices which don't support link status interrupts > - Tidy up the link bonding unit test so that all tests use the new test macros. > > v2 : > Addresses issues with the logic around the handling of fail transmissions. > In this version all modes behave in a manner similar to a standard PMD, > returning the number of successfully transmitted mbufs and with the failing > mbufs at the end of bufs array for freeing / retransmission by the > application software > > v1: > > This patch set adds support for link status interrupt in the link bonding > pmd. It also contains some patches to tidy up the code structure and to > of the link bonding code and to fix bugs relating to transmission > failures in the under lying slave pmd which could lead to leaked mbufs. > > > Declan Doherty (7): > bond: link status interrupt support > bond: removing switch statement from rx burst method > bond: fix naming inconsistency in tx_burst_round_robin > bond: free mbufs if transmission fails in bonding tx_burst functions > testpmd: adding parameter to reconfig method to set socket_id when > adding new port to portlist > bond: lsc polling support > bond: unit test test macro refactor Applied with some minor fixes. Thanks -- Thomas