>> + @set_ev_cls(ofp_event.EventOFPSwitchFeatures, CONFIG_DISPATCHER) >> + def switch_features_handler(self, ev): >> + datapath = ev.msg.datapath >> + ofproto = datapath.ofproto >> + parser = datapath.ofproto_parser >> + >> + # install table-miss flow entry >> + # >> + # We specify NO BUFFER to max_len of the output action due to >> + # 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. > > OVS gurus, the above comment is still the case?
the bug has been fixed for latest releases. (>= v2.1.0) i guess it's still safer to have the workaround though. YAMAMOTO Takashi ------------------------------------------------------------------------------ Comprehensive Server Monitoring with Site24x7. Monitor 10 servers for $9/Month. Get alerted through email, SMS, voice calls or mobile push notifications. Take corrective actions from your mobile device. http://p.sf.net/sfu/Zoho _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
