On Wed, Nov 06, 2013 at 10:46:12PM +0800, Alexander Wu wrote: > > V2: > No change. > > V1: > Make the enums allowed > > Signed-off-by: Alexander Wu <[email protected]>
Reviewed-by: Simon Horman <[email protected]> > --- > lib/rconn.c | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/lib/rconn.c b/lib/rconn.c > index f7f90f7..0f72a99 100644 > --- a/lib/rconn.c > +++ b/lib/rconn.c > @@ -1381,8 +1381,6 @@ is_admitted_msg(const struct ofpbuf *b) > case OFPTYPE_GROUP_DESC_STATS_REPLY: > case OFPTYPE_GROUP_FEATURES_STATS_REQUEST: > case OFPTYPE_GROUP_FEATURES_STATS_REPLY: > - case OFPTYPE_TABLE_FEATURES_STATS_REQUEST: > - case OFPTYPE_TABLE_FEATURES_STATS_REPLY: > return false; > > case OFPTYPE_PACKET_IN: > @@ -1430,6 +1428,8 @@ is_admitted_msg(const struct ofpbuf *b) > case OFPTYPE_FLOW_MONITOR_CANCEL: > case OFPTYPE_FLOW_MONITOR_PAUSED: > case OFPTYPE_FLOW_MONITOR_RESUMED: > + case OFPTYPE_TABLE_FEATURES_STATS_REQUEST: > + case OFPTYPE_TABLE_FEATURES_STATS_REPLY: > default: > return true; > } > -- > 1.7.3.1.msysgit.0 > > _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
