diff options
author | YAMAMOTO Takashi <yamamoto@valinux.co.jp> | 2014-10-16 11:45:44 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2014-10-16 11:49:20 +0900 |
commit | 9ea360f89f341224ee3f5b6c9734e24edf419256 (patch) | |
tree | d8684ebdd0e951b70327bbd93a1e454238f73925 | |
parent | a6098fdfd610f1bf17b91fa462b6ffc41bb68a7d (diff) |
simple_switch_14: Update a comment about OVS bug
Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | ryu/app/simple_switch_14.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ryu/app/simple_switch_14.py b/ryu/app/simple_switch_14.py index 0ccac306..052740af 100644 --- a/ryu/app/simple_switch_14.py +++ b/ryu/app/simple_switch_14.py @@ -41,7 +41,7 @@ class SimpleSwitch14(app_manager.RyuApp): # OVS bug. At this moment, if we specify a lesser number, e.g., # 128, OVS will send Packet-In with invalid buffer_id and # truncated packet data. In that case, we cannot output packets - # correctly. + # correctly. The bug has been fixed in OVS v2.1.0. match = parser.OFPMatch() actions = [parser.OFPActionOutput(ofproto.OFPP_CONTROLLER, ofproto.OFPCML_NO_BUFFER)] |