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

2014-06-18 Thread FUJITA Tomonori
On Wed, 18 Jun 2014 16:16:44 +0900 ISHIDA Wataru wrote: > 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 RyuA

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

2014-06-18 Thread FUJITA Tomonori
On Wed, 18 Jun 2014 15:23:01 +0900 Yoshihiro Kaneko wrote: > 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 +-

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

2014-06-18 Thread FUJITA Tomonori
On Wed, 18 Jun 2014 13:04:45 +0900 Yuichi Ito wrote: > 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

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

2014-06-18 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

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

2014-06-18 Thread ISHIDA Wataru
thanks for the comment. > how about (mod.__name__ == cls.__module__) ? yes, this seems better. I'll fix the patch. Wataru ISHIDA (2014/06/18 15:50), YAMAMOTO Takashi wrote: >> don't load RyuApps which is just imported and not defined in the module. >> for example, if we run the script "test.py