[dpdk-dev] [PATCH v2 1/3] lib/librte_port: enable file descriptor port support

2016-10-14 Thread Thomas Monjalon
2016-10-12 20:44, Dumitrescu, Cristian: > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > > This patchset was probably not tested as it does not compile. > > And it could be useless if a TAP PMD is integrated. > > I suggest to wait 17.02 cycle and see. > > This patch was tested by

[dpdk-dev] [PATCH v2 1/3] lib/librte_port: enable file descriptor port support

2016-10-12 Thread Thomas Monjalon
2016-09-04 15:38, Jasvinder Singh: > +#define RTE_PORT_FD_READER_STATS_PKTS_IN_ADD(port, val) \ > + do { port->stats.n_pkts_in += val } while (0) > +#define RTE_PORT_FD_READER_STATS_PKTS_DROP_ADD(port, val) \ > + do { port->stats.n_pkts_drop += val } while (0) > + It does not compile

[dpdk-dev] [PATCH v2 1/3] lib/librte_port: enable file descriptor port support

2016-10-12 Thread Dumitrescu, Cristian
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Wednesday, October 12, 2016 9:33 PM > To: Singh, Jasvinder > Cc: dev at dpdk.org; Dumitrescu, Cristian > Subject: Re: [dpdk-dev] [PATCH v2 1/3] lib/librte_port: enable file

[dpdk-dev] [PATCH v2 1/3] lib/librte_port: enable file descriptor port support

2016-09-09 Thread Dumitrescu, Cristian
> -Original Message- > From: Richardson, Bruce > Sent: Monday, September 5, 2016 11:12 AM > To: Singh, Jasvinder > Cc: dev at dpdk.org; Dumitrescu, Cristian > Subject: Re: [dpdk-dev] [PATCH v2 1/3] lib/librte_port: enable file descriptor > port support > >

[dpdk-dev] [PATCH v2 1/3] lib/librte_port: enable file descriptor port support

2016-09-04 Thread Jasvinder Singh
This patch adds File Descriptor(FD) port type (e.g. TAP port) to the packet framework library that allows interface with the kernel network stack. The FD port APIs are defined that allow port creation, writing and reading packet from the kernel interface. Signed-off-by: Jasvinder Singh Acked-by: