From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f52.google.com (mail-wm0-f52.google.com [74.125.82.52]) by dpdk.org (Postfix) with ESMTP id 1C6D2921C for ; Wed, 25 Nov 2015 23:21:32 +0100 (CET) Received: by wmec201 with SMTP id c201so22614wme.1 for ; Wed, 25 Nov 2015 14:21:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=0tKZWiTw+cIT+DthD1hHFMnWaIP40Ol/fULvfJ8mA8Q=; b=cwXKtzXLoqsvpOJT/+B1vqFm1i+2G2qjDj6Wuy7nv9fB18hCKwx/MPTebBI34nCuCJ c9gGM0W+OzznwZkQPyypFBVhd3Pm3mEEJZHE0eJMDAdnI2dfzPnLjVZgDlOkueN/gTEY d8H8XupGQlKtBSMZsBR7ImMDH5F0QhE6xP4hBuocNTqkQ9swvGESStnm1l54JJqyuhJx KVoh1TyaMGxn2+MfEMHuv6vELa0oPAQIa48WLNLoxgrIGiNBOmRjXlqUCy5TCXNB3hoW /G0+zXn7jbD3kRdhfObZMfB3hWYDZobF9MNXF9ylGKw1OqaHVPOzJNKz0UW6Dbyu/FxD wpAQ== 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=0tKZWiTw+cIT+DthD1hHFMnWaIP40Ol/fULvfJ8mA8Q=; b=IlGK3XqL+A67SXRhdbSoRbFkLgYy0fXsU6WBGyj4BILfsMYIkDbKAuJLWfScNdrONy kdN2Vn/LAURJwlzqYDWG5un2YtFIYOBW8bBKfSU7DUkbqPqbedmPUDh5J3S5gcC/d11h TNtgc1qzjbJEbwQZbD3QSTOsgy2BFjnEsS2Ui7ZLh6wziyslDeD9RxMJf3YmrEt4Tmkr fSO8kVudNJPushncuKifaxM1Tk3PVutOLnoPuX2SGoEsUjGtqji3Vd6FkgdZGmBpZvU8 T0HLTlv8UXD4+R0RqW08zKkcYHyMHgon0LBvgqhEgGEF8iVLKRUI+4lzpL7rsQUxffr3 dwHQ== X-Gm-Message-State: ALoCoQk0fK8FRO/riv4dpBFQRv5p0tsEBuyL3UnOGdG5ie89eOyj3XAiCDLzlojESbXtZuitnaSV X-Received: by 10.194.179.33 with SMTP id dd1mr3280785wjc.133.1448490091923; Wed, 25 Nov 2015 14:21:31 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id z1sm24945547wje.35.2015.11.25.14.21.30 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 25 Nov 2015 14:21:31 -0800 (PST) From: Thomas Monjalon To: Michal Jastrzebski Date: Wed, 25 Nov 2015 23:20:12 +0100 Message-ID: <13937671.sXJdB8KUP1@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1445346087-2880-1-git-send-email-michalx.k.jastrzebski@intel.com> References: <1445346087-2880-1-git-send-email-michalx.k.jastrzebski@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 v4 0/5] pipeline: add bulk add/delete functions for table 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, 25 Nov 2015 22:21:32 -0000 2015-10-20 15:01, Michal Jastrzebski: > From: Marcin Kerlin > > This patch adds bulk add/delete functions for tables used by pipelines. It > allows for adding/deleting many rules to pipeline tables in one function call. > It is particulary useful for firewall pipeline which is using ACL table. After > every add or delete, table is rebuild which leads to very long times when > trying to add/delete many entries. > > v2: > * Incremented the LIBABIVER number > * Updated release notes > * Removed deprecation announce > > v3: > * Updated a Doxygen comment > > v4: > * Moved .map file to the second patch > > Acked-by: Cristian Dumitrescu > > Maciej Gajdzica (5): > table: added bulk add/delete functions for table > pipeline: added bulk add/delete functions for table > test_table: added check for bulk add/delete to acl table unit test > ip_pipline: added cli commands for bulk add/delete to firewall > pipeline > doc: modify release notes and deprecation notice for table and > pipeline Applied, thanks