Re: [Ryu-devel] [PATCH] app_manager: prevent loading unnecessary RyuApps

2014-06-17 Thread YAMAMOTO Takashi
> don't load RyuApps which is just imported and not defined in the module. > for example, if we run the script "test.py" as shown below by > > $ ryu run test.py > > the past implementation loads and instantiates not only Test but also RyuApp > and DPSet. this patch fix this wrong behavior > > te

[Ryu-devel] [PATCH] app_manager: prevent loading unnecessary RyuApps

2014-06-17 Thread ISHIDA Wataru
don't load RyuApps which is just imported and not defined in the module. for example, if we run the script "test.py" as shown below by $ ryu run test.py the past implementation loads and instantiates not only Test but also RyuApp and DPSet. this patch fix this wrong behavior test.py === from ry

[Ryu-devel] [PATCH] package: add python-ryu-doc

2014-06-17 Thread Yoshihiro Kaneko
This patch adds python-ryu-doc package which contains the HTML documentation generated from doc/. Also updates the man pages in doc/source/man/. Signed-off-by: Yoshihiro Kaneko --- debian/changelog | 2 +- debian/control | 17 +++- debian/python-ryu-doc.doc-base

[Ryu-devel] [PATCH] sw test tool: Enable IPv6 flow label maskable

2014-06-17 Thread Yuichi Ito
OF 1.3.4 spec (B.15.1 Changes) says: Make IPv6 flow label maskable (EXT-101). This patch makes IPv6 flow label maskable, and adds a test file for IPv6 flow label with masks. Signed-off-by: Yuichi Ito --- .../switch/of13/match/28_IPV6_FLABEL_Mask.json | 927 ryu/t

Re: [Ryu-devel] [PATCH] add debian files to make packages for Ubuntu

2014-06-17 Thread FUJITA Tomonori
On Wed, 18 Jun 2014 12:19:10 +0900 Yoshihiro Kaneko wrote: > 2014-06-18 10:21 GMT+09:00 FUJITA Tomonori : >> On Tue, 17 Jun 2014 09:27:55 +0900 (JST) >> yamam...@valinux.co.jp (YAMAMOTO Takashi) wrote: >> create mode 100644 debian/ryu-manager.8.txt create mode 100644 debian/ryu.8.txt

Re: [Ryu-devel] [PATCH] add debian files to make packages for Ubuntu

