From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 3C97A1B698 for ; Thu, 10 Jan 2019 14:06:47 +0100 (CET) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 479B95D605; Thu, 10 Jan 2019 13:06:46 +0000 (UTC) Received: from [10.36.116.73] (ovpn-116-73.ams2.redhat.com [10.36.116.73]) by smtp.corp.redhat.com (Postfix) with ESMTPS id B6FE668B1E; Thu, 10 Jan 2019 13:06:45 +0000 (UTC) From: "Eelco Chaudron" To: xuemingl@mellanox.com Cc: dev@dpdk.org Date: Thu, 10 Jan 2019 14:06:37 +0100 Message-ID: In-Reply-To: <20171205050508.26289-1-xuemingl@mellanox.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed; markup=markdown Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.39]); Thu, 10 Jan 2019 13:06:46 +0000 (UTC) Subject: Re: [dpdk-dev] [RFC v1 00/11] scapy/python extension X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jan 2019 13:06:47 -0000 Hi Xueming, I was wondering if this patch went anywhere, could not find anything in = the list archive? I like the idea, as it=E2=80=99s useful for quick unit testing, without = relying on Trex or trafgen. Cheers, Eelco > quick guide document: > https://github.com/steevenlee/dpdk/blob/master_scapy/doc/guides/howto/s= capy.rst > github branch: > https://github.com/steevenlee/dpdk/tree/master_scapy > > > Xueming Li (11): > lib/cmdline: support backspace key > lib/cmdline: init parse result memeory > lib/cmdline: add echo support in batch loading from file > app/testpmd: support command echo in CLI batch loading > test: update batch loading test > lib/python: add embedded python lib > app/testpmd: add python command > app/testpmd: add pktgen forwarding engine > app/testpmd: add pktgen engine scapy commands > test/expect: add expect test scripts > doc/scapy: add scapy how-to guide > > app/test-pmd/Makefile | 6 + > app/test-pmd/cmdline.c | 80 ++- > app/test-pmd/pktgen.c | 1092 = > ++++++++++++++++++++++++++++++ > app/test-pmd/testpmd.c | 1 + > app/test-pmd/testpmd.h | 5 + > config/common_base | 6 + > doc/guides/howto/scapy.rst | 300 ++++++++ > lib/Makefile | 2 + > lib/librte_cmdline/cmdline_parse.c | 2 + > lib/librte_cmdline/cmdline_rdline.c | 1 + > lib/librte_cmdline/cmdline_socket.c | 5 +- > lib/librte_cmdline/cmdline_socket.h | 3 +- > lib/librte_cmdline/cmdline_vt100.c | 1 + > lib/librte_cmdline/cmdline_vt100.h | 1 + > lib/librte_eal/common/include/rte_log.h | 1 + > lib/librte_python/Makefile | 60 ++ > lib/librte_python/rte_python.c | 387 +++++++++++ > lib/librte_python/rte_python.h | 71 ++ > lib/librte_python/rte_python_version.map | 12 + > mk/rte.app.mk | 1 + > test/expect/init.exp | 28 + > test/expect/rx.exp | 134 ++++ > test/test/test_cmdline_lib.c | 10 +- > 23 files changed, 2199 insertions(+), 10 deletions(-) > create mode 100644 app/test-pmd/pktgen.c > create mode 100644 doc/guides/howto/scapy.rst > create mode 100644 lib/librte_python/Makefile > create mode 100644 lib/librte_python/rte_python.c > create mode 100644 lib/librte_python/rte_python.h > create mode 100644 lib/librte_python/rte_python_version.map > create mode 100644 test/expect/init.exp > create mode 100644 test/expect/rx.exp > > -- = > 2.13.3