[dpdk-dev] [PATCH] skeleton app: Very simple code for l2fwding

2014-11-13 Thread Thomas Monjalon
Hi Bruce, 2014-06-26 21:22, Bruce Richardson: > This is a very simple example app for doing packet forwarding with the > Intel DPDK. It's designed to serve as a start point for people new to > the Intel DPDK and who want to develop a new app. > > Therefore it's meant to: > * have as good a perfor

[dpdk-dev] [PATCH] skeleton app: Very simple code for l2fwding

2014-11-13 Thread Bruce Richardson
On Thu, Nov 13, 2014 at 01:20:46PM +0100, Thomas Monjalon wrote: > Hi Bruce, > > 2014-06-26 21:22, Bruce Richardson: > > This is a very simple example app for doing packet forwarding with the > > Intel DPDK. It's designed to serve as a start point for people new to > > the Intel DPDK and who want

[dpdk-dev] [PATCH] skeleton app: Very simple code for l2fwding

2014-06-26 Thread Vincent JARDIN
> +#ifdef RTE_EXEC_ENV_BAREMETAL >>+#define MAIN _main >>+#else >>+#define MAIN main >>+#endif >>+ >>+int MAIN(int argc, char *argv[]); >>+ >>+#endif /* ifndef_MAIN_H_ */ why keeping the baremetal? It was dropped for a while. Best regards, Vincent

[dpdk-dev] [PATCH] skeleton app: Very simple code for l2fwding

2014-06-26 Thread Bruce Richardson
This is a very simple example app for doing packet forwarding with the Intel DPDK. It's designed to serve as a start point for people new to the Intel DPDK and who want to develop a new app. Therefore it's meant to: * have as good a performance out-of-the-box as possible, using the best-known se

[dpdk-dev] [PATCH] skeleton app: Very simple code for l2fwding

2014-06-26 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Vincent JARDIN > Sent: Thursday, June 26, 2014 1:57 PM > To: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] skeleton app: Very simple code for l2fwding > > > +#ifdef RTE_EXEC_ENV_BAR

[dpdk-dev] [PATCH] skeleton app: Very simple code for l2fwding

2014-06-26 Thread Neil Horman
On Thu, Jun 26, 2014 at 09:22:40PM +0100, Bruce Richardson wrote: > This is a very simple example app for doing packet forwarding with the > Intel DPDK. It's designed to serve as a start point for people new to > the Intel DPDK and who want to develop a new app. > > Therefore it's meant to: > * ha