DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Mcnamara, John" <john.mcnamara@intel.com>
To: Ravi Kerur <rkerur@gmail.com>, "dev@dpdk.org" <dev@dpdk.org>
Cc: "Ananyev, Konstantin" <konstantin.ananyev@intel.com>,
	"Richardson, Bruce" <bruce.richardson@intel.com>
Subject: Re: [dpdk-dev] [v4 3/3] EM config file read option.
Date: Mon, 6 Mar 2017 13:42:49 +0000	[thread overview]
Message-ID: <B27915DBBA3421428155699D51E4CFE23324F86A@IRSMSX104.ger.corp.intel.com> (raw)
In-Reply-To: <1488743225-25750-4-git-send-email-rkerur@gmail.com>



> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Ravi Kerur
> Sent: Sunday, March 5, 2017 7:47 PM
> To: dev@dpdk.org
> Cc: Ananyev, Konstantin <konstantin.ananyev@intel.com>; Richardson, Bruce
> <bruce.richardson@intel.com>; Ravi Kerur <rkerur@gmail.com>
> Subject: [dpdk-dev] [v4 3/3] EM config file read option.
> 
> v4:
> 	> No changes.
> 
> v3:
> 	> Fix additional checkpatch coding style issues.
> 
> v2:
> 	> Fix checkpatch warnings.
> 
> v1:
> 	> Remove static array configuration of Dest IP,Src IP, Dest
> 		port, Src port, Proto and IF_OUT for EM and EM6 config.
> 	> Add reading configuration from a file.
> 	> Format of configuration file is as follows
> 		#EM route entries,
> 		#Dest-IP Src-IP Dest-port Src-port Proto IF_OUT
> 		E101.0.0.0 100.10.0.0 101 11 0x06 0
> 		E201.0.0.0 200.20.0.0 102 12 0x06 1
> 		E111.0.0.0 211.30.0.0 101 11 0x06 2
> 		...
> 
> 		#EM6 route entries
> 		#Dest-IP Src-IP Dest-port Src-port Proto IF_OUT
> 		Efe80:0000:0000:0000:021e:67ff:fe00:0000
> 			fe80:0000:0000:0000:021b:21ff:fe91:3805 101 11 0x06 0
> 		Efe90:0000:0000:0000:021e:67ff:fe00:0000
> 			fe90:0000:0000:0000:021b:21ff:fe91:3805 102 12 0x06 1
>                 ...

Hi Ravi,

Just a note on the structure of the commit message for this and the other
patches. The first thing to do if you are new to contributing to DPDK is
to have a read through the guidelines on "Contributing Code to DPDK":

   http://dpdk.org/doc/guides/contributing/patches.html

In particular the subject line should contain the component that is being
modified. Something like:

    examples/l3fwd: add config file support for exact match

Do a git log examples/l3fwd to see some other examples and have a look at
the following "Commit Messages: Subject Line" section of the above guidelines

    http://dpdk.org/doc/guides/contributing/patches.html#commit-messages-subject-line

The body of the message should contain a short description of what you are changing,
at a high level, and why you are changing it. See also:

    http://dpdk.org/doc/guides/contributing/patches.html#commit-messages-body

The version information in your commit message is good but that should be included
after the --- line so that it is part of the patch but not part of the commit
message.

John.

  reply	other threads:[~2017-03-06 13:42 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-05 19:47 [dpdk-dev] [v4 0/3] Merge l3fwd-acl and l3fwd Ravi Kerur
2017-03-05 19:47 ` [dpdk-dev] [v4 1/3] Merge l3fwd-acl and l3fwd code Ravi Kerur
2017-03-08 21:32   ` [dpdk-dev] [PATCH v5 0/3] examples/l3fwd: merge l3fwd-acl code into l3fwd Ravi Kerur
2017-03-08 21:32     ` [dpdk-dev] [PATCH v5 1/3] " Ravi Kerur
2017-03-09 10:42       ` Mcnamara, John
2017-03-10 20:58       ` [dpdk-dev] [PATCH v6 0/3] " Ravi Kerur
2017-03-10 20:58         ` [dpdk-dev] [PATCH v6 1/3] " Ravi Kerur
2017-03-10 20:58         ` [dpdk-dev] [PATCH v6 2/3] examples/l3fwd: add config file support for lpm Ravi Kerur
2017-03-10 20:58         ` [dpdk-dev] [PATCH v6 3/3] examples/l3fwd: add config file support for exact Ravi Kerur
2017-06-04 11:14         ` [dpdk-dev] [PATCH v6 0/3] examples/l3fwd: merge l3fwd-acl code into l3fwd Thomas Monjalon
2019-01-23 16:32         ` Ferruh Yigit
2019-01-23 17:10           ` Thomas Monjalon
2019-01-23 17:20             ` Ananyev, Konstantin
2019-01-23 17:26               ` Thomas Monjalon
2019-01-23 19:36                 ` Ferruh Yigit
2019-01-23 20:27                   ` Thomas Monjalon
2019-01-24  9:14               ` Rami Rosen
2017-03-08 21:32     ` [dpdk-dev] [PATCH v5 2/3] examples/l3fwd: add config file support for LPM Ravi Kerur
2017-03-09 10:43       ` Mcnamara, John
2017-03-08 21:32     ` [dpdk-dev] [PATCH v5 3/3] examples/l3fwd: add config file support for EM Ravi Kerur
2017-03-09 10:45       ` Mcnamara, John
2017-03-10  0:00         ` Ravi Kerur
2017-03-05 19:47 ` [dpdk-dev] [v4 2/3] LPM config file read option Ravi Kerur
2017-03-06 13:57   ` Mcnamara, John
2017-03-06 14:10     ` Mcnamara, John
2017-03-05 19:47 ` [dpdk-dev] [v4 3/3] EM " Ravi Kerur
2017-03-06 13:42   ` Mcnamara, John [this message]
2017-03-06 13:33 ` [dpdk-dev] [v4 0/3] Merge l3fwd-acl and l3fwd Mcnamara, John
2017-03-06 23:20   ` Ravi Kerur
2017-03-08 21:50     ` Ravi Kerur
2017-03-09 10:37       ` Mcnamara, John
2017-03-09 10:23     ` Mcnamara, John
2017-03-10  0:07       ` Ravi Kerur
2017-03-14 21:14         ` Ravi Kerur

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=B27915DBBA3421428155699D51E4CFE23324F86A@IRSMSX104.ger.corp.intel.com \
    --to=john.mcnamara@intel.com \
    --cc=bruce.richardson@intel.com \
    --cc=dev@dpdk.org \
    --cc=konstantin.ananyev@intel.com \
    --cc=rkerur@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).