Re: [ovs-dev] [PATCH 1/3] netdev: Reuse netdev_ref() in netdev_rxq_open().

2014-05-04 Thread Joe Stringer
Thanks for review, pushed to master. ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] [PATCH 1/3] netdev: Reuse netdev_ref() in netdev_rxq_open().

2014-05-02 Thread Ben Pfaff
On Fri, May 02, 2014 at 01:13:41PM +1200, Joe Stringer wrote: > netdev_rxq_open() open-codes much of netdev_ref(), so re-use that > function instead. > > Signed-off-by: Joe Stringer Acked-by: Ben Pfaff ___ dev mailing list dev@openvswitch.org http://o

Re: [ovs-dev] [PATCH 1/3] netdev: Reuse netdev_ref() in netdev_rxq_open().

2014-05-01 Thread YAMAMOTO Takashi
> netdev_rxq_open() open-codes much of netdev_ref(), so re-use that > function instead. > > Signed-off-by: Joe Stringer Reviewed-by: YAMAMOTO Takashi ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] [PATCH 1/3] netdev: Reuse netdev_ref() in netdev_rxq_open().

2014-05-01 Thread Joe Stringer
netdev_rxq_open() open-codes much of netdev_ref(), so re-use that function instead. Signed-off-by: Joe Stringer --- lib/netdev.c |5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/netdev.c b/lib/netdev.c index 2fc1834..6f997fd 100644 --- a/lib/netdev.c +++ b/lib/netde