From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f49.google.com (mail-wm0-f49.google.com [74.125.82.49]) by dpdk.org (Postfix) with ESMTP id 9466E214A for ; Wed, 8 Jun 2016 16:46:04 +0200 (CEST) Received: by mail-wm0-f49.google.com with SMTP id n184so185287648wmn.1 for ; Wed, 08 Jun 2016 07:46:04 -0700 (PDT) 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:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=22X9I/E6U3juMvWz8RJHwwqFDvN+3BdRe1LMdFPlHPw=; b=IU1YTsqT35ipEjA9qFWmFwdMTIDek+MD7PSsw2yJElGsqKxlrKNQ0FSCbPB0+9WF5+ zFQjIwFyRWW9xi+KltV560p0QZVTXpoXkXoGyR8soB8yTvgsfsnv1YUHkb8mYKkZdcxF sRq5oZdxYMcjrIIOQJeKbf469i7ow90h6kE3sXREAU0U2M4d2ymtK5B5S+TEI3W4RuPE gH8BiMs3+fUd0QjXAslX8I/twMqZCLxBYjCpGmvjTC1As7rKRsg2v9GK6VaPsO8YZDKe rv3Gj6r8BMkN5sta62DQlN/AODdatMWnhrp+e1EK705TIvfu3Tqs95ucMmDFXoOTAShD x2PA== 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:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=22X9I/E6U3juMvWz8RJHwwqFDvN+3BdRe1LMdFPlHPw=; b=GGBZ+MlbmLccOHLGsWkrWSNq09Trh91/eg5NiFLfSNuYA4+XsYuiSdx+8LiBxsAqzs u3kC+Yo/LXILgMjUSgoGbWq+URXE9kfr6eARCLWVNWUtclqiZpp9RAsSTnGwIjliGZg2 AU7Q3AFJYqcNDDwo2vw+qsrU1FnlVTd5Vgdu2oRTKW/g5/pxYhALGzeVfHVZa5oj9WTP AKsl3CFxc8LR6MBdS0Ijzv1vRjMMclSeBDyEHxy/f3N7FEYrDY+to4wMiJshEyXadw7l 8DcKJFQiHxVjmEECWc6nplXDb+AmJ2QOldDlKNVIikma+q/Z1PJUh8n91OlppeuEVrvj Y4Tg== X-Gm-Message-State: ALyK8tLyAamUnZgV1pjMMZwStAgP2mvqImELXUsj0/NhzJrGpon5kAYcXl/qzIWAE3JhIR+z X-Received: by 10.28.52.193 with SMTP id b184mr8001024wma.38.1465397164360; Wed, 08 Jun 2016 07:46:04 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id i190sm25028097wmf.10.2016.06.08.07.46.02 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 08 Jun 2016 07:46:03 -0700 (PDT) From: Thomas Monjalon To: Piotr Azarewicz Cc: dev@dpdk.org Date: Wed, 08 Jun 2016 16:46:02 +0200 Message-ID: <9928383.4eNYRNnYQu@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1465382125-2747-1-git-send-email-piotrx.t.azarewicz@intel.com> References: <1463754940-8114-1-git-send-email-piotrx.t.azarewicz@intel.com> <1465382125-2747-1-git-send-email-piotrx.t.azarewicz@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v3 0/7] examples/ip_pipeline: CLI rework and improvements 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, 08 Jun 2016 14:46:04 -0000 2016-06-08 12:35, Piotr Azarewicz: > Using the latest librte_cmdline improvements, the CLI implementation of the > ip_pipeline application is streamlined and improved, which results in > eliminating thousands of lines of code from the application, thus leading to > code that is easier to maintain and extend. > > v3 changes: > - fix the authorship in patches > > v2 changes: > - added functions for parsing hex values > - added standard error messages for CLI and file bulk > - for all CLI commands: separate code paths for each flavor of each command > (e.g. route add, route add default, route ls, route del, route del default, > etc do not share any line of code) > - for bulk commands: simplified error checking > - added additional config files > > Acked-by: Cristian Dumitrescu > > Daniel Mrzyglod (1): > examples/ip_pipeline: modifies firewall pipeline CLI > > Piotr Azarewicz (4): > examples/ip_pipeline: add helper functions for parsing string > examples/ip_pipeline: modifies flow action pipeline CLI > examples/ip_pipeline: modifies routing pipeline CLI > examples/ip_pipeline: update edge router usecase > > Tomasz Kulasek (2): > examples/ip_pipeline: modifies common pipeline CLI > examples/ip_pipeline: modifies flow classifications pipeline CLI Applied, thanks