Re: [Ryu-devel] [PATCH 1/5] bgp: Remove an unused import

2015-03-16 Thread FUJITA Tomonori
On Tue, 17 Mar 2015 11:55:52 +0900 YAMAMOTO Takashi wrote: > Signed-off-by: YAMAMOTO Takashi > --- > ryu/services/protocols/bgp/api/jsonrpc.py | 1 - > 1 file changed, 1 deletion(-) Applied all, thanks a lot! -- Dive

[Ryu-devel] [PATCH 2/5] UT: Remove unused imports

2015-03-16 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/tests/test_lib.py | 1 - ryu/tests/unit/lib/test_ip.py | 1 - ryu/tests/unit/lib/test_mac.py| 1 - ryu/tests/unit/ofproto/test_parser_v12.py | 1 - ryu/tests/unit/ofproto/test_parser_v13.py | 1 - ryu/tests/unit/p

[Ryu-devel] [PATCH 5/5] requirements: Drop some optional requirements

2015-03-16 Thread YAMAMOTO Takashi
Move some non pure python requirements (namely lxml and paramiko) from pip-requires to test-requires. Document it in README.rst. Motivations: - Make this pip-installable with pypy - Less distribution package requirements (deb/rpm/etc) in case a user do not actually need the functionality Note

[Ryu-devel] [PATCH 3/5] pip-requires: Add comments to say what's required by what

2015-03-16 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- tools/pip-requires | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/pip-requires b/tools/pip-requires index 23fc01d..d06342a 100644 --- a/tools/pip-requires +++ b/tools/pip-requires @@ -1,9 +1,9 @@ eventlet -lxml -msgpack-py

[Ryu-devel] [PATCH 1/5] bgp: Remove an unused import

2015-03-16 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/services/protocols/bgp/api/jsonrpc.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ryu/services/protocols/bgp/api/jsonrpc.py b/ryu/services/protocols/bgp/api/jsonrpc.py index 76aa349..d73a8be 100644 --- a/ryu/services/protocols/bgp/api/jsonrpc.py +++

[Ryu-devel] [PATCH 4/5] README.rst: Replace a reference to ryu-plugin with ofagent

2015-03-16 Thread YAMAMOTO Takashi
Ryu-plugin is obsolete and has been removed in the development version of OpenStack/Networking. Signed-off-by: YAMAMOTO Takashi --- README.rst | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 5ca620f..9756530 100644 --- a/README.rst +++ b/READ

Re: [Ryu-devel] curl add flow w/ ipv6_exthdr mask

2015-03-16 Thread mark
Hi Yusuke, Thanks for reply. once the patch is done, please kindly share with me. BR, Mark On 3/16/15 12:48 PM, Yusuke Iwase wrote: > Hi Mark, > > Currently, curl command of ryu (ofctl_rest.py) is not support ipv6_exthdr > with mask. > I will make a patch. > > Thanks > > On 2015年03月16日 11:51,

Re: [Ryu-devel] [PATCH] yet more logging call cleanups

2015-03-16 Thread FUJITA Tomonori
On Mon, 16 Mar 2015 16:09:48 -0700 Jerry Cen wrote: > Sorry about that. Can you see if it works this time? I'm also attaching a > gz file in case it messes up again. Applied, thanks a lot! The gz file worked. -- Dive in

Re: [Ryu-devel] [PATCH] yet more logging call cleanups

2015-03-16 Thread Jerry Cen
Sorry about that. Can you see if it works this time? I'm also attaching a gz file in case it messes up again. Signed-off-by: Jerry Cen Author: Mark Lentczner Date: Fri, 13 Mar 2015 22:45:50 -0700 Subject: [PATCH] yet more logging call cleanups --- ryu/app/bmpstation.py

Re: [Ryu-devel] [PATCH] yet more logging call cleanups

2015-03-16 Thread FUJITA Tomonori
On Mon, 16 Mar 2015 18:54:29 + [email protected] wrote: > Signed-off-by: Jerry Cen > Author: Mark Lentczner > Date: Fri, 13 Mar 2015 22:45:50 -0700 > Subject: [PATCH] yet more logging call cleanups > > --- > ryu/app/bmpstation.py | 4 +- > ryu/services/prot

[Ryu-devel] [PATCH] yet more logging call cleanups

2015-03-16 Thread zhiweic
Signed-off-by: Jerry Cen Author: Mark Lentczner Date: Fri, 13 Mar 2015 22:45:50 -0700 Subject: [PATCH] yet more logging call cleanups --- ryu/app/bmpstation.py | 4 +- ryu/services/protocols/bgp/base.py | 2 +- ryu/services/protocols/bgp/core.py

Re: [Ryu-devel] [PATCH] Reduce logging overhead by cleaning up logging calls

2015-03-16 Thread Jerry Cen
Thank you! I sent out another similar patch. I fixed my mail client and it should not have wrapped lines any more (please let me know if you still see those). Jerry On Mon, Mar 16, 2015 at 5:47 AM, FUJITA Tomonori wrote: > On Sat, 14 Mar 2015 11:02:00 -0700 > Jerry Cen wrote: > >> Please use

Re: [Ryu-devel] [PATCH] Reduce logging overhead by cleaning up logging calls

2015-03-16 Thread FUJITA Tomonori
On Sat, 14 Mar 2015 11:02:00 -0700 Jerry Cen wrote: > Please use the following instead. There was a bug in the previous patch. > > > > Signed-off-by: Jerry Cen > Author: Mark Lentczner > Date: Fri, 13 Mar 2015 12:02:15 -0700 > Subject: [PATCH] Reduce logging overhead by cleaning up logging c

Re: [Ryu-devel] [PATCH] ryu.app.ofctl: Handle a race with connection close

2015-03-16 Thread FUJITA Tomonori
On Fri, 13 Mar 2015 17:45:44 +0900 YAMAMOTO Takashi wrote: > Report the failure to the client rather than crashing. > --- > ryu/app/ofctl/exception.py | 9 + > ryu/app/ofctl/service.py | 16 > 2 files changed, 21 insertions(+), 4 deletions(-) Applied, thanks. --