2014-06-17 Thread Yoshihiro Kaneko
2014-06-18 10:21 GMT+09:00 FUJITA Tomonori : > On Tue, 17 Jun 2014 09:27:55 +0900 (JST) > yamam...@valinux.co.jp (YAMAMOTO Takashi) wrote: > >>> create mode 100644 debian/ryu-manager.8.txt >>> create mode 100644 debian/ryu.8.txt >> >> can these replace doc/source/man/* ? > > Looks a good idea. A

Re: [Ryu-devel] [PATCH] ws_topology: shut up pep8 for long lines in a comment

2014-06-17 Thread FUJITA Tomonori
On Wed, 18 Jun 2014 12:05:35 +0900 YAMAMOTO Takashi wrote: > Signed-off-by: YAMAMOTO Takashi > --- > ryu/app/ws_topology.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied, thanks! -- HPCC Systems Open

Re: [Ryu-devel] [PATCH] document ryu.app.ofctl

2014-06-17 Thread FUJITA Tomonori
On Wed, 18 Jun 2014 11:37:06 +0900 YAMAMOTO Takashi wrote: > Signed-off-by: YAMAMOTO Takashi > --- > doc/source/app.rst | 12 > doc/source/app/ofctl.rst | 30 ++ > doc/source/index.rst | 1 + > ryu/app/ofctl/api.py | 29 +++

[Ryu-devel] [PATCH] ws_topology: shut up pep8 for long lines in a comment

2014-06-17 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/app/ws_topology.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ryu/app/ws_topology.py b/ryu/app/ws_topology.py index 7840da0..3be88fe 100644 --- a/ryu/app/ws_topology.py +++ b/ryu/app/ws_topology.py @@ -32,7 +32,7 @@ $ sudo mn --cont

[Ryu-devel] [PATCH] document ryu.app.ofctl

2014-06-17 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- doc/source/app.rst | 12 doc/source/app/ofctl.rst | 30 ++ doc/source/index.rst | 1 + ryu/app/ofctl/api.py | 29 - ryu/app/ofctl/exception.py | 4 5 files changed

Re: [Ryu-devel] [PATCH] add debian files to make packages for Ubuntu

2014-06-17 Thread FUJITA Tomonori
On Tue, 17 Jun 2014 09:27:55 +0900 (JST) yamam...@valinux.co.jp (YAMAMOTO Takashi) wrote: >> create mode 100644 debian/ryu-manager.8.txt >> create mode 100644 debian/ryu.8.txt > > can these replace doc/source/man/* ? Looks a good idea. A patch, please?

Re: [Ryu-devel] [PATCH v2 0/3] Add GUI support

2014-06-17 Thread YAMADA Hideki
(2014/06/18 10:11), FUJITA Tomonori wrote: > On Tue, 17 Jun 2014 13:42:20 +0900 > YAMADA Hideki wrote: > >> This series provide new GUI. >> >> Change of v2: >> * fix pep8 >> >> The advantages to previous (1 year ago) patch are: >> * Integrated as ryu app (no need other server) >> * More simple co

Re: [Ryu-devel] [PATCH] bgp: support IPv6 peering

2014-06-17 Thread FUJITA Tomonori
On Tue, 17 Jun 2014 17:59:19 +0900 (JST) FUJITA Tomonori wrote: > This adds IPv6 peering support. IPv6 advertisement support is the next item > in my TODO list. > > = >>From f5baa763682caa89c02136b45e35ce99c539fae7 Mon Sep 17 00:00:00 2001 > From: FUJITA Tomonori > Date: Tue, 17 Jun 2014 17:59:

Re: [Ryu-devel] [PATCH v2 0/3] Add GUI support

2014-06-17 Thread FUJITA Tomonori
On Tue, 17 Jun 2014 13:42:20 +0900 YAMADA Hideki wrote: > This series provide new GUI. > > Change of v2: > * fix pep8 > > The advantages to previous (1 year ago) patch are: > * Integrated as ryu app (no need other server) > * More simple code > > YAMADA Hideki (3): > ws_topology: Avoid contr

Re: [Ryu-devel] Link off

2014-06-17 Thread FUJITA Tomonori
On Tue, 17 Jun 2014 19:18:48 +0300 Gabriel Stankevix wrote: > I mean the link to download the Ryu VM Image, I was doing the tutorial : > http://archive.openflow.org/wk/index.php/OpenFlow_Tutorial#Controller_Choice:_Ryu_.28Python.29 > > and I had stopped in this part " Controller Choice: Ryu(Pyt

Re: [Ryu-devel] Link off

2014-06-17 Thread FUJITA Tomonori
On Tue, 17 Jun 2014 16:48:31 +0300 Gabriel Stankevix wrote: > Hi, my name is Gabriel Stankevix and I was doing the openflown tutorial but > I need the Ryu vm image to continue and it's off > > > > link: > Virtual Machine Image(zipped OVF format, 64-bit, Mininet 2.0) You mean that the site

[Ryu-devel] Link off

2014-06-17 Thread Gabriel Stankevix
Hi, my name is Gabriel Stankevix and I was doing the openflown tutorial but I need the Ryu vm image to continue and it's off link: Virtual Machine Image(zipped OVF format, 64-bit, Mininet 2.0) --

[Ryu-devel] [PATCH] bgp: support IPv6 peering

2014-06-17 Thread FUJITA Tomonori
This adds IPv6 peering support. IPv6 advertisement support is the next item in my TODO list. = >From f5baa763682caa89c02136b45e35ce99c539fae7 Mon Sep 17 00:00:00 2001 From: FUJITA Tomonori Date: Tue, 17 Jun 2014 17:59:31 +0900 Subject: [PATCH] bgp: support IPv6 peering Signed-off-by: FUJITA Tomo