[dpdk-dev] [PATCH v3 2/3] xen: Add netfront poll mode driver

2016-03-22 Thread Jan Blunck
On Tue, Mar 22, 2016 at 11:07 AM, David Marchand wrote: > Hello, > > On Tue, Mar 22, 2016 at 10:55 AM, Jan Blunck wrote: >> +static struct eth_dev_ops xen_eth_dev_ops = { >> + /*dev*/ >> + .dev_configure= xen_dev_configure, >> + .dev_close= xen_dev_close, >>

[dpdk-dev] [PATCH v3 2/3] xen: Add netfront poll mode driver

2016-03-22 Thread David Marchand
Hello, On Tue, Mar 22, 2016 at 10:55 AM, Jan Blunck wrote: > +static struct eth_dev_ops xen_eth_dev_ops = { > + /*dev*/ > + .dev_configure= xen_dev_configure, > + .dev_close= xen_dev_close, > + .dev_start= xen_dev_start, > + .dev_stop

[dpdk-dev] [PATCH v3 2/3] xen: Add netfront poll mode driver

2016-03-22 Thread Jan Blunck
This implements a poll mode driver that has the same functionality as the Xen netfront driver in the Linux kernel. Signed-off-by: Stephen Hemminger Signed-off-by: Jan Blunck --- config/common_base | 6 + drivers/net/Makefile | 1 + drivers/net/xen/Makefile