From ferruh.yigit at intel.com Sat Dec 10 05:45:06 2016 From: ferruh.yigit at intel.com (Ferruh Yigit) Date: Sat, 10 Dec 2016 04:45:06 +0000 Subject: [spp] [PATCH] doc: add initial README file In-Reply-To: <1470302493-16969-1-git-send-email-ferruh.yigit@intel.com> References: <1470302493-16969-1-git-send-email-ferruh.yigit@intel.com> Message-ID: <75520b95-e1a8-719e-f877-38dc2f91634e@intel.com> On 8/4/2016 10:21 AM, ferruh.yigit at intel.com (Ferruh Yigit) wrote: > To document what SPP is. > > Signed-off-by: Ferruh Yigit > --- Applied, thanks. From ferruh.yigit at intel.com Sat Dec 10 05:46:34 2016 From: ferruh.yigit at intel.com (Ferruh Yigit) Date: Sat, 10 Dec 2016 04:46:34 +0000 Subject: [spp] [PATCH] primary: remove ivshmem support In-Reply-To: <1472481918-28086-1-git-send-email-ferruh.yigit@intel.com> References: <1472481918-28086-1-git-send-email-ferruh.yigit@intel.com> Message-ID: <2639bd42-5df1-5a2f-88b9-99fb2f555dfa@intel.com> On 8/29/2016 3:45 PM, ferruh.yigit at intel.com (Ferruh Yigit) wrote: > DPDK dropped ivshmem support: > c711ccb30987 ("ivshmem: remove library and its EAL integration") > > This patch is to remove ivshmem support from spp to fix compilation. > > Signed-off-by: Ferruh Yigit > --- Applied, thanks. From ferruh.yigit at intel.com Sat Dec 10 05:51:20 2016 From: ferruh.yigit at intel.com (Ferruh Yigit) Date: Sat, 10 Dec 2016 04:51:20 +0000 Subject: [spp] SPP 16.11 released Message-ID: <1df74068-d449-33fc-f379-5e9247858b8e@intel.com> SPP 16.11 released: http://dpdk.org/browse/apps/spp/tag/?id=v16.11 SPP 16.11 is tested against DPDK 16.11: http://dpdk.org/browse/dpdk/tag/?id=v16.11 From ferruh.yigit at intel.com Sat Dec 10 06:05:01 2016 From: ferruh.yigit at intel.com (Ferruh Yigit) Date: Sat, 10 Dec 2016 05:05:01 +0000 Subject: [spp] [PATCH] doc: add contribution guide Message-ID: <20161210050501.19071-1-ferruh.yigit@intel.com> Signed-off-by: Ferruh Yigit --- CONTRIBUTING.txt | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 CONTRIBUTING.txt diff --git a/CONTRIBUTING.txt b/CONTRIBUTING.txt new file mode 100644 index 0000000..01e1b65 --- /dev/null +++ b/CONTRIBUTING.txt @@ -0,0 +1,51 @@ +Contributors Guide +================== + +This document outlines how to contribute code to the SPP project. + +Getting the code +---------------- + +The SPP code can be cloned from the repository on dpdk.org as follows: + + git clone git://dpdk.org/apps/spp + git clone http://dpdk.org/git/apps/spp + +The code can be browsed at http://dpdk.org/browse/apps/spp/ + +Submitting Patches +------------------ + +Contributions to SPP should be submitted as git formatted patches to the +SPP mailing list: spp at dpdk.org + +Note you must first register for the mailing list at: +http://dpdk.org/ml/listinfo/spp + +The commit message must end with a "Signed-off-by:" line which is added using: + + git commit --signoff # or -s + +The purpose of the signoff is explained in the Linux kernel guidelines +Developer's Certificate of Origin: +http://www.kernel.org/doc/Documentation/SubmittingPatches + +Note: + All developers must ensure that they have read, understood and complied + with the Developer's Certificate of Origin section of the documentation + prior to applying the signoff and submitting a patch. + +The DPDK Code Contributors guidelines contain information that is +useful for submitting patches to SPP: +http://dpdk.org/doc/guides/contributing/index.html + +Coding Guidelines +----------------- + +* C code should follow the DPDK coding standards. +* Python code should follow PEP8. + +Maintainer +---------- + +The SPP maintainer is: Ferruh Yigit -- 2.9.3 From ferruh.yigit at intel.com Sat Dec 10 06:07:10 2016 From: ferruh.yigit at intel.com (Ferruh Yigit) Date: Sat, 10 Dec 2016 05:07:10 +0000 Subject: [spp] [PATCH] doc: add contribution guide In-Reply-To: <20161210050501.19071-1-ferruh.yigit@intel.com> References: <20161210050501.19071-1-ferruh.yigit@intel.com> Message-ID: On 12/10/2016 5:05 AM, Ferruh Yigit wrote: > Signed-off-by: Ferruh Yigit > --- Applied, thanks.