Re: [ovs-discuss] Warning on "unsupported bfd"

2014-07-14 Thread Joe Stringer
FWIW, CFM seems to be the same as BFD, so you may want to consider adjusting that too. (These two differ from STP and mcast_snooping). On 15 July 2014 03:31, Ben Pfaff wrote: > On Thu, Jul 10, 2014 at 08:08:20AM +, Gur Stavi wrote: > > If bfd is unsupported by ofproto class an 'unsupported'

Re: [ovs-discuss] Warning on "unsupported bfd"

2014-07-14 Thread Ben Pfaff
On Thu, Jul 10, 2014 at 08:08:20AM +, Gur Stavi wrote: > If bfd is unsupported by ofproto class an 'unsupported' warning is > displayed. No such warning is displayed for other unsupported > protocols. > > Proposed fix: > In the function: > ofproto_port_set_bfd > > Change: > > if (error) { >

[ovs-discuss] Warning on "unsupported bfd"

2014-07-13 Thread Gur Stavi
If bfd is unsupported by ofproto class an 'unsupported' warning is displayed. No such warning is displayed for other unsupported protocols. Proposed fix: In the function: ofproto_port_set_bfd Change: if (error) { VLOG_WARN(...) To: if (error && error != EOPNOTSUPP) { VLOG_WARN