Thanks for the reviews, I applied patches 1 and 2.

Do you plan to review further patches?  I understand that patch 3 is
more ambitious, so I'd be happy to ask someone else, if you do not want
to invest the time.

On Tue, Oct 30, 2018 at 02:35:55PM -0700, Yifeng Sun wrote:
> Looks good, thanks!
> 
> Reviewed-by: Yifeng Sun <pkusunyif...@gmail.com>
> 
> 
> On Mon, Oct 29, 2018 at 3:58 PM Ben Pfaff <b...@ovn.org> wrote:
> 
> > This will have its first user in an upcoming commit.
> >
> > Signed-off-by: Ben Pfaff <b...@ovn.org>
> > ---
> >  include/openvswitch/rconn.h | 1 +
> >  lib/rconn.c                 | 7 +++++++
> >  2 files changed, 8 insertions(+)
> >
> > diff --git a/include/openvswitch/rconn.h b/include/openvswitch/rconn.h
> > index 5dc988af1dda..fd60a6ce1dea 100644
> > --- a/include/openvswitch/rconn.h
> > +++ b/include/openvswitch/rconn.h
> > @@ -79,6 +79,7 @@ const char *rconn_get_name(const struct rconn *);
> >  void rconn_set_name(struct rconn *, const char *new_name);
> >  const char *rconn_get_target(const struct rconn *);
> >
> > +bool rconn_is_reliable(const struct rconn *);
> >  bool rconn_is_alive(const struct rconn *);
> >  bool rconn_is_connected(const struct rconn *);
> >  bool rconn_is_admitted(const struct rconn *);
> > diff --git a/lib/rconn.c b/lib/rconn.c
> > index 3fabc504fba0..48ae8c6a72e5 100644
> > --- a/lib/rconn.c
> > +++ b/lib/rconn.c
> > @@ -883,6 +883,13 @@ rconn_get_target(const struct rconn *rc)
> >      return rc->target;
> >  }
> >
> > +/* Returns true if 'rconn' will reconnect if it disconnects. */
> > +bool
> > +rconn_is_reliable(const struct rconn *rconn)
> > +{
> > +    return rconn->reliable;
> > +}
> > +
> >  /* Returns true if 'rconn' is connected or in the process of reconnecting,
> >   * false if 'rconn' is disconnected and will not reconnect on its own. */
> >  bool
> > --
> > 2.16.1
> >
> > _______________________________________________
> > dev mailing list
> > d...@openvswitch.org
> > https://mail.openvswitch.org/mailman/listinfo/ovs-dev
> >
_______________________________________________
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Reply via email to