Re: [ovs-dev] [PATCH] dpif-netdev: enumerate dpif belonging to the right class

2014-06-13 Thread Daniele Di Proietto
On Jun 12, 2014, at 4:54 PM, Ben Pfaff wrote: > On Thu, Jun 12, 2014 at 04:37:33PM -0700, Daniele Di Proietto wrote: >> Since dpif_netdev_enumerate() is used for "netdev" and "dummy" class, it >> incorrectly lists dpif-netdevs as "dummy" and vice versa. >> This patches address the issue by chang

Re: [ovs-dev] [PATCH] dpif-netdev: enumerate dpif belonging to the right class

2014-06-12 Thread Ben Pfaff
On Thu, Jun 12, 2014 at 04:37:33PM -0700, Daniele Di Proietto wrote: > Since dpif_netdev_enumerate() is used for "netdev" and "dummy" class, it > incorrectly lists dpif-netdevs as "dummy" and vice versa. > This patches address the issue by changing the dpif-provider interface: a > dpif_class parame

[ovs-dev] [PATCH] dpif-netdev: enumerate dpif belonging to the right class

2014-06-12 Thread Daniele Di Proietto
Since dpif_netdev_enumerate() is used for "netdev" and "dummy" class, it incorrectly lists dpif-netdevs as "dummy" and vice versa. This patches address the issue by changing the dpif-provider interface: a dpif_class parameter is passed to the 'enumerate' call to match the right class. Signed-off-b