On 9 February 2017 at 08:23, Alin Serdean <[email protected]> wrote:
> Thanks Guru. > > > > Can you please apply https://github.com/openvswitch/ovs/commit/ > 583d34678d32482d616fe5bd7dc323f044788898 on branch-2.6 ? > Done. Thanks. > > > Thanks, > > Alin. > > > > *From:* Guru Shetty [mailto:[email protected]] > *Sent:* Wednesday, February 8, 2017 8:19 PM > *To:* Alin Serdean <[email protected]> > *Cc:* [email protected] > *Subject:* Re: [ovs-dev] [PATCH] windows: netdev report error if query > failed > > > > > > > > On 7 February 2017 at 22:41, Alin Serdean <[email protected]> > wrote: > > The netdev Windows construct uses query_netdev to see if a port exists > in the datapath, in the case an error occurred in the reply message > we returned 0, meaning netdev_open was successful. > > This patch fixes fixes that problem. > > Reported-at: https://github.com/openvswitch/ovs-issues/issues/125 > Reported-by > <https://github.com/openvswitch/ovs-issues/issues/125Reported-by>: > Shashank Ram <[email protected]> > Signed-off-by: Alin Gabriel Serdean <[email protected]> > --- > intended for: branch-2.5, branch-2.6, branch-2.7, master > > Thanks, applied to all the above branches. > > > > --- > lib/netdev-windows.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/netdev-windows.c b/lib/netdev-windows.c > index c2fbe42..b22bd09 100644 > --- a/lib/netdev-windows.c > +++ b/lib/netdev-windows.c > @@ -295,7 +295,7 @@ query_netdev(const char *devname, > } > } > > - return 0; > + return error; > } > > static void > -- > 2.10.2.windows.1 > _______________________________________________ > dev mailing list > [email protected] > https://mail.openvswitch.org/mailman/listinfo/ovs-dev > > > _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
