> On Sat, 15 Feb 2014 21:20:23 +0000 > Morgan Yang <[email protected]> wrote: > >> I'm assuming this is a typo? > > Yeah, looks like so. How about the following?
looks good to me. Reviewed-by: YAMAMOTO Takashi <[email protected]> > > Thanks! > > = >>From 87709fb07de79f1c8a718d42e5698141c520fde7 Mon Sep 17 00:00:00 2001 > From: FUJITA Tomonori <[email protected]> > Date: Sun, 16 Feb 2014 14:56:25 +0900 > Subject: [PATCH] of13/14: fix OFPFMFC_TABLE_FULL typo > > Reported-by: Morgan Yang <[email protected]> > Signed-off-by: FUJITA Tomonori <[email protected]> > --- > ryu/ofproto/ofproto_v1_3.py | 2 +- > ryu/ofproto/ofproto_v1_4.py | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/ryu/ofproto/ofproto_v1_3.py b/ryu/ofproto/ofproto_v1_3.py > index e7a8593..d243784 100644 > --- a/ryu/ofproto/ofproto_v1_3.py > +++ b/ryu/ofproto/ofproto_v1_3.py > @@ -957,7 +957,7 @@ OFPBMC_EPERM = 11 # Permissions error. > > # enum ofp_flow_mod_failed_code > OFPFMFC_UNKNOWN = 0 # Unspecified error. > -OFPFMFC_TABLES_FULL = 1 # Flow not added because table was full. > +OFPFMFC_TABLE_FULL = 1 # Flow not added because table was full. > OFPFMFC_BAD_TABLE_ID = 2 # Table does not exist > OFPFMFC_OVERLAP = 3 # Attempted to add overlapping flow > # with CHECK_OVERLAP flag set. > diff --git a/ryu/ofproto/ofproto_v1_4.py b/ryu/ofproto/ofproto_v1_4.py > index c9316ce..f566c73 100644 > --- a/ryu/ofproto/ofproto_v1_4.py > +++ b/ryu/ofproto/ofproto_v1_4.py > @@ -779,7 +779,7 @@ OFPBMC_EPERM = 11 # Permissions error. > > # enum ofp_flow_mod_failed_code > OFPFMFC_UNKNOWN = 0 # Unspecified error. > -OFPFMFC_TABLES_FULL = 1 # Flow not added because table was full. > +OFPFMFC_TABLE_FULL = 1 # Flow not added because table was full. > OFPFMFC_BAD_TABLE_ID = 2 # Table does not exist > OFPFMFC_OVERLAP = 3 # Attempted to add overlapping flow with > # CHECK_OVERLAP flag set. > -- > 1.8.3.4 (Apple Git-47) > > > ------------------------------------------------------------------------------ > Android apps run on BlackBerry 10 > Introducing the new BlackBerry 10.2.1 Runtime for Android apps. > Now with support for Jelly Bean, Bluetooth, Mapview and more. > Get your Android app in front of a whole new audience. Start now. > http://pubads.g.doubleclick.net/gampad/clk?id=124407151&iu=/4140/ostg.clktrk > _______________________________________________ > Ryu-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/ryu-devel ------------------------------------------------------------------------------ Android apps run on BlackBerry 10 Introducing the new BlackBerry 10.2.1 Runtime for Android apps. Now with support for Jelly Bean, Bluetooth, Mapview and more. Get your Android app in front of a whole new audience. Start now. http://pubads.g.doubleclick.net/gampad/clk?id=124407151&iu=/4140/ostg.clktrk _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
